From 9dcab2218194125e74b685548b8a02fbcf378f9f Mon Sep 17 00:00:00 2001 From: serifpersia Date: Mon, 23 Jun 2025 19:21:33 +0200 Subject: [PATCH] initial reverse_eng progress --- README.md | 32 + latest_libusb_binary/tascam_streamer | Bin 0 -> 22160 bytes ...t Specification for TASCAM US-144 MKII.txt | 151 + .../24bit_44.1k_440_TONE_URB_ISO_OUT.txt | 897 +++ .../24bit_48k_440_TONE_URB_ISO_OUT.txt | 897 +++ ...4bit_48k_BUZZ_LINE_IN_URB_BULK_0x86_IN.txt | 171 + ...24bit_48k_BUZZ_TONE_LINE_IN_URB_ISO_IN.txt | 535 ++ ...N_INST_4_NOTE_CHORD__PLAYBACK_440_TONE.txt | 6972 +++++++++++++++++ ...AN_INST_4_NOTE_CHORD__PLAYBACK_SILENCE.txt | 3816 +++++++++ ...ST_4_NOTE_CHORD__PLAYBACK_SILENCE_FULL.txt | 4185 ++++++++++ ...bit_48k_LINE_SILENCE__PLAYBACK440_SINE.txt | 4372 +++++++++++ ...8k_LINE_SILENCE__PLAYBACK440_SINE_FULL.txt | 1612 ++++ ...bit_48k_LINE_SILENCE__PLAYBACK_SILENCE.txt | 1199 +++ ...t_48k_SILENCE_LINE_IN_URB_BULK_0x86_IN.txt | 170 + .../24bit_48k_SILENCE_LINE_IN_URB_ISO_IN.txt | 535 ++ .../24bit_88.2k_440_TONE_URB_ISO_OUT.txt | 897 +++ .../24bit_96k_440_TONE_URB_ISO_OUT.txt | 897 +++ ..._sample_rate_change_event_tascam144mk2.txt | 2846 +++++++ ..._sample_rate_change_event_tascam144mk2.txt | 2846 +++++++ ...6bitrate_on_connect_event_tascam144mk2.txt | 3139 ++++++++ ...4bitrate_on_connect_event_tascam144mk2.txt | 3139 ++++++++ ..._sample_rate_change_event_tascam144mk2.txt | 2846 +++++++ ..._sample_rate_change_event_tascam144mk2.txt | 2652 +++++++ ..._sample_rate_change_event_tascam144mk2.txt | 2846 +++++++ ..._sample_rate_change_event_tascam144mk2.txt | 2846 +++++++ ..._sample_rate_change_event_tascam144mk2.txt | 2846 +++++++ ..._sample_rate_change_event_tascam144mk2.txt | 2846 +++++++ .../init_config_tascam144mk2.txt | 2126 +++++ .../recording_tab_windows_event.txt | 3112 ++++++++ src & scripts/run_tascam_streamer.sh | 76 + src & scripts/tascam_fifo_streamer.c | 278 + 31 files changed, 61782 insertions(+) create mode 100644 README.md create mode 100644 latest_libusb_binary/tascam_streamer create mode 100644 latest_reverse_eng_report/Linux Driver Development Specification for TASCAM US-144 MKII.txt create mode 100644 reverse_eng_dataset/24bit_44.1k_440_TONE_URB_ISO_OUT.txt create mode 100644 reverse_eng_dataset/24bit_48k_440_TONE_URB_ISO_OUT.txt create mode 100644 reverse_eng_dataset/24bit_48k_BUZZ_LINE_IN_URB_BULK_0x86_IN.txt create mode 100644 reverse_eng_dataset/24bit_48k_BUZZ_TONE_LINE_IN_URB_ISO_IN.txt create mode 100644 reverse_eng_dataset/24bit_48k_LINE_ORGAN_INST_4_NOTE_CHORD__PLAYBACK_440_TONE.txt create mode 100644 reverse_eng_dataset/24bit_48k_LINE_ORGAN_INST_4_NOTE_CHORD__PLAYBACK_SILENCE.txt create mode 100644 reverse_eng_dataset/24bit_48k_LINE_ORGAN_INST_4_NOTE_CHORD__PLAYBACK_SILENCE_FULL.txt create mode 100644 reverse_eng_dataset/24bit_48k_LINE_SILENCE__PLAYBACK440_SINE.txt create mode 100644 reverse_eng_dataset/24bit_48k_LINE_SILENCE__PLAYBACK440_SINE_FULL.txt create mode 100644 reverse_eng_dataset/24bit_48k_LINE_SILENCE__PLAYBACK_SILENCE.txt create mode 100644 reverse_eng_dataset/24bit_48k_SILENCE_LINE_IN_URB_BULK_0x86_IN.txt create mode 100644 reverse_eng_dataset/24bit_48k_SILENCE_LINE_IN_URB_ISO_IN.txt create mode 100644 reverse_eng_dataset/24bit_88.2k_440_TONE_URB_ISO_OUT.txt create mode 100644 reverse_eng_dataset/24bit_96k_440_TONE_URB_ISO_OUT.txt create mode 100644 reverse_eng_dataset/44100k_playback_sample_rate_change_event_tascam144mk2.txt create mode 100644 reverse_eng_dataset/44100k_recording_sample_rate_change_event_tascam144mk2.txt create mode 100644 reverse_eng_dataset/48000k_playback_16bitrate_on_connect_event_tascam144mk2.txt create mode 100644 reverse_eng_dataset/48000k_playback_24bitrate_on_connect_event_tascam144mk2.txt create mode 100644 reverse_eng_dataset/48000k_playback_sample_rate_change_event_tascam144mk2.txt create mode 100644 reverse_eng_dataset/48000k_recording_sample_rate_change_event_tascam144mk2.txt create mode 100644 reverse_eng_dataset/88200k_playback_sample_rate_change_event_tascam144mk2.txt create mode 100644 reverse_eng_dataset/88200k_recording_sample_rate_change_event_tascam144mk2.txt create mode 100644 reverse_eng_dataset/96000k_playback_sample_rate_change_event_tascam144mk2.txt create mode 100644 reverse_eng_dataset/96000k_recording_sample_rate_change_event_tascam144mk2.txt create mode 100644 reverse_eng_dataset/init_config_tascam144mk2.txt create mode 100644 reverse_eng_dataset/recording_tab_windows_event.txt create mode 100644 src & scripts/run_tascam_streamer.sh create mode 100644 src & scripts/tascam_fifo_streamer.c diff --git a/README.md b/README.md new file mode 100644 index 0000000..9498f9c --- /dev/null +++ b/README.md @@ -0,0 +1,32 @@ + + +Current feat: Working Playback with glitches due to missing feedback clock resync + +To run or compile you need pulseaudio and libusb: + +debian: +sudo apt update +sudo apt install build-essential pulseaudio pulseaudio-utils libusb-1.0-0-dev +gcc -o tascam_streamer tascam_fifo_streamer.c -lusb-1.0 -Wall -Wextra -pedantic -std=c11 +chmod +x run_tascam_streamer.sh +./run_tascam_streamer.sh + +fedora: +sudo dnf install @development-tools pulseaudio pulseaudio-tools libusb1-devel +gcc -o tascam_streamer tascam_fifo_streamer.c -lusb-1.0 -Wall -Wextra -pedantic -std=c11 +chmod +x run_tascam_streamer.sh +./run_tascam_streamer.sh + +arch: +sudo pacman -Syu +sudo pacman -S base-devel pulseaudio pulseaudio-libs libusb +gcc -o tascam_streamer tascam_fifo_streamer.c -lusb-1.0 -Wall -Wextra -pedantic -std=c11 +chmod +x run_tascam_streamer.sh +./run_tascam_streamer.sh + +void: +sudo xbps-install -S +sudo xbps-install base-devel pulseaudio libusb +gcc -o tascam_streamer tascam_fifo_streamer.c -lusb-1.0 -Wall -Wextra -pedantic -std=c11 +chmod +x run_tascam_streamer.sh +./run_tascam_streamer.sh \ No newline at end of file diff --git a/latest_libusb_binary/tascam_streamer b/latest_libusb_binary/tascam_streamer new file mode 100644 index 0000000000000000000000000000000000000000..e547771d148d29f7783f24792c5cee9e09923cd2 GIT binary patch literal 22160 zcmeHPdw5jUwLcRKA_@~MDj=0pD;k6h2@uLdG%-2xL=L(E?o*d z8~P@3ISD1-vRBCYN*3HM8YH2;9>u0}39r{#l?gv9+8q{9)}wGyyfD9OeS~ zMK)+mUAL@8$=RZG5>3{p>xuZIuo8b;{vZI$&Q*K$&t4m z^qc~FBt7*G^mz_;`yAxI=s>^TLC-b^`Li74>mBGfI?(4j&_4;gD*m#|Y6tlihj{LB zp#Kz#M~d?&9Q1$ELC;zTdWD1jBM$PfIM8o%pr7O5=WGZ0K?nMH2R#)I^51cwdmZ%5 zLL5~5WtV$E7%BeGInWnF|E1YVfX@Pbf-*%>Z{$pwhZS$-sw%JFh!|@EQPYU5sw!&? z1&vj{+D1e1de=0Cg5IdJ0DtfZ5<(7w~(-0ly;n z5u?%YMGbEt2ut<8Izuw*8beVFY48R8jfU4)X9Uft*9#3r6dWh^5IFtTP&ik^P40t84JyVMK!9`XhmLLsg=NIpmSo*Jye{F$2LhQl}A# zgd*OcugP+;uF)508mc4(>q0>@5*ltj5Db`7hO9xZKCmVh@tJ{8P%?bxXqvSyG*`VaR5E#4v^`hht_`3A08i#8D!K&#zG5DLyk4P?}g|(fR1LI??$} zzCcikniwY$r9K=%2i8NNZiCNT9|-yy19urplhK5>Dbc_h5D2RaZ&d2nM*^mSnvuGu zuyC!Q$WurUv_it`=xV-l-O|cy%e-?uMf0r7xkHz8JjFC>bMTaM;nQXN%mL2-xiAkQ zj+Efn93u%khj3n8(Af+`KDY1x%7de6M)M^>`x(PWDPI+MY)ar9^5k1Wft+8-`>F5~ zTyKwse8#=qMt9rf8*KCmHhS1bx99T>Ho6!( ztkxDAo#u10Y`4)bkVL>8Hu{A&`c51DA{%{|jV``|Fzyd*^vO2)b{l<)jlS1Lzt~3a zw9)O8#2y=+<}R}I+US=^BH&RQeVUElXQQh&deTP!l#M=MqhD&H58CLL+31S6PibsU zx6{vD|F1+qZ#g+ePvrjU8b#4tJI$PQuikQK%t1?cy7+mp($inSr+Zont_W`+eyT5x zGX0l?Q))`}GQ5Lu%F3xuhW~_cN|~v4hCe|#rL5F0hJTlEN>!;H4F3kXDFvlU7#<;tkv4m5qNZrox9KtC@q^cSI;nlz?HKa-y z{ubes5>kZ>KS4O9f|SbeR|%&Skji8D%YyP`yek>MVLrZ(GuX0g}F8IYi&7_qeBRWwJD$zygds_KW{kPqhe7I#v0qQETnKgRLl9wT==plNX($U?eG0JD%f~?>?D_dp7=yQy-?& zdi>`D1iH0e@}u7UMyGp5E8VT`8QK>7?ZDqIL8hA!T)H;_syVnFpu2SzKB;uIUWreo zt92#;(YkJJkd(v70KsnUB+EJdxK1G8JN34Szaoa7Xl2fz=?M(03rblVeoxKl`&&BQ z+8J92`Ib)C!dCKq^UM}#I*kU@+l%JMwZZ<)rx9zr;19Ux^f)uLo*SBzVd%1dWJnw6 zpDMkF>oEMUNP~M>GrMsm>Mv$~yYCr|;IuRkD(2aGOY?vdy9UF4*<$kHKnKk@pP`EA z#9NqO-N{SQicIyUrJnNb-OYpLyA{Q(z{QrQaj^s!+gH03a~>{~^|+V`6a9-2@R~ur zZQKl|_(eFnmja)B7~$mJPUh-J%jUE9Qm*aK-3yu$*Ir1}yb$kob-H>nFymTJLhCuu zH!7|j>ef2xA(7BJ8NMI)K)eg?zm3#pnRw;{YJ)b=LC+VR@kjCIaTmT#{I=YgNKD{9 zOH#=XL3WT$_9q9zG1d--7KfPJL0+i=tAJG-{#(%5!oNDL0r_&U|n zd`dAtgZmdf|8r_c`~V#I0vsUew&Ks)BQXyG(l&i3YSEIemgb~ua|?BjW&CG&aKbpX zWR7UbCv7cRELt+!){=5)qZmI!Ys6OMx58eW-JuEgi8x-2NKX<9T5ax(f`T1fN^fgZ zaW8bx(zG6b5e-|4wj#5C@lPFhlONPWQ1d#TXO^j#-lwJ=2S-Wy5Zq_!VV`V4#YD|< zz3zw}-}*aBE(z@rZhPq5Ksw`EI}woj5?cE+RGC=6fG*@c$R)P^idAYpgv8vgCt~R2 zlVci^=r?#tspm$F>B(^P#?pOcu{4g{eprmO?&NtiG+GX+iJG1ag}jr4;AW7?_%8Ux zo$n$yEaxc&Cba$B`KQ6+&I>OYw|W0CFW17)akQ+T=^urWj5X4TVg7Ymj*u$u-;3a8 zkg19S|5~);7&phycHjE|p7!X9pJJ*(%um0UPWR8&yIb?nfh?Tet&?!MYnuy>Flq-Q z<31ypJc5Sc@o^9f`&&C>T|2sRpQ1H>sN5k`_P$FU+egyVC?kryBvB; z;VvVP!xWN2=KnF~|K$non7-4!hu_b5UQWOho1}TXe-6qGRiQm78MF6+O^6^ zds(ZFqE$yRU@B-Bi)6529KS-%TTqja2$h=KmisU!x77N>Z<9}_!~_EK4K{sB9 z0T;&VW$2&5L`fdz22;Rrfq@Qn6P5ga2~PC8go2gG8Vzt9iKkDGAB6akxk8V-bqPc+ZSp`(xJC$)B<$+H%6B$7?!q zSs6c4il;M_(sgg?K6bscBacWV=IVWxuKAtv{`>kJoq76R9;z*!qZ!>w`aN%gg9qYy_~;u=w;^uU z#oF#o%;}x_Lan{|2J$eWPfXP8j`tpTHD?CRM=(!jO-fp-nxU$H8k6PG7VWYGJ`Vv5 zg5MOeF|&vy$+<`193GKZ>WSPAuxRj3hwF0iK8o*yBz7;vx^nM>1khvsqwt|8ZXL94 zkuZ(4crSDQ-=%$zL>?9*-xDHZ^ZE-AoNpEK;N-)u z49<`7<(YzWCqlayIVPQY60;a2k{-d>{s#KDE%!}F%?7k<`t;oCKth^_{x!b49@Xc)lQz>zhpBYRG-CE z(}eB$*<8A! zb;I-IMa!W)8Bu(Xq*#7}IY+U4$wPvN@m*^JS!gTXZ1*t%YdoZX!GxRY{t~_{Vk~R8cs`ohfvE)g=Z<@D9cXF(Gub4r$%;kEj5>QdZFd$;MYeCJELvD{^!QBQY_t6SI>+)wV6+SnS zbHjtXhqN%CHx{*=tL6@SWZ&13oeWlUUUaN|sbe9pBC-+dBF+lISFbMO&dJ3>AT zckN=!wSS)_UHc4oZ5#T;3g_2gjfe9M%vq&t<1E+K+J#^1C)aY_+}-43gbwd_+NQMc zEG*S^l)~j_N<<82jO=KHn#*Fiz;g6uGTK)BM=a-Aj-G%q?r4S0(RSt@#qfY#c*$uz zQ?O{5>Dhhc!tf9tB_+(WZ_kt=tl^%O*^O0Op6x~-$q>%8JiEd!{Jj&-F;gIz>DjyF z!f?;7wmdt_@~oGvv=u*&)>$#z17kd9=i5Acl=(w3YqJZV17Y`5H6J_lD86H5bmuK2 zyT;nbf)=<^2JL$8+IYLQi!Imiz_fy_wowi z}6M_E^5uklpRK}K>k;a*2DmLgD zb=ciEOO2YLa2UJqJRXly5K#&W!i~O-wZ6JL3c`V~A$`|qPu?Q6DiDoAR*e{U#sU$; zulgcuVokJh(8G5F3AvR%+C8XZ$DN^0_p5=Z8Vs3gG!_nrBCslip}Z1X^#Zh^jkK;R zU0GIIrPi!0D4I7qD`ipE+0-iZ%Kfjc-v@`JO(NZ&76Ctlg3@O!_TN8QTcedS9TC zwPZPV@{#v4ZfZqk#d5(`R?=S13@-NO8NMbpf5=r88!**+!|+qo(I44-(R9`oV+#rj zhC;x%AbQm5h!KsdqHE0%>r;;kQS>*qfHL=DVd`Oq#=@%H-suq?Tod)J;n6IJs8>Rdq;CwUtHcN&_7|)cqcHrR?=Z>b!YHg@v=!c?${&ELbpy zz{2^!a?>w9zEJELx!;RjMCBe)$bUt+4b))hHCuz-N1VaU*d9h!=12 zoJG*bVyfy8i#GV~Fc2ELq0AV@dV^7S$5890M|oq=3^GSaA!3*@>^}CxBP0V$?_3#5 zuDdGa=W5}Nv_~}2+@X5&cs-HWR#0NYU}UKYZjDta9*l}Wl=;H2ZBRDKFT@)q=m|U9 z8k?M7I0t;ozv4w!HyOMeu)SAZA-0Q0DFi^&n`xh~T15H_{e|;p*obo&(I_mm6X!Bw zeI{|9nolkllpA5YY%$3e6&2Rn{hGf>)q=E39o<6-igFr!$)?%jR**H$%a&JFFV$9Q zsD^lGW>E-G4}@e+#%Da1-Do$I|JOfYbk&PM?P_`eDFXfZqXJ z3fTAObh;7n=GW5cdjNL=?gku%@4&r)6H%9n>#h}wYeSyv;`7cPv%__E9?_@bZvpIF zN&=#cEUze+flu;BkEYWqJxa&tRg9l>z5CqtW40*QOj&&8+{>66s$Y)3-j~y9`gK_r zs{48T{TTMP5V3T8-nN{waiep-0FSutO(0J|dvD0#S6KXSf_@eFv+ew~jLm%85Bd$@ zm$IL=h5k`jjUkDt;2pzX7++WDKfeigK-i05(e@1XWe|FxD; zqkK7*juObs#PYy_3?KG0A4u()awY<2B5)=GXCm-li-3I3MZVX9G|Ng8`VVCxYpyM$s% z?-7Qj-$#YqIRZ-ie@pZBfXqa(Ns6^^yQq&}S{W|mjGuuSK1cAe?~38lZ=wGG9LV>_ zvklJ|#9~AIW0rv>lCE)J`d`-aj1RRZDe3^X#=@(!s^9AG>-aosMU%9R;D_f-I zmm9SKUr;TYCss5=kYu%CkjBGV%A0KGoSjMIi{6miBnE^knAi|9 zqWmSG=iv9dEm?k2J)*Z~(P_63(PcgW%1R|ZUATMmW%~rZhS4ujv>9j{;r1sKA8Pcriy>QM8otJguFkTcoJHyx&33lR{7S_}u3p{}Q9S zmAPWPvG267@rr}|2?u)GfqpImJ5t=HI?(4j&?_A1H#^Wn4)kpf^oKyF@gv_G7GYK% zVe)Rp6#0;Srw8-LpsP~I27m3K|1HpE-`T{KT$0bhEK)qzC2t%idLzZ{GSEjn?_gzJ z#4PfJ@bP4_gWxrryf~F0Xhb3D4|&%#hH8B{Ilv4>qF!HY zgCZBK{dkXkLO*(~pVqgG2>cW0DAWfU8@+*OXy~1O!N3|Oqld9@kIP0QxW;UVDuJjs5)0C*J1#?B zxr*+UYtf2a>>r|dy%j4;t2D2+tej4MDF5uT(yGcbxQzp2yqYe!die^)d)?CI*Oo5z zF0ZIqsjc#^D!q28=4A&9l*qUG>HYm-#|cT&MOE6O)o!m!a7F6@uZ5=9VEd|vEb(*WO&RN z85CM8&mdq3p;7#_1qD5h;}SCX{8)tyk~oJUgO+__hu4q(=4}&4GFaj`YQbB%92Wh7 zpf?t^9jtMhgD6gS;zZVg9Q+sw%N+Hb7^Uo&4}P8o?hNZd59+CmpR_P$YNJsR6H(Xk zh!J)|g*4!J_Jt6jF~d&07|Fft!#(&>85xpvPDTbn=!N?u9st6B#TmL?`LP%o8oXW{ zy&`TmcEASu1V4fO<3m^e(Qzr6$8==alwN0@nZnQc$dFV#(Tz=}uNKgZaM&QPaQhgM zu;Rfls)lDxFy;wI&`S|>qm5J>3*bmAoCL$AO0TUfpw!F68+_3Q#pB-?gb5DK2G70kpDiX@|4o>B= z@|xhM@keV6vOdkjs7R*DlzUSHN%kP;Isu|Ms zoh`H63>0sEg{1#-9Y?}^AuiW(vi^Xg>A#eda5MO{#v^gL&Ld%osGse>AS-RSpqR?~ za-B&+xy~f*XSe_BqW-l)pZ zm+bcM2b0=wHM3Ai3-}c)u$(Ua7E;O~T-fW&^#KX}Qc%Eb`$w|s4^l!vk#Gkox0P)B z$H2pGTy_tUm|Ulk=O1RvOI*Sv>bPz7<+@N0P6ePM94Zwbo7Kd6x3r zO1gij$a=CLe+U{iQP!8|F?C);(u$JLf%PftOZX8u_WE+2I4SC@4)K%qM}u##FV_Xe zlyZ~!2A)x5JxM$dm5C<(m*3AOi~6#iQeKr80!~1E{Fh(zEv~G8g+<{PBum8(t+C5l z?6ahlBMU^}X&H@jf%ISIU%Ee}@4N>8+@N##8M&Y@n9{D4rTC0g|3_6^VoFwpEL8bB DyT-Z$ literal 0 HcmV?d00001 diff --git a/latest_reverse_eng_report/Linux Driver Development Specification for TASCAM US-144 MKII.txt b/latest_reverse_eng_report/Linux Driver Development Specification for TASCAM US-144 MKII.txt new file mode 100644 index 0000000..705e3ee --- /dev/null +++ b/latest_reverse_eng_report/Linux Driver Development Specification for TASCAM US-144 MKII.txt @@ -0,0 +1,151 @@ +Final Analysis Report & Driver Development Specification for TASCAM US-144 MKII + +Document Version: 5.0 +Date: 2025-06-23 +Subject: This document provides a complete specification for the USB control protocol and core audio data flow of the TASCAM US-144 MKII. It is intended to serve as the primary technical reference for implementing a functional Linux driver. +1. Device Identification + + Vendor ID (VID): 0x0644 + + Product ID (PID): 0x8020 + +2. USB Audio Architecture + +The device utilizes a vendor-specific protocol and does not implement a standard USB Audio Class (UAC) interface for streaming. The core architecture is a fixed 4-channel input / 4-channel output system over USB. + + Playback (Host -> Device): A 4-channel Asynchronous Isochronous OUT stream on Endpoint 0x02. The host driver is responsible for populating all 4 channels. Unused channels should be filled with digital silence. + + Capture (Device -> Host): A 4-channel continuous Bulk IN stream on Endpoint 0x86. This stream is active after device initialization and is preceded by a 2048-byte header in each transfer, which must be discarded before processing audio data. + + Clocking: An associated Isochronous IN feedback endpoint (0x81) is used for playback clock drift correction. This endpoint does not carry audio data. + + Sample Rates: 44.1, 48, 88.2, and 96 kHz. + + Bit Depth: Fixed at 24-bit Little Endian PCM for all audio streams. + +3. Endpoint Map +Endpoint Direction Type Interface Alternate Setting Verified Function +0x02 OUT Isochronous 0 1 Audio Playback Data: 4-channel interleaved 24-bit PCM stream. +0x81 IN Isochronous 1 1 Playback Clock Feedback: Non-audio timing data. Consistently sends 303030. +0x86 IN Bulk 1 1 Audio Capture Data: 4-channel interleaved 24-bit PCM stream, preceded by a 2048-byte header. +0x83 IN Bulk 0 1 MIDI IN Data +0x04 OUT Bulk 0 1 MIDI OUT Data +4. Device Initialization and Rate-Setting Sequence + +To initialize the device or change the sample rate, the following sequence of control transfers must be executed in order. + + Step 1: Set Interfaces + + Set Configuration: SET_CONFIGURATION, wValue: 1, wIndex: 0 + + Set Interface 0: SET_INTERFACE, wValue: 1, wIndex: 0 + + Set Interface 1: SET_INTERFACE, wValue: 1, wIndex: 1 + + Step 2: Initial Handshake & Status Check (Optional but Recommended) + + bmRequestType: 0xc0, bRequest: 73, wValue: 0x0000, wIndex: 0x0000, wLength: 1 + + Expected Response Data: 0x12 + + Step 3: Set Initial Mode + + bmRequestType: 0x40, bRequest: 73, wValue: 0x0010, wIndex: 0x0000, wLength: 0 + + Step 4: Set Sample Rate + + This is a UAC-style command sent twice, once for each endpoint. + + bmRequestType: 0x22, bRequest: 1 (SET_CUR), wValue: 0x0100 (SAMPLING_FREQ_CONTROL), wLength: 3 + + Send once with wIndex: 0x0086 (Capture EP) and once with wIndex: 0x0002 (Playback EP). + + Payload Data: + | Sample Rate | 3-Byte Payload (Hex) | + | :--- | :--- | + | 44100 Hz | 44 ac 00 | + | 48000 Hz | 80 bb 00 | + | 88200 Hz | 88 58 01 | + | 96000 Hz | 00 77 01 | + + Step 5: Configure Internal Registers + + Static Register Writes: + | wValue | bRequest | bmRequestType | wIndex | + | :--- | :--- | :--- | :--- | + | 0x0d04 | 65 | 0x40 | 0x0101 | + | 0x0e00 | 65 | 0x40 | 0x0101 | + | 0x0f00 | 65 | 0x40 | 0x0101 | + + Rate-Dependent Register Write: + | Sample Rate | wValue | bRequest | bmRequestType | wIndex | + | :--- | :--- | :--- | :--- | :--- | + | 44100 Hz | 0x1000 | 65 | 0x40 | 0x0101 | + | 48000 Hz | 0x1002 | 65 | 0x40 | 0x0101 | + | 88200 Hz | 0x1008 | 65 | 0x40 | 0x0101 | + | 96000 Hz | 0x100a | 65 | 0x40 | 0x0101 | + + Final Static Register Write: + | wValue | bRequest | bmRequestType | wIndex | + | :--- | :--- | :--- | :--- | + | 0x110b | 65 | 0x40 | 0x0101 | + + Step 6: Enable Streaming + + bmRequestType: 0x40, bRequest: 73, wValue: 0x0030, wIndex: 0x0000, wLength: 0 + +5. Audio Data Stream Format + +A single "audio frame" consists of one sample for each of the four channels and is 12 bytes long (4 channels x 3 bytes/channel). All samples are 24-bit Little Endian. + + Type: Isochronous OUT. + + Structure: The stream consists of a series of isochronous packets. At 48kHz, each packet is 72 bytes, containing 6 audio frames. + + Frame Format (12 bytes): + | Byte Offset | Length | Channel Assignment | + | :--- | :--- | :--- | + | 0, 1, 2 | 3 bytes | Channel 1 (Analog Left Out) | + | 3, 4, 5 | 3 bytes | Channel 2 (Analog Right Out) | + | 6, 7, 8 | 3 bytes | Channel 3 (Digital Left Out) | + | 9, 10, 11 | 3 bytes | Channel 4 (Digital Right Out) | + + Type: Bulk IN. + + Structure: The stream consists of large bulk transfers (e.g., 131,072 bytes). Each transfer is composed of: + + A 2048-byte (0x800) header. The purpose of this header is unknown; it must be read and discarded. + + The subsequent data is a continuous stream of interleaved 12-byte audio frames. + + Frame Format (12 bytes): + | Byte Offset | Length | Channel Assignment | + | :--- | :--- | :--- | + | 0, 1, 2 | 3 bytes | Channel 1 (Analog Left In) | + | 3, 4, 5 | 3 bytes | Channel 2 (Analog Right In) | + | 6, 7, 8 | 3 bytes | Channel 3 (Digital Left In) | + | 9, 10, 11 | 3 bytes | Channel 4 (Digital Right In) | + +6. Host-Side Audio Routing Logic + +The device's internal hardware routing is fixed. All channel routing, duplication, and mixing must be performed by the host-side driver. The TASCAM Control Panel application modifies the behavior of the driver, not the hardware. + + Fixed Hardware Mapping: + + USB IN Channels 1/2 are sourced from the physical Analog Inputs. + + USB IN Channels 3/4 are sourced from the physical S/PDIF Input. + + USB OUT Channels 1/2 are routed to the physical Analog Outputs (Line Out & Phones). + + USB OUT Channels 3/4 are routed to the physical S/PDIF Output. + + Driver Responsibility: The driver must act as a software patch bay. For example, to route system audio (typically stereo channels 1/2) to the S/PDIF output, the driver must copy the audio data from channels 1/2 into the channel 3/4 slots of the USB OUT stream before sending it to the device. + +7. Areas for Further Investigation + + MIDI (EP 0x83/0x04): The data format for MIDI messages on the bulk endpoints requires analysis. + + Digital Format Control: The specific USB control request to switch the S/PDIF output between professional (AES/EBU) and consumer formats needs to be identified. + + Capture Stream Header: The content and purpose of the 2048-byte header on the Endpoint 0x86 data stream are unknown. \ No newline at end of file diff --git a/reverse_eng_dataset/24bit_44.1k_440_TONE_URB_ISO_OUT.txt b/reverse_eng_dataset/24bit_44.1k_440_TONE_URB_ISO_OUT.txt new file mode 100644 index 0000000..1128dce --- /dev/null +++ b/reverse_eng_dataset/24bit_44.1k_440_TONE_URB_ISO_OUT.txt @@ -0,0 +1,897 @@ +No. Time Source Destination Protocol Length Info + 5108 4.258739 host 1.15.2 USB 3159 URB_ISOCHRONOUS out + +Frame 5108: 3159 bytes on wire (25272 bits), 3159 bytes captured (25272 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:05:30.286929000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:05:30.286929000 UTC + Epoch Arrival Time: 1750615530.286929000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000020000 seconds] + [Time delta from previous displayed frame: 0.000020000 seconds] + [Time since reference or first frame: 4.258739000 seconds] + Frame Number: 5108 + Frame Length: 3159 bytes (25272 bits) + Capture Length: 3159 bytes (25272 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.15.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffffde073eb0e010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 15 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2640 + [Response in: 5131] + Isochronous transfer start frame: 5953449 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f6e8d1f6e8d1f6e8d1f6e8d14ac8d44ac8d44ac8d44ac8d414d3d714d3d714d3d714d3d74706db4706db4706db4706dba95edea95edea95edea95ededfd8e1dfd8e1dfd8e1dfd8e1 +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6771e56771e56771e56771e5a624e9a624e9a624e9a624e9e1eeece1eeece1eeece1eeec49ccf049ccf049ccf049ccf0fcb8f4fcb8f4fcb8f4fcb8f4 +USB isochronous packet + ISO Data offset: 0x00000084 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 06b1f806b1f806b1f806b1f86ab0fc6ab0fc6ab0fc6ab0fc21b30021b30021b30021b30025b50425b50425b50425b5046eb2086eb2086eb2086eb208f7a60cf7a60cf7a60cf7a60c +USB isochronous packet + ISO Data offset: 0x000000cc + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c68e10c68e10c68e10c68e10ef6514ef6514ef6514ef6514932818932818932818932818ecd21becd21becd21becd21b48611f48611f48611f48611f +USB isochronous packet + ISO Data offset: 0x00000108 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 15d02215d02215d02215d022df1b26df1b26df1b26df1b265541295541295541295541294e3d2c4e3d2c4e3d2c4e3d2cc70c2fc70c2fc70c2fc70c2fefac31efac31efac31efac31 +USB isochronous packet + ISO Data offset: 0x00000150 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 211b34211b34211b34211b34ec5436ec5436ec5436ec54361158381158381158381158388c223a8c223a8c223a8c223a8fb23b8fb23b8fb23b8fb23b +USB isochronous packet + ISO Data offset: 0x0000018c + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 88063d88063d88063d88063d201d3e201d3e201d3e201d3e40f53e40f53e40f53e40f53e0e8e3f0e8e3f0e8e3f0e8e3ff0e63ff0e63ff0e63ff0e63f8eff3f8eff3f8eff3f8eff3f +USB isochronous packet + ISO Data offset: 0x000001d4 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ced73fced73fced73fced73fd96f3fd96f3fd96f3fd96f3f16c83e16c83e16c83e16c83e2fe13d2fe13d2fe13d2fe13d0cbc3c0cbc3c0cbc3c0cbc3c +USB isochronous packet + ISO Data offset: 0x00000210 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d4593bd4593bd4593bd4593beabb39eabb39eabb39eabb39f0e337f0e337f0e337f0e337c0d335c0d335c0d335c0d3356e8d336e8d336e8d336e8d33421331421331421331421331 +USB isochronous packet + ISO Data offset: 0x00000258 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ba672eba672eba672eba672e878d2b878d2b878d2b878d2b878728878728878728878728c35825c35825c35825c35825700422700422700422700422 +USB isochronous packet + ISO Data offset: 0x00000294 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e68d1ee68d1ee68d1ee68d1ea1f81aa1f81aa1f81aa1f81a3d48173d48173d48173d48176d80136d80136d80136d801301a50f01a50f01a50f01a50fd9b90bd9b90bd9b90bd9b90b +USB isochronous packet + ISO Data offset: 0x000002dc + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e6c207e6c207e6c207e6c20724c40324c40324c40324c40399c1ff99c1ff99c1ff99c1ff4cbffb4cbffb4cbffb4cbffb47c1f747c1f747c1f747c1f7 +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8ccbf38ccbf38ccbf38ccbf318e2ef18e2ef18e2ef18e2efd908ecd908ecd908ecd908ecae43e8ae43e8ae43e8ae43e86396e46396e46396e46396e4aa04e1aa04e1aa04e1aa04e1 +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1a92dd1a92dd1a92dd1a92dd2a42da2a42da2a42da2a42da2f18d72f18d72f18d72f18d75817d45817d45817d45817d4ab42d1ab42d1ab42d1ab42d1 +USB isochronous packet + ISO Data offset: 0x0000039c + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ff9cceff9cceff9cceff9cceff28ccff28ccff28ccff28cc22e9c922e9c922e9c922e9c9abdfc7abdfc7abdfc7abdfc7a80ec6a80ec6a80ec6a80ec6ea77c4ea77c4ea77c4ea77c4 +USB isochronous packet + ISO Data offset: 0x000003e4 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0c1dc30c1dc30c1dc30c1dc36bffc16bffc16bffc16bffc12520c12520c12520c12520c11b80c01b80c01b80c01b80c0ef1fc0ef1fc0ef1fc0ef1fc0 +USB isochronous packet + ISO Data offset: 0x00000420 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0000c00000c00000c00000c07020c07020c07020c07020c01c81c01c81c01c81c01c81c0a521c1a521c1a521c1a521c16901c26901c26901c26901c2861fc3861fc3861fc3861fc3 +USB isochronous packet + ISO Data offset: 0x00000468 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: dd7ac4dd7ac4dd7ac4dd7ac41112c61112c61112c61112c688e3c788e3c788e3c788e3c76eedc96eedc96eedc96eedc9b52dccb52dccb52dccb52dcc +USB isochronous packet + ISO Data offset: 0x000004a4 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1ba2ce1ba2ce1ba2ce1ba2ce2848d12848d12848d12848d1301dd4301dd4301dd4301dd45d1ed75d1ed75d1ed75d1ed7a648daa648daa648daa648dadf98dddf98dddf98dddf98dd +USB isochronous packet + ISO Data offset: 0x000004ec + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b10be1b10be1b10be1b10be1a59de4a59de4a59de4a59de4244be8244be8244be8244be87a10ec7a10ec7a10ec7a10ecdde9efdde9efdde9efdde9ef +USB isochronous packet + ISO Data offset: 0x00000528 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6ed3f36ed3f36ed3f36ed3f33ec9f73ec9f73ec9f73ec9f750c7fb50c7fb50c7fb50c7fba1c9ffa1c9ffa1c9ffa1c9ff28cc0328cc0328cc0328cc03deca07deca07deca07deca07 +USB isochronous packet + ISO Data offset: 0x00000570 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: bec10bbec10bbec10bbec10bcbac0fcbac0fcbac0fcbac0f148813148813148813148813b84f17b84f17b84f17b84f17ebff1aebff1aebff1aebff1a +USB isochronous packet + ISO Data offset: 0x000005ac + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f5941ef5941ef5941ef5941e3e0b223e0b223e0b223e0b224a5f254a5f254a5f254a5f25bf8d28bf8d28bf8d28bf8d286b932b6b932b6b932b6b932b446d2e446d2e446d2e446d2e +USB isochronous packet + ISO Data offset: 0x000005f4 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6b18316b18316b18316b18313292333292333292333292331ad8351ad8351ad8351ad835dce737dce737dce737dce73763bf3963bf3963bf3963bf39 +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d65c3bd65c3bd65c3bd65c3b96be3c96be3c96be3c96be3c3de33d3de33d3de33d3de33da6c93ea6c93ea6c93ea6c93ee9703fe9703fe9703fe9703f5ed83f5ed83f5ed83f5ed83f +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9dff3f9dff3f9dff3f9dff3f7ee63f7ee63f7ee63f7ee63f1a8d3f1a8d3f1a8d3f1a8d3fcdf33ecdf33ecdf33ecdf33e2e1b3e2e1b3e2e1b3e2e1b3e +USB isochronous packet + ISO Data offset: 0x000006b4 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1a043d1a043d1a043d1a043da8af3ba8af3ba8af3ba8af3b2e1f3a2e1f3a2e1f3a2e1f3a405438405438405438405438aa5036aa5036aa5036aa5036751634751634751634751634 +USB isochronous packet + ISO Data offset: 0x000006fc + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: dca731dca731dca731dca73153072f53072f53072f53072f7e372c7e372c7e372c7e372c2f3b292f3b292f3b292f3b296a15266a15266a15266a1526 +USB isochronous packet + ISO Data offset: 0x00000738 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 56c92256c92256c92256c922465a1f465a1f465a1f465a1faecb1baecb1baecb1baecb1b222118222118222118222118515e14515e14515e14515e14048710048710048710048710 +USB isochronous packet + ISO Data offset: 0x00000780 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 179f0c179f0c179f0c179f0c79aa0879aa0879aa0879aa0823ad0423ad0423ad0423ad041aab001aab001aab001aab0064a8fc64a8fc64a8fc64a8fc +USB isochronous packet + ISO Data offset: 0x000007bc + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0ba9f80ba9f80ba9f80ba9f814b1f414b1f414b1f414b1f47cc4f07cc4f07cc4f07cc4f036e7ec36e7ec36e7ec36e7ec251de9251de9251de9251de9196ae5196ae5196ae5196ae5 +USB isochronous packet + ISO Data offset: 0x00000804 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c9d1e1c9d1e1c9d1e1c9d1e1d457ded457ded457ded457deb9ffdab9ffdab9ffdab9ffdad4ccd7d4ccd7d4ccd7d4ccd75dc2d45dc2d45dc2d45dc2d4 +USB isochronous packet + ISO Data offset: 0x00000840 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 64e3d164e3d164e3d164e3d1cb32cfcb32cfcb32cfcb32cf46b3cc46b3cc46b3cc46b3cc5a67ca5a67ca5a67ca5a67ca5651c85651c85651c85651c85173c65173c65173c65173c6 +USB isochronous packet + ISO Data offset: 0x00000888 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2ecfc42ecfc42ecfc42ecfc49366c39366c39366c39366c3ea3ac2ea3ac2ea3ac2ea3ac2614dc1614dc1614dc1614dc1e69ec0e69ec0e69ec0e69ec0 +USB isochronous packet + ISO Data offset: 0x000008c4 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2a30c02a30c02a30c02a30c09c01c09c01c09c01c09c01c06913c06913c06913c06913c08265c08265c08265c08265c092f7c092f7c092f7c092f7c007c9c107c9c107c9c107c9c1 +USB isochronous packet + ISO Data offset: 0x0000090c + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0ed9c20ed9c20ed9c20ed9c29626c49626c49626c49626c450b0c550b0c550b0c550b0c5af74c7af74c7af74c7af74c7ec71c9ec71c9ec71c9ec71c9 +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 08a6cb08a6cb08a6cb08a6cbca0ececa0ececa0ececa0ecec7a9d0c7a9d0c7a9d0c7a9d06074d36074d36074d36074d3c56bd6c56bd6c56bd6c56bd6fc8cd9fc8cd9fc8cd9fc8cd9 +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: dfd4dcdfd4dcdfd4dcdfd4dc2040e02040e02040e02040e050cbe350cbe350cbe350cbe3de72e7de72e7de72e7de72e71d33eb1d33eb1d33eb1d33eb +USB isochronous packet + ISO Data offset: 0x000009cc + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4808ef4808ef4808ef4808ef83eef283eef283eef283eef2e3e1f6e3e1f6e3e1f6e3e1f66edefa6edefa6edefa6edefa23e0fe23e0fe23e0fe23e0fef8e202f8e202f8e202f8e202 +USB isochronous packet + ISO Data offset: 0x00000a14 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e7e206e7e206e7e206e7e206e9db0ae9db0ae9db0ae9db0affc90effc90effc90effc90e36a91236a91236a91236a912a87516a87516a87516a87516 + +No. Time Source Destination Protocol Length Info + 5113 4.263350 1.15.2 host USB 519 URB_ISOCHRONOUS out + +Frame 5113: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:05:30.291540000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:05:30.291540000 UTC + Epoch Arrival Time: 1750615530.291540000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001858000 seconds] + [Time delta from previous displayed frame: 0.004611000 seconds] + [Time since reference or first frame: 4.263350000 seconds] + Frame Number: 5113 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.15.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffffde073c832010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 15 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 5089] + [Time from request: 0.014585000 seconds] + Isochronous transfer start frame: 5953439 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000084 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000000cc + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000108 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000150 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000018c + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001d4 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000210 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000258 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000294 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002dc + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000039c + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003e4 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000420 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000468 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004a4 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004ec + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000528 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000570 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005ac + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005f4 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006b4 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006fc + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000738 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000780 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007bc + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000804 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000840 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000888 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008c4 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000090c + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009cc + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a14 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + +No. Time Source Destination Protocol Length Info + 5118 4.263774 host 1.15.2 USB 3171 URB_ISOCHRONOUS out + +Frame 5118: 3171 bytes on wire (25368 bits), 3171 bytes captured (25368 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:05:30.291964000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:05:30.291964000 UTC + Epoch Arrival Time: 1750615530.291964000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000027000 seconds] + [Time delta from previous displayed frame: 0.000027000 seconds] + [Time since reference or first frame: 4.263774000 seconds] + Frame Number: 5118 + Frame Length: 3171 bytes (25368 bits) + Capture Length: 3171 bytes (25368 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.15.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffffde073c832010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 15 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2652 + [Response in: 5141] + Isochronous transfer start frame: 5953454 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0cc71d0cc71d0cc71d0cc71da24421a24421a24421a24421c3a024c3a024c3a024c3a0240ed8270ed8270ed8270ed82745e72a45e72a45e72a45e72a56cb2d56cb2d56cb2d56cb2d +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5981305981305981305981309406339406339406339406337c58357c58357c58357c5835be7437be7437be7437be74373a59393a59393a59393a5939 +USB isochronous packet + ISO Data offset: 0x00000084 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 08043b08043b08043b08043b7b733c7b733c7b733c7b733c22a63d22a63d22a63d22a63dc89a3ec89a3ec89a3ec89a3e78503f78503f78503f78503f7ac63f7ac63f7ac63f7ac63f +USB isochronous packet + ISO Data offset: 0x000000cc + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 58fc3f58fc3f58fc3f58fc3fdbf13fdbf13fdbf13fdbf13f0ea73f0ea73f0ea73f0ea73f3d1c3f3d1c3f3d1c3f3d1c3ff3513ef3513ef3513ef3513e +USB isochronous packet + ISO Data offset: 0x00000108 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: fc483dfc483dfc483dfc483d61023c61023c61023c61023c6c7f3a6c7f3a6c7f3a6c7f3aa1c138a1c138a1c138a1c138c2ca36c2ca36c2ca36c2ca36c79c34c79c34c79c34c79c34 +USB isochronous packet + ISO Data offset: 0x00000150 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e23932e23932e23932e239327aa42f7aa42f7aa42f7aa42f27df2c27df2c27df2c27df2cb3ec29b3ec29b3ec29b3ec2915d02615d02615d02615d026 +USB isochronous packet + ISO Data offset: 0x0000018c + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6e8c236e8c236e8c236e8c230625200625200625200625204a9d1c4a9d1c4a9d1c4a9d1cc6f818c6f818c6f818c6f818253b15253b15253b15253b152a68112a68112a68112a6811 +USB isochronous packet + ISO Data offset: 0x000001d4 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ad830dad830dad830dad830d989109989109989109989109e49505e49505e49505e49505929401929401929401929401a991fda991fda991fda991fd +USB isochronous packet + ISO Data offset: 0x00000210 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3291f93291f93291f93291f93397f53397f53397f53397f5aca7f1aca7f1aca7f1aca7f192c6ed92c6ed92c6ed92c6edcdf7e9cdf7e9cdf7e9cdf7e9303fe6303fe6303fe6303fe6 +USB isochronous packet + ISO Data offset: 0x00000258 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 7aa0e27aa0e27aa0e27aa0e24f1fdf4f1fdf4f1fdf4f1fdf34bfdb34bfdb34bfdb34bfdb9083d89083d89083d89083d8a26fd5a26fd5a26fd5a26fd58386d28386d28386d28386d2 +USB isochronous packet + ISO Data offset: 0x000002a0 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 20cbcf20cbcf20cbcf20cbcf3940cd3940cd3940cd3940cd5ce8ca5ce8ca5ce8ca5ce8cae5c5c8e5c5c8e5c5c8e5c5c8f9dac6f9dac6f9dac6f9dac6 +USB isochronous packet + ISO Data offset: 0x000002dc + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8629c58629c58629c58629c540b3c340b3c340b3c340b3c39f79c29f79c29f79c29f79c2df7dc1df7dc1df7dc1df7dc1fdc0c0fdc0c0fdc0c0fdc0c0b743c0b743c0b743c0b743c0 +USB isochronous packet + ISO Data offset: 0x00000324 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8b06c08b06c08b06c08b06c0b609c0b609c0b609c0b609c0354dc0354dc0354dc0354dc0c5d0c0c5d0c0c5d0c0c5d0c0e093c1e093c1e093c1e093c1 +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c495c2c495c2c495c2c495c26cd5c36cd5c36cd5c36cd5c39751c59751c59751c59751c5c708c7c708c7c708c7c708c741f9c841f9c841f9c841f9c81321cb1321cb1321cb1321cb +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 127ecd127ecd127ecd127ecddc0dd0dc0dd0dc0dd0dc0dd0e0cdd2e0cdd2e0cdd2e0cdd258bbd558bbd558bbd558bbd552d3d852d3d852d3d852d3d8 +USB isochronous packet + ISO Data offset: 0x000003e4 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b312dcb312dcb312dcb312dc3676df3676df3676df3676df72fae272fae272fae272fae2df9be6df9be6df9be6df9be6d556ead556ead556ead556ea9427ee9427ee9427ee9427ee +USB isochronous packet + ISO Data offset: 0x0000042c + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 450af2450af2450af2450af201fbf501fbf501fbf501fbf5d1f5f9d1f5f9d1f5f9d1f5f9b3f6fdb3f6fdb3f6fdb3f6fda1f901a1f901a1f901a1f90194fa0594fa0594fa0594fa05 +USB isochronous packet + ISO Data offset: 0x00000474 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 84f50984f50984f50984f5096fe60d6fe60d6fe60d6fe60d5fc9115fc9115fc9115fc9116c9a156c9a156c9a156c9a15be5519be5519be5519be5519 +USB isochronous packet + ISO Data offset: 0x000004b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 96f71c96f71c96f71c96f71c4c7c204c7c204c7c204c7c2055e02355e02355e02355e023492027492027492027492027e4382ae4382ae4382ae4382a08272d08272d08272d08272d +USB isochronous packet + ISO Data offset: 0x000004f8 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c2e72fc2e72fc2e72fc2e72f4e78324e78324e78324e783218d63418d63418d63418d634befe36befe36befe36befe3615f03815f03815f03815f038 +USB isochronous packet + ISO Data offset: 0x00000534 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 28a83a28a83a28a83a28a83a3c253c3c253c3c253c3c253cd3653dd3653dd3653dd3653daa683eaa683eaa683eaa683ebc2c3fbc2c3fbc2c3fbc2c3f44b13f44b13f44b13f44b13f +USB isochronous packet + ISO Data offset: 0x0000057c + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: bef53fbef53fbef53fbef53fe4f93fe4f93fe4f93fe4f93fb3bd3fb3bd3fb3bd3fb3bd3f66413f66413f66413f66413f7a853e7a853e7a853e7a853e +USB isochronous packet + ISO Data offset: 0x000005b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ad8a3dad8a3dad8a3dad8a3dfb513cfb513cfb513cfb513c9edc3a9edc3a9edc3a9edc3a0f2c390f2c390f2c390f2c39ff4137ff4137ff4137ff41375c20355c20355c20355c2035 +USB isochronous packet + ISO Data offset: 0x00000600 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4bc9324bc9324bc9324bc932263f30263f30263f30263f307b842d7b842d7b842d7b842d099c2a099c2a099c2a099c2abc8827bc8827bc8827bc8827 +USB isochronous packet + ISO Data offset: 0x0000063c + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ac4d24ac4d24ac4d24ac4d2419ee2019ee2019ee2019ee20686d1d686d1d686d1d686d1d1ecf191ecf191ecf191ecf19df1616df1616df1616df1616694812694812694812694812 +USB isochronous packet + ISO Data offset: 0x00000684 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8f670e8f670e8f670e8f670e39780a39780a39780a39780a5b7e065b7e065b7e065b7e06f57d02f57d02f57d02f57d020e7bfe0e7bfe0e7bfe0e7bfe +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ae79faae79faae79faae79fadc7df6dc7df6dc7df6dc7df69a8bf29a8bf29a8bf29a8bf2e1a6eee1a6eee1a6eee1a6ee9ad3ea9ad3ea9ad3ea9ad3ea9f15e79f15e79f15e79f15e7 +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b270e3b270e3b270e3b270e37fe8df7fe8df7fe8df7fe8df9380dc9380dc9380dc9380dc5a3cd95a3cd95a3cd95a3cd91e1fd61e1fd61e1fd61e1fd6 +USB isochronous packet + ISO Data offset: 0x00000744 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 002cd3002cd3002cd3002cd3f765d0f765d0f765d0f765d0cfcfcdcfcfcdcfcfcdcfcfcd216ccb216ccb216ccb216ccb543dc9543dc9543dc9543dc99a45c79a45c79a45c79a45c7 +USB isochronous packet + ISO Data offset: 0x0000078c + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ee86c5ee86c5ee86c5ee86c51003c41003c41003c41003c488bbc288bbc288bbc288bbc29eb1c19eb1c19eb1c19eb1c15ee6c05ee6c05ee6c05ee6c0 +USB isochronous packet + ISO Data offset: 0x000007c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 945ac0945ac0945ac0945ac0ce0ec0ce0ec0ce0ec0ce0ec05603c05603c05603c05603c03938c03938c03938c03938c041adc041adc041adc041adc0fa61c1fa61c1fa61c1fa61c1 +USB isochronous packet + ISO Data offset: 0x00000810 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ac55c2ac55c2ac55c2ac55c26387c36387c36387c36387c3ecf5c4ecf5c4ecf5c4ecf5c4d59fc6d59fc6d59fc6d59fc67283c87283c87283c87283c8 +USB isochronous packet + ISO Data offset: 0x0000084c + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: de9ecade9ecade9ecade9ecafaefccfaefccfaefccfaefcc7074cf7074cf7074cf7074cfba29d2ba29d2ba29d2ba29d21c0dd51c0dd51c0dd51c0dd5b11bd8b11bd8b11bd8b11bd8 +USB isochronous packet + ISO Data offset: 0x00000894 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6552db6552db6552db6552dbfcaddefcaddefcaddefcadde162be2162be2162be2162be231c6e531c6e531c6e531c6e5ac7be9ac7be9ac7be9ac7be9 +USB isochronous packet + ISO Data offset: 0x000008d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: cd47edcd47edcd47edcd47edc226f1c226f1c226f1c226f1a514f5a514f5a514f5a514f5840df9840df9840df9840df95f0dfd5f0dfd5f0dfd5f0dfd311001311001311001311001 +USB isochronous packet + ISO Data offset: 0x00000918 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f21105f21105f21105f21105990e09990e09990e09990e0925020d25020d25020d25020d9ce8109ce8109ce8109ce81010be1410be1410be1410be14 +USB isochronous packet + ISO Data offset: 0x00000954 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a97e18a97e18a97e18a97e189e261c9e261c9e261c9e261c44b21f44b21f44b21f44b21f091e23091e23091e23091e237c66267c66267c66267c6626518829518829518829518829 +USB isochronous packet + ISO Data offset: 0x0000099c + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 60802c60802c60802c60802cad4b2fad4b2fad4b2fad4b2f69e73169e73169e73169e731f45034f45034f45034f45034e28536e28536e28536e28536 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: fa8338fa8338fa8338fa83383a493a3a493a3a493a3a493adcd33bdcd33bdcd33bdcd33b52223d52223d52223d52223d4c333e4c333e4c333e4c333eb7053fb7053fb7053fb7053f +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c0983fc0983fc0983fc0983fd2eb3fd2eb3fd2eb3fd2eb3f9bfe3f9bfe3f9bfe3f9bfe3f07d13f07d13f07d13f07d13f727fc8727fc8727fc8727fc8 + +No. Time Source Destination Protocol Length Info + 5123 4.268349 1.15.2 host USB 519 URB_ISOCHRONOUS out + +Frame 5123: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:05:30.296539000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:05:30.296539000 UTC + Epoch Arrival Time: 1750615530.296539000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000853000 seconds] + [Time delta from previous displayed frame: 0.004575000 seconds] + [Time since reference or first frame: 4.268349000 seconds] + Frame Number: 5123 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.15.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffffde073ebe8010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 15 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 5100] + [Time from request: 0.014529000 seconds] + Isochronous transfer start frame: 5953444 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000084 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000000cc + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000108 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000150 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000018c + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001d4 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000210 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000258 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002a0 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002dc + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000324 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003e4 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000042c + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000474 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004f8 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000534 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000057c + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000600 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000063c + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000684 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000744 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000078c + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000810 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000084c + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000894 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000918 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000954 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000099c + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x0000003c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) diff --git a/reverse_eng_dataset/24bit_48k_440_TONE_URB_ISO_OUT.txt b/reverse_eng_dataset/24bit_48k_440_TONE_URB_ISO_OUT.txt new file mode 100644 index 0000000..43a3b3d --- /dev/null +++ b/reverse_eng_dataset/24bit_48k_440_TONE_URB_ISO_OUT.txt @@ -0,0 +1,897 @@ +No. Time Source Destination Protocol Length Info + 36 0.015268 host 1.15.2 USB 3399 URB_ISOCHRONOUS out + +Frame 36: 3399 bytes on wire (27192 bits), 3399 bytes captured (27192 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:59:21.067641000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:59:21.067641000 UTC + Epoch Arrival Time: 1750615161.067641000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000013000 seconds] + [Time delta from previous displayed frame: 0.000013000 seconds] + [Time since reference or first frame: 0.015268000 seconds] + Frame Number: 36 + Frame Length: 3399 bytes (27192 bits) + Capture Length: 3399 bytes (27192 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.15.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffffde073ec18010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 15 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2880 + [Response in: 45] + Isochronous transfer start frame: 5584230 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 38ffca38ffca38ffca38ffca1f05c91f05c91f05c91f05c9b339c7b339c7b339c7b339c77b9ec57b9ec57b9ec57b9ec5d434c4d434c4d434c4d434c4effdc2effdc2effdc2effdc2 +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d7fac1d7fac1d7fac1d7fac1662cc1662cc1662cc1662cc14b93c04b93c04b93c04b93c00a30c00a30c00a30c00a30c0f502c0f502c0f502c0f502c0340cc0340cc0340cc0340cc0 +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: be4bc0be4bc0be4bc0be4bc05dc1c05dc1c05dc1c05dc1c0ae6cc1ae6cc1ae6cc1ae6cc1204dc2204dc2204dc2204dc2f361c3f361c3f361c3f361c33caac43caac43caac43caac4 +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e624c6e624c6e624c6e624c6aed0c7aed0c7aed0c7aed0c729acc929acc929acc929acc9c4b5cbc4b5cbc4b5cbc4b5cbc3ebcdc3ebcdc3ebcdc3ebcd474cd0474cd0474cd0474cd0 +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4ad5d24ad5d24ad5d24ad5d2a684d5a684d5a684d5a684d51258d81258d81258d81258d82a4ddb2a4ddb2a4ddb2a4ddb6a61de6a61de6a61de6a61de3492e13492e13492e13492e1 +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d4dce4d4dce4d4dce4d4dce47e3ee87e3ee87e3ee87e3ee854b4eb54b4eb54b4eb54b4eb643bef643bef643bef643befb1d0f2b1d0f2b1d0f2b1d0f22f71f62f71f62f71f62f71f6 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ca19faca19faca19faca19fa68c7fd68c7fd68c7fd68c7fde87601e87601e87601e876012a25052a25052a25052a25050fcf080fcf080fcf080fcf0879710c79710c79710c79710c +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5209105209105209105209108e93138e93138e93138e93132b0d172b0d172b0d172b0d1736731a36731a36731a36731acdc21dcdc21dcdc21dcdc21d1ff9201ff9201ff9201ff920 +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 731324731324731324731324260f27260f27260f27260f27b0e929b0e929b0e929b0e929a4a02ca4a02ca4a02ca4a02cb6312fb6312fb6312fb6312fb69a31b69a31b69a31b69a31 +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 98d93398d93398d93398d93376ec3576ec3576ec3576ec358cd1378cd1378cd1378cd1373e87393e87393e87393e8739180c3b180c3b180c3b180c3bd25e3cd25e3cd25e3cd25e3c +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4a7e3d4a7e3d4a7e3d4a7e3d8e693e8e693e8e693e8e693ed41f3fd41f3fd41f3fd41f3f84a03f84a03f84a03f84a03f2eeb3f2eeb3f2eeb3f2eeb3f94ff3f94ff3f94ff3f94ff3f +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a5dd3fa5dd3fa5dd3fa5dd3f7d853f7d853f7d853f7d853f67f73e67f73e67f73e67f73edc333edc333edc333edc333e823b3d823b3d823b3d823b3d2b0f3c2b0f3c2b0f3c2b0f3c +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d7af3ad7af3ad7af3ad7af3ab01e39b01e39b01e39b01e390a5d370a5d370a5d370a5d37646c35646c35646c35646c35624e33624e33624e33624e33d10431d10431d10431d10431 +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a3912ea3912ea3912ea3912eebf62bebf62bebf62bebf62be03629e03629e03629e03629d65326d65326d65326d65326445023445023445023445023b52e20b52e20b52e20b52e20 +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d4f11cd4f11cd4f11cd4f11c619c19619c19619c19619c192f31162f31162f31162f311625b31225b31225b31225b3123c250f3c250f3c250f3c250f768a0b768a0b768a0b768a0b +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e5e507e5e507e5e507e5e5079f3a049f3a049f3a049f3a04c18b00c18b00c18b00c18b006ddcfc6ddcfc6ddcfc6ddcfcc32ff9c32ff9c32ff9c32ff9e288f5e288f5e288f5e288f5 +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e4eaf1e4eaf1e4eaf1e4eaf1da58eeda58eeda58eeda58eeced5eaced5eaced5eaced5eab964e7b964e7b964e7b964e78808e48808e48808e48808e415c4e015c4e015c4e015c4e0 +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 279add279add279add279add6d8dda6d8dda6d8dda6d8dda7ea0d77ea0d77ea0d77ea0d7d6d5d4d6d5d4d6d5d4d6d5d4d32fd2d32fd2d32fd2d32fd2b6b0cfb6b0cfb6b0cfb6b0cf +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9c5acd9c5acd9c5acd9c5acd822fcb822fcb822fcb822fcb3f31c93f31c93f31c93f31c98461c78461c78461c78461c7dac1c5dac1c5dac1c5dac1c5a353c4a353c4a353c4a353c4 +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1618c31618c31618c31618c33d10c23d10c23d10c23d10c2fa3cc1fa3cc1fa3cc1fa3cc1009fc0009fc0009fc0009fc0d436c0d436c0d436c0d436c0d004c0d004c0d004c0d004c0 +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1d09c01d09c01d09c01d09c0b943c0b943c0b943c0b943c070b4c070b4c070b4c070b4c0e55ac1e55ac1e55ac1e55ac18836c28836c28836c28836c2a146c3a146c3a146c3a146c3 +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 478ac4478ac4478ac4478ac46800c66800c66800c66800c6c7a7c7c7a7c7c7a7c7c7a7c7fb7ec9fb7ec9fb7ec9fb7ec97684cb7684cb7684cb7684cb7fb6cd7fb6cd7fb6cd7fb6cd +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3913d03913d03913d03913d0a498d2a498d2a498d2a498d29a44d59a44d59a44d59a44d5d814d8d814d8d814d8d814d8fa06dbfa06dbfa06dbfa06db8018de8018de8018de8018de +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ce46e1ce46e1ce46e1ce46e1328fe4328fe4328fe4328fe4e2eee7e2eee7e2eee7e2eee70063eb0063eb0063eb0063eb9fe8ee9fe8ee9fe8ee9fe8eec07cf2c07cf2c07cf2c07cf2 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5a1cf65a1cf65a1cf65a1cf659c4f959c4f959c4f959c4f9a371fda371fda371fda371fd18210118210118210118210199cf0499cf0499cf0499cf04047a08047a08047a08047a08 +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3d1d0c3d1d0c3d1d0c3d1d0c2db60f2db60f2db60f2db60fc64113c64113c64113c6411305bd1605bd1605bd1605bd16f7241af7241af7241af7241ab6761db6761db6761db6761d +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 72af2072af2072af2072af206ecc236ecc236ecc236ecc2306cb2606cb2606cb2606cb26aea829aea829aea829aea829f8622cf8622cf8622cf8622c92f72e92f72e92f72e92f72e +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4d64314d64314d64314d643119a73319a73319a73319a7330bbe350bbe350bbe350bbe355ca7375ca7375ca7375ca7376e61396e61396e61396e6139c8ea3ac8ea3ac8ea3ac8ea3a +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1e423c1e423c1e423c1e423c4a663d4a663d4a663d4a663d56563e56563e56563e56563e76113f76113f76113f76113f0a973f0a973f0a973f0a973fa1e63fa1e63fa1e63fa1e63f +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f8ff3ff8ff3ff8ff3ff8ff3ffae23ffae23ffae23ffae23fbe8f3fbe8f3fbe8f3fbe8f3f8b063f8b063f8b063f8b063fd6473ed6473ed6473ed6473e42543d42543d42543d42543d +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9c2c3c9c2c3c9c2c3c9c2c3ce0d13ae0d13ae0d13ae0d13a334539334539334539334539e88737e88737e88737e88737769b35769b35769b35769b35828133828133828133828133 +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d43b31d43b31d43b31d43b3159cc2e59cc2e59cc2e59cc2e22352c22352c22352c22352c647829647829647829647829709826709826709826709826b89723b89723b89723b89723 +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c87820c87820c87820c87820473e1d473e1d473e1d473e1df2ea19f2ea19f2ea19f2ea199b81169b81169b81169b81162a05132a05132a05132a051392780f92780f92780f92780f +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d8de0bd8de0bd8de0bd8de0b0a3b080a3b080a3b080a3b083f90043f90043f90043f900494e10094e10094e10094e1002932fd2932fd2932fd2932fd2185f92185f92185f92185f9 +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 98ddf598ddf598ddf598ddf5aa3ef2aa3ef2aa3ef2aa3ef26aabee6aabee6aabee6aabeee026ebe026ebe026ebe026eb0ab4e70ab4e70ab4e70ab4e7d455e4d455e4d455e4d455e4 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1b0fe11b0fe11b0fe11b0fe1a6e2dda6e2dda6e2dda6e2dd29d3da29d3da29d3da29d3da3be3d73be3d73be3d73be3d75b15d55b15d55b15d55b15d5eb6bd2eb6bd2eb6bd2eb6bd2 +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2ce9cf2ce9cf2ce9cf2ce9cf438fcd438fcd438fcd438fcd2c60cb2c60cb2c60cb2c60cbc25dc9c25dc9c25dc9c25dc9ba89c7ba89c7ba89c7ba89c7a2e5c5a2e5c5a2e5c5a2e5c5 +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: de72c4de72c4de72c4de72c4aa32c3aa32c3aa32c3aa32c31326c21326c21326c21326c2004ec1004ec1004ec1004ec126abc026abc026abc026abc0123ec0123ec0123ec0123ec0 +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1e07c01e07c01e07c01e07c07a06c07a06c07a06c07a06c0263cc0263cc0263cc0263cc0f6a7c0f6a7c0f6a7c0f6a7c08c49c18c49c18c49c18c49c16020c26020c26020c26020c2 +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: bc2bc3bc2bc3bc2bc3bc2bc3bc6ac4bc6ac4bc6ac4bc6ac453dcc553dcc553dcc553dcc5457fc7457fc7457fc7457fc73052c93052c93052c93052c98653cb8653cb8653cb8653cb + +No. Time Source Destination Protocol Length Info + 37 0.019855 1.15.2 host USB 519 URB_ISOCHRONOUS out + +Frame 37: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:59:21.072228000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:59:21.072228000 UTC + Epoch Arrival Time: 1750615161.072228000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.004587000 seconds] + [Time delta from previous displayed frame: 0.004587000 seconds] + [Time since reference or first frame: 0.019855000 seconds] + Frame Number: 37 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.15.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffffde073e9bd010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 15 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 28] + [Time from request: 0.014499000 seconds] + Isochronous transfer start frame: 5584220 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + +No. Time Source Destination Protocol Length Info + 40 0.020230 host 1.15.2 USB 3399 URB_ISOCHRONOUS out + +Frame 40: 3399 bytes on wire (27192 bits), 3399 bytes captured (27192 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:59:21.072603000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:59:21.072603000 UTC + Epoch Arrival Time: 1750615161.072603000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000011000 seconds] + [Time delta from previous displayed frame: 0.000011000 seconds] + [Time since reference or first frame: 0.020230000 seconds] + Frame Number: 40 + Frame Length: 3399 bytes (27192 bits) + Capture Length: 3399 bytes (27192 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.15.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffffde073e9bd010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 15 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2880 + [Response in: 49] + Isochronous transfer start frame: 5584235 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9581cd9581cd9581cd9581cd82dacf82dacf82dacf82dacf505cd2505cd2505cd2505cd2dc04d5dc04d5dc04d5dc04d5e6d1d7e6d1d7e6d1d7e6d1d70dc1da0dc1da0dc1da0dc1da +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d3cfddd3cfddd3cfddd3cfdd9ffbe09ffbe09ffbe09ffbe0c141e4c141e4c141e4c141e4709fe7709fe7709fe7709fe7d211ebd211ebd211ebd211ebf895eef895eef895eef895ee +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e728f2e728f2e728f2e728f297c7f597c7f597c7f597c7f5f36ef9f36ef9f36ef9f36ef9e31bfde31bfde31bfde31bfd47cb0047cb0047cb0047cb00ff7904ff7904ff7904ff7904 +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ea2408ea2408ea2408ea2408ebc80bebc80bebc80bebc80beb620feb620feb620feb620fdbef12dbef12dbef12dbef12b66c16b66c16b66c16b66c1688d61988d61988d61988d619 +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6b2a1d6b2a1d6b2a1d6b2a1d8a65208a65208a65208a65202985232985232985232985239f86269f86269f86269f8626606729606729606729606729fa242cfa242cfa242cfa242c +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1abd2e1abd2e1abd2e1abd2e8c2d318c2d318c2d318c2d313e74333e74333e74333e7433408f35408f35408f35408f35c97c37c97c37c97c37c97c37373b39373b39373b39373b39 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0ec93a0ec93a0ec93a0ec93afd243cfd243cfd243cfd243cdb4d3ddb4d3ddb4d3ddb4d3dae423eae423eae423eae423ea5023fa5023fa5023fa5023f1d8d3f1d8d3f1d8d3f1d8d3f +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a1e13fa1e13fa1e13fa1e13fe9ff3fe9ff3fe9ff3fe9ff3fdbe73fdbe73fdbe73fdbe73f8c993f8c993f8c993f8c993f3e153f3e153f3e153f3e153f615b3e615b3e615b3e615b3e +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 946c3d946c3d946c3d946c3da0493ca0493ca0493ca0493c7ef33a7ef33a7ef33a7ef33a4f6b394f6b394f6b394f6b3960b23760b23760b23760b23729ca3529ca3529ca3529ca35 +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 46b43346b43346b43346b4337e72317e72317e72317e7231ba062fba062fba062fba062f0a732c0a732c0a732c0a732c9eb9299eb9299eb9299eb929c4dc26c4dc26c4dc26c4dc26 +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: edde23edde23edde23edde23a1c220a1c220a1c220a1c220858a1d858a1d858a1d858a1d54391a54391a54391a54391ae0d116e0d116e0d116e0d1160c57130c57130c57130c5713 +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: cccb0fcccb0fcccb0fcccb0f24330c24330c24330c24330c209008209008209008209008d6e504d6e504d6e504d6e504653701653701653701653701eb87fdeb87fdeb87fdeb87fd +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 89daf989daf989daf989daf96032f66032f66032f66032f68992f28992f28992f28992f218feee18feee18feee18feee1878eb1878eb1878eb1878eb8603e88603e88603e88603e8 +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 52a3e452a3e452a3e452a3e4585ae1585ae1585ae1585ae1642bde642bde642bde642bde2819db2819db2819db2819db4026d84026d84026d84026d82d55d52d55d52d55d52d55d5 +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 54a8d254a8d254a8d254a8d2fa21d0fa21d0fa21d0fa21d044c4cd44c4cd44c4cd44c4cd3491cb3491cb3491cb3491cba78ac9a78ac9a78ac9a78ac956b2c756b2c756b2c756b2c7 +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d309c6d309c6d309c6d309c68592c48592c48592c48592c4ab4dc3ab4dc3ab4dc3ab4dc3583cc2583cc2583cc2583cc2765fc1765fc1765fc1765fc1bfb7c0bfb7c0bfb7c0bfb7c0 +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c245c0c245c0c245c0c245c0df09c0df09c0df09c0df09c04a04c04a04c04a04c04a04c00735c00735c00735c00735c0ec9bc0ec9bc0ec9bc0ec9bc0a438c1a438c1a438c1a438c1 +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a70ac2a70ac2a70ac2a70ac24411c34411c34411c34411c39d4bc49d4bc49d4bc49d4bc4a6b8c5a6b8c5a6b8c5a6b8c52957c72957c72957c72957c7c625c9c625c9c625c9c625c9 +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f622cbf622cbf622cbf622cb064dcd064dcd064dcd064dcd22a2cf22a2cf22a2cf22a2cf4d20d24d20d24d20d24d20d26bc5d46bc5d46bc5d46bc5d43c8fd73c8fd73c8fd73c8fd7 +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 637bda637bda637bda637bda6387dd6387dd6387dd6387dda8b0e0a8b0e0a8b0e0a8b0e082f4e382f4e382f4e382f4e32a50e72a50e72a50e72a50e7c9c0eac9c0eac9c0eac9c0ea +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 7143ee7143ee7143ee7143ee28d5f128d5f128d5f128d5f1e672f5e672f5e672f5e672f59919f99919f99919f99919f928c6fc28c6fc28c6fc28c6fc747500747500747500747500 +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5d24045d24045d24045d2404c1cf07c1cf07c1cf07c1cf0784740b84740b84740b84740b8e0f0f8e0f0f8e0f0f8e0f0fce9d12ce9d12ce9d12ce9d123f1c163f1c163f1c163f1c16 +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ec8719ec8719ec8719ec8719ebdd1cebdd1cebdd1cebdd1c681b20681b20681b20681b20a43d23a43d23a43d23a43d23f44126f44126f44126f44126c82529c82529c82529c82529 +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: aee62baee62baee62baee62b4f822e4f822e4f822e4f822e73f63073f63073f63073f630054133054133054133054133146035146035146035146035d25137d25137d25137d25137 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 991439991439991439991439eaa63aeaa63aeaa63aeaa63a70073c70073c70073c70073cfe343dfe343dfe343dfe343d962e3e962e3e962e3e962e3e64f33e64f33e64f33e64f33e +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: bf823fbf823fbf823fbf823f2fdc3f2fdc3f2fdc3f2fdc3f67ff3f67ff3f67ff3f67ff3f4aec3f4aec3f4aec3f4aec3fe8a23fe8a23fe8a23fe8a23f7f233f7f233f7f233f7f233f +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 7c6e3e7c6e3e7c6e3e7c6e3e78843d78843d78843d78843d39663c39663c39663c39663cb3143bb3143bb3143bb3143b04913904913904913904913976dc3776dc3776dc3776dc37 +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 7af8357af8357af8357af835ace633ace633ace633ace633cfa831cfa831cfa831cfa831c8402fc8402fc8402fc8402fa3b02ca3b02ca3b02ca3b02c8dfa298dfa298dfa298dfa29 +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d32027d32027d32027d32027e12524e12524e12524e125243e0c213e0c213e0c213e0c218dd61d8dd61d8dd61d8dd61d87871a87871a87871a87871afb2117fb2117fb2117fb2117 +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: cba813cba813cba813cba813ea1e10ea1e10ea1e10ea1e105a870c5a870c5a870c5a870c26e50826e50826e50826e508663b05663b05663b05663b05348d01348d01348d01348d01 +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b1ddfdb1ddfdb1ddfdb1ddfdfd2ffafd2ffafd2ffafd2ffa3987f63987f63987f63987f680e6f280e6f280e6f280e6f2e650efe650efe650efe650ef76c9eb76c9eb76c9eb76c9eb +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2e53e82e53e82e53e82e53e801f1e401f1e401f1e401f1e4cda5e1cda5e1cda5e1cda5e15d74de5d74de5d74de5d74de685fdb685fdb685fdb685fdb8c69d88c69d88c69d88c69d8 +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4c95d54c95d54c95d54c95d50fe5d20fe5d20fe5d20fe5d21e5bd01e5bd01e5bd01e5bd0a0f9cda0f9cda0f9cda0f9cd9ac2cb9ac2cb9ac2cb9ac2cbeeb7c9eeb7c9eeb7c9eeb7c9 +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 58dbc758dbc758dbc758dbc76c2ec66c2ec66c2ec66c2ec696b2c496b2c496b2c496b2c41969c31969c31969c31969c30d53c20d53c20d53c20d53c25d71c15d71c15d71c15d71c1 +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c9c4c0c9c4c0c9c4c0c9c4c0e44dc0e44dc0e44dc0e44dc0130dc0130dc0130dc0130dc08d02c08d02c08d02c08d02c05a2ec05a2ec05a2ec05a2ec05590c05590c05590c05590c0 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2c28c12c28c12c28c12c28c15df5c15df5c15df5c15df5c13af7c23af7c23af7c23af7c2e92cc4e92cc4e92cc4e92cc46295c56295c56295c56295c5732fc7732fc7732fc7732fc7 +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c0f9c8c0f9c8c0f9c8c0f9c8c4f2cac4f2cac4f2cac4f2cad218cdd218cdd218cdd218cd186acf186acf186acf186acf9ee4d19ee4d19ee4d19ee4d14886d44886d44886d44886d4 +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: db4cd7db4cd7db4cd7db4cd7fc35dafc35dafc35dafc35da323fdd323fdd323fdd323fdde965e0e965e0e965e0e965e075a7e375a7e375a7e375a7e31101e71101e71101e71101e7 +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e66feae66feae66feae66fea0af1ed0af1ed0af1ed0af1ed8281f18281f18281f18281f1481ef5481ef5481ef5481ef54cc4f84cc4f84cc4f84cc4f87370fc7370fc7370fc7370fc +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a01f00a01f00a01f00a01f00b3ce03b3ce03b3ce03b3ce038b7a078b7a078b7a078b7a0709200b09200b09200b09200b15bc0e15bc0e15bc0e15bc0e9f4b129f4b129f4b129f4b12 + +No. Time Source Destination Protocol Length Info + 41 0.024859 1.15.2 host USB 519 URB_ISOCHRONOUS out + +Frame 41: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:59:21.077232000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:59:21.077232000 UTC + Epoch Arrival Time: 1750615161.077232000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.004629000 seconds] + [Time delta from previous displayed frame: 0.004629000 seconds] + [Time since reference or first frame: 0.024859000 seconds] + Frame Number: 41 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.15.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffffde073efaa010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 15 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 32] + [Time from request: 0.014563000 seconds] + Isochronous transfer start frame: 5584225 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) diff --git a/reverse_eng_dataset/24bit_48k_BUZZ_LINE_IN_URB_BULK_0x86_IN.txt b/reverse_eng_dataset/24bit_48k_BUZZ_LINE_IN_URB_BULK_0x86_IN.txt new file mode 100644 index 0000000..b436df9 --- /dev/null +++ b/reverse_eng_dataset/24bit_48k_BUZZ_LINE_IN_URB_BULK_0x86_IN.txt @@ -0,0 +1,171 @@ +No. Time Source Destination Protocol Length Info + 4831 4.555043 1.15.6 host USB 131099 URB_BULK in + +Frame 4831: 131099 bytes on wire (1048792 bits), 65535 bytes captured (524280 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:35:20.651221000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:35:20.651221000 UTC + Epoch Arrival Time: 1750617320.651221000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001686000 seconds] + [Time delta from previous displayed frame: 0.041600000 seconds] + [Time since reference or first frame: 4.555043000 seconds] + Frame Number: 4831 + Frame Length: 131099 bytes (1048792 bits) + Capture Length: 65535 bytes (524280 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.15.6] + [Destination: host] + USBPcap pseudoheader length: 27 + IRP ID: 0xffffde073c711010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 15 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: URB_BULK (0x03) + Packet Data Length: 131072 + [Request in: 4578] + [Time from request: 0.296570000 seconds] + [bInterfaceClass: Vendor Specific (0xff)] +Leftover Capture Data […]: 000000000000000000000000000000000000000001010100000000000000000000000000000000010101000001010001010000000001000000000000000000000101010101010101010101010101010101010000000100000000000000000000000000000000010001 + +No. Time Source Destination Protocol Length Info + 4836 4.558504 host 1.15.6 USB 27 URB_BULK in + +Frame 4836: 27 bytes on wire (216 bits), 27 bytes captured (216 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:35:20.654682000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:35:20.654682000 UTC + Epoch Arrival Time: 1750617320.654682000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000059000 seconds] + [Time delta from previous displayed frame: 0.003461000 seconds] + [Time since reference or first frame: 4.558504000 seconds] + Frame Number: 4836 + Frame Length: 27 bytes (216 bits) + Capture Length: 27 bytes (216 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.15.6] + USBPcap pseudoheader length: 27 + IRP ID: 0xffffde073c711010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 15 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: URB_BULK (0x03) + Packet Data Length: 0 + [Response in: 5085] + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 4865 4.597745 1.15.6 host USB 131099 URB_BULK in + +Frame 4865: 131099 bytes on wire (1048792 bits), 65535 bytes captured (524280 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:35:20.693923000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:35:20.693923000 UTC + Epoch Arrival Time: 1750617320.693923000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.004301000 seconds] + [Time delta from previous displayed frame: 0.039241000 seconds] + [Time since reference or first frame: 4.597745000 seconds] + Frame Number: 4865 + Frame Length: 131099 bytes (1048792 bits) + Capture Length: 65535 bytes (524280 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.15.6] + [Destination: host] + USBPcap pseudoheader length: 27 + IRP ID: 0xffffde073c0ea5a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 15 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: URB_BULK (0x03) + Packet Data Length: 131072 + [Request in: 4618] + [Time from request: 0.294275000 seconds] + [bInterfaceClass: Vendor Specific (0xff)] +Leftover Capture Data […]: 010101010101010101010101010101010100010101000000000000000000000001010101010101010001010100000101000101010001010100000000000000000101010101010101010101010101010101000001000101000000000000000000010101010100010100 + +No. Time Source Destination Protocol Length Info + 4870 4.598745 host 1.15.6 USB 27 URB_BULK in + +Frame 4870: 27 bytes on wire (216 bits), 27 bytes captured (216 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:35:20.694923000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:35:20.694923000 UTC + Epoch Arrival Time: 1750617320.694923000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000062000 seconds] + [Time delta from previous displayed frame: 0.001000000 seconds] + [Time since reference or first frame: 4.598745000 seconds] + Frame Number: 4870 + Frame Length: 27 bytes (216 bits) + Capture Length: 27 bytes (216 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.15.6] + USBPcap pseudoheader length: 27 + IRP ID: 0xffffde073c0ea5a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 15 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: URB_BULK (0x03) + Packet Data Length: 0 + [Response in: 5119] + [bInterfaceClass: Vendor Specific (0xff)] diff --git a/reverse_eng_dataset/24bit_48k_BUZZ_TONE_LINE_IN_URB_ISO_IN.txt b/reverse_eng_dataset/24bit_48k_BUZZ_TONE_LINE_IN_URB_ISO_IN.txt new file mode 100644 index 0000000..c9932d8 --- /dev/null +++ b/reverse_eng_dataset/24bit_48k_BUZZ_TONE_LINE_IN_URB_ISO_IN.txt @@ -0,0 +1,535 @@ +No. Time Source Destination Protocol Length Info + 11794 11.966155 1.15.1 host USB 114 URB_ISOCHRONOUS in + +Frame 11794: 114 bytes on wire (912 bits), 114 bytes captured (912 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:22:30.355574000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:22:30.355574000 UTC + Epoch Arrival Time: 1750616550.355574000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000099000 seconds] + [Time delta from previous displayed frame: 0.000099000 seconds] + [Time since reference or first frame: 11.966155000 seconds] + Frame Number: 11794 + Frame Length: 114 bytes (912 bits) + Capture Length: 114 bytes (912 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.15.1] + [Destination: host] + USBPcap pseudoheader length: 99 + IRP ID: 0xffffde073f5ea010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 15 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 15 + [Request in: 11721] + [Time from request: 0.044655000 seconds] + Isochronous transfer start frame: 6973502 + Isochronous transfer number of packets: 5 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000006 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000009 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x0000000c + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 11795 11.966519 host 1.15.1 USB 99 URB_ISOCHRONOUS in + +Frame 11795: 99 bytes on wire (792 bits), 99 bytes captured (792 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:22:30.355938000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:22:30.355938000 UTC + Epoch Arrival Time: 1750616550.355938000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000364000 seconds] + [Time delta from previous displayed frame: 0.000364000 seconds] + [Time since reference or first frame: 11.966519000 seconds] + Frame Number: 11795 + Frame Length: 99 bytes (792 bits) + Capture Length: 99 bytes (792 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.15.1] + USBPcap pseudoheader length: 99 + IRP ID: 0xffffde073f5ea010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 15 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 11846] + Isochronous transfer start frame: 6973547 + Isochronous transfer number of packets: 5 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000080 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x000000c0 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000100 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 11820 11.986149 1.15.1 host USB 114 URB_ISOCHRONOUS in + +Frame 11820: 114 bytes on wire (912 bits), 114 bytes captured (912 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:22:30.375568000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:22:30.375568000 UTC + Epoch Arrival Time: 1750616550.375568000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000110000 seconds] + [Time delta from previous displayed frame: 0.000110000 seconds] + [Time since reference or first frame: 11.986149000 seconds] + Frame Number: 11820 + Frame Length: 114 bytes (912 bits) + Capture Length: 114 bytes (912 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.15.1] + [Destination: host] + USBPcap pseudoheader length: 99 + IRP ID: 0xffffde0740bbc050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 15 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 15 + [Request in: 11759] + [Time from request: 0.044666000 seconds] + Isochronous transfer start frame: 6973522 + Isochronous transfer number of packets: 5 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000006 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000009 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x0000000c + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 11821 11.986426 host 1.15.1 USB 99 URB_ISOCHRONOUS in + +Frame 11821: 99 bytes on wire (792 bits), 99 bytes captured (792 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:22:30.375845000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:22:30.375845000 UTC + Epoch Arrival Time: 1750616550.375845000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000277000 seconds] + [Time delta from previous displayed frame: 0.000277000 seconds] + [Time since reference or first frame: 11.986426000 seconds] + Frame Number: 11821 + Frame Length: 99 bytes (792 bits) + Capture Length: 99 bytes (792 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.15.1] + USBPcap pseudoheader length: 99 + IRP ID: 0xffffde0740bbc050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 15 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 11866] + Isochronous transfer start frame: 6973567 + Isochronous transfer number of packets: 5 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000080 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x000000c0 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000100 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 11836 12.001155 1.15.1 host USB 114 URB_ISOCHRONOUS in + +Frame 11836: 114 bytes on wire (912 bits), 114 bytes captured (912 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:22:30.390574000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:22:30.390574000 UTC + Epoch Arrival Time: 1750616550.390574000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000109000 seconds] + [Time delta from previous displayed frame: 0.000109000 seconds] + [Time since reference or first frame: 12.001155000 seconds] + Frame Number: 11836 + Frame Length: 114 bytes (912 bits) + Capture Length: 114 bytes (912 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.15.1] + [Destination: host] + USBPcap pseudoheader length: 99 + IRP ID: 0xffffde0740b575a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 15 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 15 + [Request in: 11781] + [Time from request: 0.044675000 seconds] + Isochronous transfer start frame: 6973537 + Isochronous transfer number of packets: 5 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000006 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000009 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x0000000c + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 11837 12.001579 host 1.15.1 USB 99 URB_ISOCHRONOUS in + +Frame 11837: 99 bytes on wire (792 bits), 99 bytes captured (792 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:22:30.390998000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:22:30.390998000 UTC + Epoch Arrival Time: 1750616550.390998000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000424000 seconds] + [Time delta from previous displayed frame: 0.000424000 seconds] + [Time since reference or first frame: 12.001579000 seconds] + Frame Number: 11837 + Frame Length: 99 bytes (792 bits) + Capture Length: 99 bytes (792 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.15.1] + USBPcap pseudoheader length: 99 + IRP ID: 0xffffde0740b575a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 15 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 11878] + Isochronous transfer start frame: 6973582 + Isochronous transfer number of packets: 5 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000080 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x000000c0 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000100 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 11842 12.006152 1.15.1 host USB 114 URB_ISOCHRONOUS in + +Frame 11842: 114 bytes on wire (912 bits), 114 bytes captured (912 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:22:30.395571000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:22:30.395571000 UTC + Epoch Arrival Time: 1750616550.395571000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000109000 seconds] + [Time delta from previous displayed frame: 0.000109000 seconds] + [Time since reference or first frame: 12.006152000 seconds] + Frame Number: 11842 + Frame Length: 114 bytes (912 bits) + Capture Length: 114 bytes (912 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.15.1] + [Destination: host] + USBPcap pseudoheader length: 99 + IRP ID: 0xffffde07420a9050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 15 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 15 + [Request in: 11789] + [Time from request: 0.044724000 seconds] + Isochronous transfer start frame: 6973542 + Isochronous transfer number of packets: 5 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000006 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000009 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x0000000c + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 11843 12.006428 host 1.15.1 USB 99 URB_ISOCHRONOUS in + +Frame 11843: 99 bytes on wire (792 bits), 99 bytes captured (792 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:22:30.395847000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:22:30.395847000 UTC + Epoch Arrival Time: 1750616550.395847000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000276000 seconds] + [Time delta from previous displayed frame: 0.000276000 seconds] + [Time since reference or first frame: 12.006428000 seconds] + Frame Number: 11843 + Frame Length: 99 bytes (792 bits) + Capture Length: 99 bytes (792 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.15.1] + USBPcap pseudoheader length: 99 + IRP ID: 0xffffde07420a9050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 15 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 11882] + Isochronous transfer start frame: 6973587 + Isochronous transfer number of packets: 5 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000080 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x000000c0 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000100 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) diff --git a/reverse_eng_dataset/24bit_48k_LINE_ORGAN_INST_4_NOTE_CHORD__PLAYBACK_440_TONE.txt b/reverse_eng_dataset/24bit_48k_LINE_ORGAN_INST_4_NOTE_CHORD__PLAYBACK_440_TONE.txt new file mode 100644 index 0000000..3b46872 --- /dev/null +++ b/reverse_eng_dataset/24bit_48k_LINE_ORGAN_INST_4_NOTE_CHORD__PLAYBACK_440_TONE.txt @@ -0,0 +1,6972 @@ +No. Time Source Destination Protocol Length Info + 7721 4.799900 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 7721: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.290747000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.290747000 UTC + Epoch Arrival Time: 1750683232.290747000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001932000 seconds] + [Time delta from previous displayed frame: 0.001932000 seconds] + [Time since reference or first frame: 4.799900000 seconds] + Frame Number: 7721 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720b96010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 7697] + [Time from request: 0.017906000 seconds] + Isochronous transfer start frame: 1891665 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 7722 4.800112 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 7722: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.290959000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.290959000 UTC + Epoch Arrival Time: 1750683232.290959000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000212000 seconds] + [Time delta from previous displayed frame: 0.000212000 seconds] + [Time since reference or first frame: 4.800112000 seconds] + Frame Number: 7722 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720b96010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 7748] + Isochronous transfer start frame: 1891683 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 7723 4.801289 1.1.6 host USB 131099 URB_BULK in + +Frame 7723: 131099 bytes on wire (1048792 bits), 65535 bytes captured (524280 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.292136000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.292136000 UTC + Epoch Arrival Time: 1750683232.292136000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001177000 seconds] + [Time delta from previous displayed frame: 0.001177000 seconds] + [Time since reference or first frame: 4.801289000 seconds] + Frame Number: 7723 + Frame Length: 131099 bytes (1048792 bits) + Capture Length: 65535 bytes (524280 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.6] + [Destination: host] + USBPcap pseudoheader length: 27 + IRP ID: 0xffff92071af66010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: URB_BULK (0x03) + Packet Data Length: 131072 + [Request in: 7292] + [Time from request: 0.297064000 seconds] + [bInterfaceClass: Vendor Specific (0xff)] +Leftover Capture Data […]: 010101010101010101010000010000010001000001010100000000000000000000000000000000000000000000000000000100000100000000000000000000000000000000000001010100010000000000000000000100010000000000000000010101010101010101 + +No. Time Source Destination Protocol Length Info + 7724 4.801769 1.1.2 host USB 519 URB_ISOCHRONOUS out + +Frame 7724: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.292616000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.292616000 UTC + Epoch Arrival Time: 1750683232.292616000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000480000 seconds] + [Time delta from previous displayed frame: 0.000480000 seconds] + [Time since reference or first frame: 4.801769000 seconds] + Frame Number: 7724 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b65a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 7706] + [Time from request: 0.013774000 seconds] + Isochronous transfer start frame: 1891664 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + +No. Time Source Destination Protocol Length Info + 7725 4.801890 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 7725: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.292737000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.292737000 UTC + Epoch Arrival Time: 1750683232.292737000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000121000 seconds] + [Time delta from previous displayed frame: 0.000121000 seconds] + [Time since reference or first frame: 4.801890000 seconds] + Frame Number: 7725 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720bdb050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 7700] + [Time from request: 0.017725000 seconds] + Isochronous transfer start frame: 1891667 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 7726 4.802005 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 7726: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.292852000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.292852000 UTC + Epoch Arrival Time: 1750683232.292852000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000115000 seconds] + [Time delta from previous displayed frame: 0.000115000 seconds] + [Time since reference or first frame: 4.802005000 seconds] + Frame Number: 7726 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720bdb050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 7751] + Isochronous transfer start frame: 1891685 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 7727 4.802010 host 1.1.2 USB 3399 URB_ISOCHRONOUS out + +Frame 7727: 3399 bytes on wire (27192 bits), 3399 bytes captured (27192 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.292857000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.292857000 UTC + Epoch Arrival Time: 1750683232.292857000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000005000 seconds] + [Time delta from previous displayed frame: 0.000005000 seconds] + [Time since reference or first frame: 4.802010000 seconds] + Frame Number: 7727 + Frame Length: 3399 bytes (27192 bits) + Capture Length: 3399 bytes (27192 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b65a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2880 + [Response in: 7747] + Isochronous transfer start frame: 1891679 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3fa99d8ee7a100000000000075b09946389d00000000000025aa96c1dc98000000000000d5fa93abd994000000000000b625911931910000000000001c258ec4e68d000000000000 +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9e2a8b37fd8a000000000000bb6288927788000000000000b6ce85a75686000000000000a48f83d89d84000000000000b7c181b84c830000000000004d4680e26582000000000000 +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 55008049ea8100000000000055008034d981000000000000ca368065338200000000000045718138f88200000000000041cb834827840000000000003b1e87c7bf85000000000000 +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 88cc8a5bbf8700000000000021578e8b258a000000000000ad6b9104f08c0000000000003e3d94411b90000000000000db099795a6930000000000008af399288d97000000000000 +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 05189d47cc9b000000000000dfdea07c60a0000000000000da73a57946a5000000000000e28faa5378aa0000000000009eeaaf12f4af0000000000002886b572b2b5000000000000 +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ea44bb7db1bb0000000000007154c1c9e8c100000000000053b5c7c655c8000000000000b654ce8cf1ce0000000000003fd6d400b7d5000000000000ce2cdbf6a0dc000000000000 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5174e18fa7e3000000000000d8f5e76dc7ea000000000000522eef04f8f10000000000009b13f7a435f90000000000005a4eff6878000000000000005d81071bbb07000000000000 +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 75500ffaf60e000000000000205f16672616000000000000ced41cc7421d0000000000008f2623a64524000000000000a6a629692a2b0000000000003da430bde931000000000000 +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 46d737cf7f3800000000000054e23e12e53e000000000000eb7945f7144500000000000073884b010a4b00000000000006df50d1bf50000000000000468655ec3056000000000000 +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 58b35953585b0000000000007a815d2a3360000000000000591f6183bb640000000000002d99648ded680000000000004ef56706c86c0000000000004e016b024570000000000000 +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 99206e4763730000000000008198717e1f76000000000000688e753b77780000000000005bba7987687a000000000000f33e7dabf27b0000000000009fa07f8b127d000000000000 +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: abff7f13c97d000000000000abff7fec147e000000000000abff7f18f57d000000000000c8ef7ebc6b7d00000000000092a97df7757c000000000000351e7c0c187b000000000000 +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2e6b7a3451790000000000001d6f783723770000000000000f4676c0907400000000000067de73309a71000000000000321a719e456e00000000000074dc6da5926a000000000000 +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d0246a6285660000000000004add65892162000000000000c1f26030685d00000000000068375bc86058000000000000601055430e530000000000007cc34e11754d000000000000 +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1c8448589a47000000000000d74a42678241000000000000d1323cc1323b0000000000006701361cb0340000000000008b602f9f012e000000000000001b28032b27000000000000 +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: fd5620d533200000000000009281181620190000000000006fe5100cf811000000000000c0cd0954bf0a00000000000047e902537e0300000000000006fffbc539fc000000000000 +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9ac5f47cf8f40000000000008431edb4c0ed000000000000f98ce5b197e6000000000000ceecdd6f85df0000000000007d5bd66b8dd8000000000000e0d8ce36b8d1000000000000 +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9196c75b09cb00000000000041a0c01488c400000000000000dab9bf38be0000000000005f79b34522b8000000000000f2c7ad5847b2000000000000e30fa9e1afac000000000000 +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0ca8a5b55da7000000000000c914a3bf57a200000000000050c2a085a09d0000000000008c149ee23e9900000000000054c99a353295000000000000c1fc967d8291000000000000 +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0bea925c2d8e000000000000c02d8f6f3b8b000000000000ecb78b20ac880000000000005ce5880c82860000000000008fb186e6bf84000000000000db0985dd6583000000000000 +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 7de483047582000000000000c432839fef810000000000001e3383a0d48100000000000087ef83782582000000000000964c85f0df82000000000000fbf986160684000000000000 +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 088d88389485000000000000ad288a288b87000000000000620e8ccbe7890000000000008f958ed2a88c00000000000067149238cc8f000000000000345b966c4e93000000000000 +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5a1f9b222d970000000000002e06a094649b000000000000eac6a4e6f19f0000000000006e46a98fcfa4000000000000ce98ad76fba9000000000000c544b2a46faf000000000000 +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 7772b77229b50000000000003a66bde621bb000000000000d1c7c36255c1000000000000c460ca1cbdc7000000000000dbe0d04c55ce000000000000d04cd70317d5000000000000 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: baacdddafddb000000000000cfefe38802e30000000000004e41ea4620ea00000000000091cef02750f100000000000042a9f7ac8cf80000000000009da5fec5cfff000000000000 +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 839705411207000000000000347b0ced4e0e000000000000e59813768015000000000000593f1b0c9e1c0000000000002184237da4230000000000005cfb2b5b8c2a000000000000 +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 391234924f31000000000000d73c3b43e9370000000000008644410b533e000000000000ba8846a8884400000000000082644b4d834a000000000000f3fc4f5b3f50000000000000 +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f98f540cb65500000000000035445940e55a0000000000005a025e79c65f000000000000fda962eb56640000000000005f0367d391680000000000004bf76a54746c000000000000 +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 578d6e29fa6f000000000000270372d520730000000000009c4b7584e6750000000000002e2878824678000000000000b95a7a1d427a000000000000bd9b7b32d57b000000000000 +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 56117ce2fe7c000000000000731e7c42bf7d000000000000bb1e7cb0137e0000000000005d017c08fe7d0000000000006ebc7b1d7d7d000000000000300e7b09927c000000000000 +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5eaa799e3c7b0000000000006165779d7e79000000000000329c74da5977000000000000baa87167cf740000000000004d0f6f2de2710000000000006d9a6ce0946e000000000000 +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5de269bae96a000000000000b9996607e566000000000000c69a6215886200000000000025f85dc5d75d000000000000adbc589bd758000000000000a30f53988b53000000000000 +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 71084d1df94d000000000000da9446cb2348000000000000e9ef3f6211420000000000000b2239b3c63b000000000000d93a32fa4835000000000000d0552bab9d2e000000000000 +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 209b240bcb2700000000000098621eafd62000000000000087d6186fc519000000000000b78e13ee9e120000000000005ef50ddb670b000000000000d481071c2704000000000000 +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c83b001ae3fc0000000000005750f864a1f5000000000000c314f06068ee00000000000096d7e74d3ee7000000000000e2d6df7629e00000000000000241d8a62fd9000000000000 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9f03d11657d2000000000000822eca79a4cb0000000000008f89c3e01ec5000000000000c51bbd3acbbe00000000000002f4b681aeb80000000000002721b1c7ceb2000000000000 +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3eb5abb230ad000000000000097aa67bd8a7000000000000384ea17bcba2000000000000da3d9c960d9e000000000000cfa69745a2990000000000007dc1935c8f95000000000000 +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: bf7d9094d591000000000000c6e48d327a8e000000000000a1d78b717e8b00000000000059fe8939e688000000000000b61888f0b2860000000000008eff85a1e684000000000000 +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: dbf183a98283000000000000c96a82808882000000000000ffca8127f9810000000000001e218265d481000000000000fd2683011b82000000000000ec868454cc82000000000000 +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e7cf85dce783000000000000360d87a86d85000000000000cc6a880c5a870000000000002ffe893cae890000000000002bd78ba0658c0000000000004a208eea7f8f000000000000 + +No. Time Source Destination Protocol Length Info + 7728 4.802062 host 1.1.6 USB 27 URB_BULK in + +Frame 7728: 27 bytes on wire (216 bits), 27 bytes captured (216 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.292909000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.292909000 UTC + Epoch Arrival Time: 1750683232.292909000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000052000 seconds] + [Time delta from previous displayed frame: 0.000052000 seconds] + [Time since reference or first frame: 4.802062000 seconds] + Frame Number: 7728 + Frame Length: 27 bytes (216 bits) + Capture Length: 27 bytes (216 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.6] + USBPcap pseudoheader length: 27 + IRP ID: 0xffff92071af66010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: URB_BULK (0x03) + Packet Data Length: 0 + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 7729 4.803891 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 7729: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.294738000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.294738000 UTC + Epoch Arrival Time: 1750683232.294738000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001829000 seconds] + [Time delta from previous displayed frame: 0.001829000 seconds] + [Time since reference or first frame: 4.803891000 seconds] + Frame Number: 7729 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920719bd6560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 7702] + [Time from request: 0.017904000 seconds] + Isochronous transfer start frame: 1891669 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 7730 4.804089 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 7730: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.294936000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.294936000 UTC + Epoch Arrival Time: 1750683232.294936000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000198000 seconds] + [Time delta from previous displayed frame: 0.000198000 seconds] + [Time since reference or first frame: 4.804089000 seconds] + Frame Number: 7730 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920719bd6560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 7754] + Isochronous transfer start frame: 1891687 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 7731 4.805892 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 7731: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.296739000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.296739000 UTC + Epoch Arrival Time: 1750683232.296739000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001803000 seconds] + [Time delta from previous displayed frame: 0.001803000 seconds] + [Time since reference or first frame: 4.805892000 seconds] + Frame Number: 7731 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720df8010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 7705] + [Time from request: 0.017903000 seconds] + Isochronous transfer start frame: 1891671 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 7732 4.805986 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 7732: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.296833000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.296833000 UTC + Epoch Arrival Time: 1750683232.296833000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000094000 seconds] + [Time delta from previous displayed frame: 0.000094000 seconds] + [Time since reference or first frame: 4.805986000 seconds] + Frame Number: 7732 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720df8010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 7757] + Isochronous transfer start frame: 1891689 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 7733 4.806768 1.1.2 host USB 519 URB_ISOCHRONOUS out + +Frame 7733: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.297615000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.297615000 UTC + Epoch Arrival Time: 1750683232.297615000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000782000 seconds] + [Time delta from previous displayed frame: 0.000782000 seconds] + [Time since reference or first frame: 4.806768000 seconds] + Frame Number: 7733 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b6050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 7712] + [Time from request: 0.014779000 seconds] + Isochronous transfer start frame: 1891669 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + +No. Time Source Destination Protocol Length Info + 7734 4.807893 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 7734: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.298740000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.298740000 UTC + Epoch Arrival Time: 1750683232.298740000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001125000 seconds] + [Time delta from previous displayed frame: 0.001125000 seconds] + [Time since reference or first frame: 4.807893000 seconds] + Frame Number: 7734 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 7708] + [Time from request: 0.017787000 seconds] + Isochronous transfer start frame: 1891673 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 7735 4.808001 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 7735: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.298848000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.298848000 UTC + Epoch Arrival Time: 1750683232.298848000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000108000 seconds] + [Time delta from previous displayed frame: 0.000108000 seconds] + [Time since reference or first frame: 4.808001000 seconds] + Frame Number: 7735 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 7759] + Isochronous transfer start frame: 1891691 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 7736 4.808006 host 1.1.2 USB 3399 URB_ISOCHRONOUS out + +Frame 7736: 3399 bytes on wire (27192 bits), 3399 bytes captured (27192 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.298853000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.298853000 UTC + Epoch Arrival Time: 1750683232.298853000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000005000 seconds] + [Time delta from previous displayed frame: 0.000005000 seconds] + [Time since reference or first frame: 4.808006000 seconds] + Frame Number: 7736 + Frame Length: 3399 bytes (27192 bits) + Capture Length: 3399 bytes (27192 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b6050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2880 + [Response in: 7753] + Isochronous transfer start frame: 1891684 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 69d7904df9920000000000006bf293b9cf96000000000000b57a9726ff9a000000000000f99d9b78849f0000000000005fbaa02e5ba40000000000005925a7b980a9000000000000 +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e294ae23eeae000000000000ca70b6caa1b4000000000000ad0bbe8294ba0000000000006e01c586c2c0000000000000fa50cb6426c70000000000008e4bd194b9cd000000000000 +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ed5ad72478d4000000000000e09bdd205bdb0000000000003b3ae46a5ee2000000000000d932eb6c79e90000000000007f89f268a8f0000000000000a213fadae3f7000000000000 +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: df8401f925ff00000000000036ce08266a060000000000006ff10f1ba70d000000000000df3017eed914000000000000a8651e60f91b000000000000f44f25b10223000000000000 +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: dcb72bd7ec2900000000000081a0317ab4300000000000007e5337d15137000000000000b00c3d0bc13d000000000000ab034331fb430000000000009b394980fc49000000000000 +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 385f4f82bd4f000000000000fc1355fc3b55000000000000b0145a7a715a000000000000165f5e0a5a5f000000000000f02a62edf163000000000000c3c365153568000000000000 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 496569471f6c00000000000021166d18ae6f000000000000f18c70d4dd72000000000000dc7673caac75000000000000ddbe75231678000000000000b965779d1b7a000000000000 +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d26278d6b77b00000000000021ca7833eb7c000000000000b5b6789cb57d000000000000b46178ef137e000000000000c0d577e5077e000000000000310f77ea907d000000000000 +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 35eb754daf7c000000000000748b74a7637b000000000000af5e737faf7900000000000029bc72fc937700000000000096b272841275000000000000f0cc72102e72000000000000 +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e91f72a0e86e000000000000ace36fe9456b00000000000004216c464767000000000000f6396764f0620000000000000a9f6144455e000000000000cdac5b454b59000000000000 +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5788550d0654000000000000c26d4f0e784e000000000000263f498aa84800000000000054fd42c89a42000000000000f1863c6a543c000000000000e8043679db35000000000000 +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f58c2f2c342f0000000000006b1f2979652800000000000018ad22da7321000000000000ac001c84661a000000000000d9fb14f54113000000000000889e0d020e0c000000000000 +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 723f0656cf04000000000000e71bff5f8cfd000000000000e354f8c84bf600000000000037eff15413ef0000000000001ba9eb48e9e70000000000002257e5c0d3e0000000000000 +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1c96ded4d8d9000000000000a74fd77dfdd2000000000000f3bfcfb348cc0000000000003f6cc885bfc50000000000005dbdc19a68bf00000000000067a5bba048b9000000000000 +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 26f2b5c163b30000000000008257b0b9c0ad000000000000adc3aafc62a8000000000000de44a5cd4fa3000000000000d5f19f358b9e0000000000004cde9a341a9a000000000000 +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5a1796a8fe95000000000000979391a93d92000000000000fc6f8d88d98e00000000000074bd8970d58b000000000000688086773489000000000000c2ef8315f886000000000000 +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3e36822a2285000000000000fca081d4b4830000000000001209822eb182000000000000620283541782000000000000b7e383c6e881000000000000ca7284082582000000000000 +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c6c38459cc820000000000008fe98449de83000000000000984485dd5885000000000000cd16861c3c8700000000000001af87f98589000000000000d7158aeb338c000000000000 +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f1338df6448f00000000000063cb9023b3920000000000009f9794b67f96000000000000e4ac98c5a49a000000000000382e9ded209f000000000000fe5fa27deea3000000000000 +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a820a80b0ba9000000000000cef0ad5f71ae000000000000a476b3bb1cb4000000000000fdd1b82609ba0000000000001652be8930c0000000000000b448c4f88ec6000000000000 +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e6cecafa1dcd000000000000cad9d1f2d7d30000000000007c37d9bfb7da000000000000fd7ee061b7e10000000000004097e799d1e8000000000000ef86eeb1feef000000000000 +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: adb3f5673af7000000000000e42efd987cfe0000000000009a04059ac10500000000000059130d0f000d000000000000421615b13414000000000000a3c61cf6571b000000000000 +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f1f9237263220000000000004cda2af55229000000000000e85b31bf1d300000000000008e903703c1360000000000005a763daa343d000000000000932743cd7543000000000000 +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 51b648577c4900000000000007024ebe444f000000000000dbef52b1ca54000000000000bcd85787075a000000000000431b5d20f95e000000000000bbf662119963000000000000 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 143969e6e467000000000000a92b6f3cd86b000000000000f92774f46f6f000000000000a5b77706a972000000000000ce237a088075000000000000eabf7ba3f377000000000000 +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: beee7c0a017a0000000000007dc87d18a87b00000000000095457e38e57c00000000000006887ef2b87d000000000000219a7ec3207e000000000000ee5e7e381f7e000000000000 +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f1b57d30b17d000000000000309c7c79d87c000000000000812e7b6f967b000000000000ae8279f3ea790000000000001a8b77a6d8770000000000008327750b6075000000000000 +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2c2272c48372000000000000139f6e59476f000000000000d4936adeaa6b000000000000a85366f3b3670000000000006a2862e76463000000000000fa0c5e1dc15e000000000000 +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 73df59e6cd590000000000003e2455348d54000000000000f5ad4ffc054f000000000000576549393b49000000000000f69e42e931430000000000009cfd3bbdef3c000000000000 +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e1c6350c7a36000000000000780030e9d52f000000000000c3112aa80929000000000000dd97236f1a2200000000000030921c5f0e1b000000000000e30f15e2ea13000000000000 +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0b400d5cb70c000000000000972f0506790500000000000005fcfcb035fe0000000000007bd4f4c2f3f60000000000004baaec13baef0000000000003ab1e4748de8000000000000 +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: dc02dda275e100000000000073e1d58c77da0000000000000c90cfc299d3000000000000bb36caa5e0cc00000000000034bdc5cc53c60000000000008a7cc1cbf7bf000000000000 +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9ce2bc5fd2b9000000000000629eb73ce8b3000000000000f5dbb1e53eae000000000000ab07ac02dba8000000000000b866a620c1a3000000000000eb54a17bf59e000000000000 +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e4fb9ca77c9a0000000000009c6299b659960000000000008a3896b8909200000000000010169378248f00000000000039099028188c00000000000043288dc06d89000000000000 +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f3b18ad62887000000000000b3d888c34985000000000000026087f1d3830000000000008c168634c68200000000000057c9843c248200000000000056a08380eb81000000000000 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 25fa82501e82000000000000501a8322bc820000000000003bfd83bec3830000000000006c7b851b35850000000000007c8187e80e8700000000000045d589374f89000000000000 +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b7398c3cf48b0000000000005fb88e26fc8e00000000000027749140629200000000000057ae948a2596000000000000638c987d439a0000000000005b129da6b69e000000000000 +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 341ea21e7ea30000000000005565a7ac92a8000000000000fdbcaca7f2ad000000000000b5edb16597b3000000000000320eb70c7eb9000000000000c639bc6fa0bf000000000000 +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b693c1cff9c50000000000008a5bc73584cc000000000000c876cd0b3bd300000000000083ecd33217da0000000000004398daa314e100000000000029c3e1592be8000000000000 +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5cd6e99b57ef000000000000600ef35591f60000000000001607fdf0d3fd000000000000f5d806f4170500000000000016c50fc0570c000000000000468d17828d13000000000000 + +No. Time Source Destination Protocol Length Info + 7737 4.809894 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 7737: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.300741000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.300741000 UTC + Epoch Arrival Time: 1750683232.300741000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001888000 seconds] + [Time delta from previous displayed frame: 0.001888000 seconds] + [Time since reference or first frame: 4.809894000 seconds] + Frame Number: 7737 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 7711] + [Time from request: 0.017927000 seconds] + Isochronous transfer start frame: 1891675 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 7738 4.810144 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 7738: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.300991000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.300991000 UTC + Epoch Arrival Time: 1750683232.300991000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000250000 seconds] + [Time delta from previous displayed frame: 0.000250000 seconds] + [Time since reference or first frame: 4.810144000 seconds] + Frame Number: 7738 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 7762] + Isochronous transfer start frame: 1891693 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 7739 4.811774 1.1.2 host USB 519 URB_ISOCHRONOUS out + +Frame 7739: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.302621000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.302621000 UTC + Epoch Arrival Time: 1750683232.302621000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001630000 seconds] + [Time delta from previous displayed frame: 0.001630000 seconds] + [Time since reference or first frame: 4.811774000 seconds] + Frame Number: 7739 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff92072024f5a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 7720] + [Time from request: 0.013806000 seconds] + Isochronous transfer start frame: 1891674 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + +No. Time Source Destination Protocol Length Info + 7740 4.811890 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 7740: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.302737000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.302737000 UTC + Epoch Arrival Time: 1750683232.302737000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000116000 seconds] + [Time delta from previous displayed frame: 0.000116000 seconds] + [Time since reference or first frame: 4.811890000 seconds] + Frame Number: 7740 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff92072203f560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 7714] + [Time from request: 0.017779000 seconds] + Isochronous transfer start frame: 1891677 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 7741 4.811986 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 7741: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.302833000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.302833000 UTC + Epoch Arrival Time: 1750683232.302833000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000096000 seconds] + [Time delta from previous displayed frame: 0.000096000 seconds] + [Time since reference or first frame: 4.811986000 seconds] + Frame Number: 7741 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff92072203f560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 7765] + Isochronous transfer start frame: 1891695 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 7742 4.811992 host 1.1.2 USB 3399 URB_ISOCHRONOUS out + +Frame 7742: 3399 bytes on wire (27192 bits), 3399 bytes captured (27192 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.302839000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.302839000 UTC + Epoch Arrival Time: 1750683232.302839000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000006000 seconds] + [Time delta from previous displayed frame: 0.000006000 seconds] + [Time since reference or first frame: 4.811992000 seconds] + Frame Number: 7742 + Frame Length: 3399 bytes (27192 bits) + Capture Length: 3399 bytes (27192 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff92072024f5a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2880 + [Response in: 7761] + Isochronous transfer start frame: 1891689 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: eb681eb7b11a000000000000cbb02425c021000000000000c4a72a9bb128000000000000bf8b30a6802f0000000000007d7336bd263600000000000047663cc09f3c000000000000 +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6f664255e442000000000000486648caf048000000000000e5334e4dbf4e00000000000049bf53974a54000000000000762059e58e590000000000004e6b5ea8865e000000000000 +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9580633b2e630000000000007d2268fb8167000000000000ee106cef7c6b00000000000031606f0f1d6f000000000000dc6972bb5e72000000000000494a75513f75000000000000 +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 773d7802bc77000000000000cc2b7b62d379000000000000e0bd7d84837b00000000000049687f7aca7c000000000000abff7f22a77d0000000000000cd17fcb197e000000000000 +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ba157fc5207e00000000000031387e46bd7d000000000000f6627db7ee7c000000000000be837c28b67b00000000000039317b39147a000000000000425d79280b78000000000000 +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 63e176b19b750000000000002efe73adc872000000000000aab9705a946f0000000000002ac36c4e016c0000000000007b1a6859126800000000000064f762b3cb63000000000000 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 61835d382f5f00000000000016d65771435a000000000000130952750955000000000000f5534c86884f0000000000000df04696c349000000000000c8104218c043000000000000 +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: eb673d4e833d000000000000c06c38f011370000000000008ca9324f7230000000000000a2d02b2ca929000000000000230a2425bd22000000000000a8d81b0fb31b000000000000 +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: bca0136a92140000000000004e9e0b305f0d0000000000007f0104db2106000000000000a1c1fc9fdefe000000000000bd99f5af9cf70000000000006e60ee8761f0000000000000 +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f017e75b34e900000000000069ffdf8619e20000000000000550d95d19db000000000000d718d3ba37d400000000000095f3ccd47bcd0000000000007893c6c0eac6000000000000 +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0fd2bfe589c0000000000000a2ebb8135fba0000000000000f41b2c36fb4000000000000a21faca4bfae000000000000cdbba6a655a900000000000054e6a19934a4000000000000 +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b7759d38629f000000000000d9309909e19a000000000000d4f99457b696000000000000b6de90d1e49200000000000008f78cdd6f8f000000000000b9c089c45a8c000000000000 +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ec5687dea789000000000000f3b585c458870000000000007e8e84127185000000000000f77f83ecf083000000000000778a8249da820000000000009dc881d72d82000000000000 +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: de2d81b1eb8100000000000006e480eb1482000000000000f826817aa88200000000000043d981d5a6830000000000003ae082ad0e850000000000006d358447df86000000000000 +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d90486281689000000000000f98c8815b28b00000000000022488c34b18e000000000000ab4b91d60e9200000000000021fb9641c995000000000000bbd29c54df99000000000000 +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6125a2dc4a9e00000000000001e1a6f80aa30000000000002c61abcf18a8000000000000bdeaaf0c72ad0000000000007f93b44911b3000000000000b485b9a0f1b8000000000000 +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5107bf0b0fbf0000000000002903c5a363c50000000000009d6dcbb9e9cb0000000000007d25d2b29cd2000000000000d0f0d8e075d900000000000085d5df4370e0000000000000 +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6207e7a685e70000000000003486ee9cafee000000000000bb5ff65de9f5000000000000fe26fe512afd000000000000498405556f04000000000000776f0c73af0b000000000000 +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a82a13b0e612000000000000ce291a630c1a000000000000a66b21051e21000000000000e8fc285c112800000000000067803097e42e0000000000006d8c37a78e35000000000000 +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 61e63de60b3c000000000000209f430956420000000000004423498267480000000000001fd14e0e3c4e000000000000dccd54d2cd53000000000000cfca5a171959000000000000 +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 027a60bb175e000000000000ff9a6564c762000000000000b7156a792267000000000000a2d16da2256b000000000000d3e47059ce6e0000000000000b5473a61872000000000000 +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c12c7565027500000000000055c376878877000000000000351a78f8a879000000000000f8567998627b00000000000013507a14b37c000000000000aa4a7b7f997d000000000000 +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a9897c99157e00000000000006287e85267e0000000000000cd67fbccc7d000000000000abff7f69077d000000000000abff7fb9d97b0000000000003e9c7e54417a000000000000 +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a1497cfa4078000000000000325e7994da750000000000003c36769a0f73000000000000b001739ae46f000000000000fc916fab596c00000000000032da6b797368000000000000 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ccba67eb33640000000000003e00638e9f5f000000000000aed65d29ba5a000000000000b86158f387550000000000004cd0528c0c50000000000000961b4ddb4d4a000000000000 +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a71c473f4f44000000000000bd80407f173e000000000000fe5e3987aa370000000000002c0c32cd0e310000000000002bc12a12492a000000000000b17f23ec5f23000000000000 +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 99751c5e581c000000000000968c155c3915000000000000e8860e7b070e000000000000784407f4ca060000000000005f9fffff87ff00000000000009aaf72a45f8000000000000 +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: bf9def4b09f100000000000036e6e74fdae9000000000000f697e033bee2000000000000cbc1d98abadb000000000000f62bd30dd6d40000000000007d68cc0a16ce000000000000 +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8c7cc51081c70000000000009486be2f1bc10000000000007b98b7d7ebba00000000000024c0b00ff6b4000000000000f04caa9140af000000000000895fa483cfa9000000000000 +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e9df9ec5a7a40000000000008bdd998bcd9f000000000000c28b9515459b0000000000001f32922b1297000000000000cd229031389300000000000003348f3cbb8f000000000000 +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: bec28e749c8c000000000000d52e8e3fe1890000000000001ffb8c2a898700000000000077298be09785000000000000d30089c90d8400000000000007f68641ed82000000000000 +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a34185b13682000000000000280b8475eb81000000000000317e83d10a8200000000000070a5835595820000000000002f5d849f89830000000000003f8085afe784000000000000 +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 24e986bfae860000000000007ff688a0dc8800000000000015c58b226f8b0000000000000e428f5a668e0000000000003d23937aba91000000000000f71b97986d95000000000000 +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 86109bee7a9900000000000047169f5fdf9d000000000000238ca34297a200000000000049eda89f9ea7000000000000bb1aaf5af1ac000000000000eab8b56f8ab2000000000000 +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4945bc3e65b8000000000000858ec2227dbe000000000000c55ec822cdc40000000000003dffcdd34ecb00000000000058d5d397fed10000000000000335da73d4d8000000000000 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4d37e146ccdf000000000000f798e825dfe60000000000006b00f0e607ee0000000000002858f7b23ff50000000000007195fe6081fc000000000000dc8605eac503000000000000 +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4d0b0c37070b0000000000004b4012f73e12000000000000314a188a67190000000000000a4b1ef57a20000000000000366124af712700000000000055822a76472e000000000000 +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 74b030f0f5340000000000005a2c37d2773b000000000000a8293e81c6410000000000005fa54563dd47000000000000754d4dd9b74d000000000000f654541a5053000000000000 +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: bc275aaea158000000000000f2cd5e02a85d0000000000000f9f62ab5e6200000000000097e6650fc266000000000000e2e96851cd6a00000000000066f16b6d7e6e000000000000 +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 66ea6ec9d17100000000000003c87102c474000000000000d444748e53770000000000008059764f7d79000000000000ceff7766407b000000000000c164797c9a7c000000000000 + +No. Time Source Destination Protocol Length Info + 7743 4.813892 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 7743: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.304739000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.304739000 UTC + Epoch Arrival Time: 1750683232.304739000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001900000 seconds] + [Time delta from previous displayed frame: 0.001900000 seconds] + [Time since reference or first frame: 4.813892000 seconds] + Frame Number: 7743 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff92072203f010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 7716] + [Time from request: 0.017907000 seconds] + Isochronous transfer start frame: 1891679 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 7744 4.814105 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 7744: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.304952000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.304952000 UTC + Epoch Arrival Time: 1750683232.304952000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000213000 seconds] + [Time delta from previous displayed frame: 0.000213000 seconds] + [Time since reference or first frame: 4.814105000 seconds] + Frame Number: 7744 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff92072203f010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 7768] + Isochronous transfer start frame: 1891697 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 7745 4.815895 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 7745: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.306742000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.306742000 UTC + Epoch Arrival Time: 1750683232.306742000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001790000 seconds] + [Time delta from previous displayed frame: 0.001790000 seconds] + [Time since reference or first frame: 4.815895000 seconds] + Frame Number: 7745 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720b96560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 7719] + [Time from request: 0.017935000 seconds] + Isochronous transfer start frame: 1891681 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 7746 4.815982 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 7746: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.306829000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.306829000 UTC + Epoch Arrival Time: 1750683232.306829000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000087000 seconds] + [Time delta from previous displayed frame: 0.000087000 seconds] + [Time since reference or first frame: 4.815982000 seconds] + Frame Number: 7746 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720b96560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 7771] + Isochronous transfer start frame: 1891699 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 7747 4.816771 1.1.2 host USB 519 URB_ISOCHRONOUS out + +Frame 7747: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.307618000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.307618000 UTC + Epoch Arrival Time: 1750683232.307618000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000789000 seconds] + [Time delta from previous displayed frame: 0.000789000 seconds] + [Time since reference or first frame: 4.816771000 seconds] + Frame Number: 7747 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b65a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 7727] + [Time from request: 0.014761000 seconds] + Isochronous transfer start frame: 1891679 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + +No. Time Source Destination Protocol Length Info + 7748 4.817895 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 7748: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.308742000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.308742000 UTC + Epoch Arrival Time: 1750683232.308742000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001124000 seconds] + [Time delta from previous displayed frame: 0.001124000 seconds] + [Time since reference or first frame: 4.817895000 seconds] + Frame Number: 7748 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720b96010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 7722] + [Time from request: 0.017783000 seconds] + Isochronous transfer start frame: 1891683 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 7749 4.818006 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 7749: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.308853000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.308853000 UTC + Epoch Arrival Time: 1750683232.308853000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000111000 seconds] + [Time delta from previous displayed frame: 0.000111000 seconds] + [Time since reference or first frame: 4.818006000 seconds] + Frame Number: 7749 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720b96010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 7773] + Isochronous transfer start frame: 1891701 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 7750 4.818012 host 1.1.2 USB 3399 URB_ISOCHRONOUS out + +Frame 7750: 3399 bytes on wire (27192 bits), 3399 bytes captured (27192 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.308859000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.308859000 UTC + Epoch Arrival Time: 1750683232.308859000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000006000 seconds] + [Time delta from previous displayed frame: 0.000006000 seconds] + [Time since reference or first frame: 4.818012000 seconds] + Frame Number: 7750 + Frame Length: 3399 bytes (27192 bits) + Capture Length: 3399 bytes (27192 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b65a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2880 + [Response in: 7767] + Isochronous transfer start frame: 1891694 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3d9a7adc8a7d000000000000659d7b3a107e000000000000ef307c432b7e00000000000021fe7b21db7d00000000000062df7afb1f7d000000000000b73279aefa7b000000000000 +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8d3b77f86b7a0000000000005c3575767578000000000000cb2e73251876000000000000b02c7174577300000000000098ec6edb3370000000000000dce76ba6b26c000000000000 +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4d086894d3680000000000005459636e9c640000000000002d535e410f60000000000000ba4959b6305b000000000000aa7054790556000000000000a39b4ff98f50000000000000 +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d2764a43d74a000000000000c0e7444bde4400000000000050ae3ec1ab3e000000000000610e387643380000000000008d0e3155ab310000000000008fcd2966e92a000000000000 +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 814e22610224000000000000eabf1a1cfe1c0000000000006c301303e01500000000000026950b7eb00e000000000000493604ab7307000000000000675efddc3000000000000000 +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d93ff749eef800000000000044cef10cb1f10000000000008280eccc80ea00000000000081c1e60a62e3000000000000df67e05d5cdc0000000000009f71d93974d5000000000000 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3410d29ab0ce000000000000e189ca9917c8000000000000f925c3c4acc1000000000000da0bbcda77bb000000000000856bb59e7cb5000000000000125bafa9c1af000000000000 +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8db2a97b49aa000000000000a763a45c1ba5000000000000a6509f1a39a000000000000023b39ac2a99b00000000000086a4961e6e970000000000009e3393fc8c93000000000000 +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 57fd8fe3059000000000000081ac8ca3df8c0000000000004e6589b7198a000000000000004e8659b98700000000000079c9835fbe850000000000008c1882602b84000000000000 +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b74f81550183000000000000de2f812a41820000000000001e68812dec81000000000000f6af81d501820000000000003ff681cc8282000000000000558282596e83000000000000 +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5892835fc384000000000000c567852781860000000000000b18881ca6880000000000006e6f8b85308b000000000000e4068fe11d8e00000000000085a492616b91000000000000 +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 093a9605169500000000000036c499151b9900000000000096339d9a779d000000000000bec5a04728a2000000000000bbb6a46a28a70000000000009f22a90674ac000000000000 +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 72f7add006b2000000000000fe2cb32bdcb7000000000000aaf7b82eeebd00000000000012a1bf1b39c4000000000000a95ec7f4b6ca0000000000005503d0dc61d1000000000000 +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 650ed97b34d800000000000059d2e11729df00000000000014e7e9573ae60000000000000859f1df60ed0000000000003da1f8d097f400000000000062000034d9fb000000000000 +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2e6b07021d030000000000005ddb0ed75e0a000000000000774816669711000000000000ec8c1d23c118000000000000b49124efd51f00000000000017512b19d026000000000000 +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 55cc312ca92d000000000000363a389c5a3400000000000047af3ef8e03a0000000000004205457a344100000000000016f74a295147000000000000955d50f2304d000000000000 +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b22c5533cf520000000000002a92596127580000000000001ff65d77345d000000000000e08162c3f261000000000000a620673b5d6600000000000028a26b12716a000000000000 +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 38af6f392a6e00000000000015ec72318671000000000000b95a750a827400000000000070207774197700000000000097a078d34d79000000000000472d7aa2197b000000000000 +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 58c77b6a7d7c000000000000fc197d4e777d00000000000084d77d66077e00000000000080ec7dac2b7e000000000000bb297d97e57d00000000000045b87be6337d000000000000 +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 7ba27968187c000000000000242377cb927a000000000000926d743ca6780000000000004a8c714e52760000000000004f986e709a73000000000000c8756bd68070000000000000 +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c16068ce066d000000000000f06e65e23069000000000000ecd3629101650000000000005e93607a7c600000000000003bf55dd2a45b000000000000c5865abf8056000000000000 +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 40c6555b125100000000000068e74f805f4b0000000000005f4449926b45000000000000de11421a3e3f0000000000009fc83a4ada38000000000000e785330f4732000000000000 +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1d7b2c04882b0000000000000c6e2526a524000000000000c7371e95a21d0000000000004ee316a48616000000000000de7e0f6f580f000000000000dc48087b1c08000000000000 +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f54a01a9da000000000000001d86fac796f9000000000000bca7f37759f2000000000000856aec0d27eb00000000000030f8e41e07e4000000000000e4a0dd4cfedc000000000000 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f9bad6af13d60000000000005363d0b94bcf000000000000d585ca59aec800000000000036f1c49b3fc20000000000009b45bf3a05bc000000000000da51b91405b6000000000000 +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 471ab3ad42b0000000000000a9e5ac26c5aa000000000000e736a7388fa50000000000002940a2aea6a00000000000004b149e600e9c000000000000b6929a1fcb97000000000000 +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 766a97c7e0930000000000004c4f94465290000000000000f2089138228d000000000000d8b28dd9538a000000000000c5528aafe9870000000000009c1a87f5e485000000000000 +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: db56842b4884000000000000a51982841483000000000000c86b80cb4a8200000000000055008009ec810000000000005500801ff881000000000000550080876f82000000000000 +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b4ab81a550830000000000005f70848d9c84000000000000dd9287895086000000000000af8d8a436c8800000000000048438d49ed8a000000000000a7a68fb4d18d000000000000 +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3d1b9241179100000000000042ce94feba9400000000000062e8971fb998000000000000169e9bcb0f9d000000000000e5f59fc5b9a100000000000097e4a4fab3a6000000000000 +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4945aa20faab00000000000005e7af4887b10000000000008fb0b5c557b700000000000032cbbb8e64bd000000000000135bc2fcaac30000000000007340c94724ca000000000000 +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2911d01ecbd00000000000001aa9d6949ad700000000000067f8dcaa8bde000000000000f55ce38999e50000000000004319ea37bdec000000000000485bf1aff1f3000000000000 +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: cd29f92d30fb000000000000121101337302000000000000afab08b6b3090000000000005da90f74ec10000000000000da29168916180000000000001d801cf12b1f000000000000 +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3bf522522726000000000000c9c8292d022d000000000000fee630cfb6330000000000003919386c3f3a000000000000a5013ff09640000000000000a173459eb746000000000000 +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a77e4b1f9b4c000000000000d70d51583f52000000000000a50e560b9c5700000000000035955ae6af5c000000000000b5dc5e1d7461000000000000e3df625be665000000000000 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f49566e8006a00000000000031086a6dc26d000000000000f15f6d32267100000000000039ea706d2a7400000000000006cd74a7cb76000000000000e1c278300879000000000000 +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3c537cf3dd7a00000000000041dd7e5f4b7c000000000000abff7f0b4f7d000000000000abff7ff6e87d000000000000ef7b7f04177e000000000000e15d7ec3da7d000000000000 +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4cd87c35337d000000000000382e7bfc217c00000000000010677916a77a0000000000007868771cc4780000000000000c3875747a76000000000000889a7265cc73000000000000 +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 66dc6fcabb700000000000005bef6cf14c6d00000000000083b969998069000000000000c90c66c05b6500000000000090a461d6df60000000000000aa8e5c08125c000000000000 +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 33bd5662f55600000000000093aa50218f51000000000000b2944ab2e34b00000000000015ad4449f745000000000000e8fe3e42d03f000000000000f13639af7139000000000000 + +No. Time Source Destination Protocol Length Info + 7751 4.819894 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 7751: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.310741000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.310741000 UTC + Epoch Arrival Time: 1750683232.310741000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001882000 seconds] + [Time delta from previous displayed frame: 0.001882000 seconds] + [Time since reference or first frame: 4.819894000 seconds] + Frame Number: 7751 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720bdb050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 7726] + [Time from request: 0.017889000 seconds] + Isochronous transfer start frame: 1891685 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 7752 4.820178 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 7752: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.311025000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.311025000 UTC + Epoch Arrival Time: 1750683232.311025000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000284000 seconds] + [Time delta from previous displayed frame: 0.000284000 seconds] + [Time since reference or first frame: 4.820178000 seconds] + Frame Number: 7752 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720bdb050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 7776] + Isochronous transfer start frame: 1891703 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 7753 4.821770 1.1.2 host USB 519 URB_ISOCHRONOUS out + +Frame 7753: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.312617000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.312617000 UTC + Epoch Arrival Time: 1750683232.312617000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001592000 seconds] + [Time delta from previous displayed frame: 0.001592000 seconds] + [Time since reference or first frame: 4.821770000 seconds] + Frame Number: 7753 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b6050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 7736] + [Time from request: 0.013764000 seconds] + Isochronous transfer start frame: 1891684 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + +No. Time Source Destination Protocol Length Info + 7754 4.821890 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 7754: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.312737000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.312737000 UTC + Epoch Arrival Time: 1750683232.312737000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000120000 seconds] + [Time delta from previous displayed frame: 0.000120000 seconds] + [Time since reference or first frame: 4.821890000 seconds] + Frame Number: 7754 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920719bd6560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 7730] + [Time from request: 0.017801000 seconds] + Isochronous transfer start frame: 1891687 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 7755 4.821966 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 7755: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.312813000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.312813000 UTC + Epoch Arrival Time: 1750683232.312813000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000076000 seconds] + [Time delta from previous displayed frame: 0.000076000 seconds] + [Time since reference or first frame: 4.821966000 seconds] + Frame Number: 7755 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920719bd6560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 7779] + Isochronous transfer start frame: 1891705 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 7756 4.821969 host 1.1.2 USB 3399 URB_ISOCHRONOUS out + +Frame 7756: 3399 bytes on wire (27192 bits), 3399 bytes captured (27192 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.312816000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.312816000 UTC + Epoch Arrival Time: 1750683232.312816000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000003000 seconds] + [Time delta from previous displayed frame: 0.000003000 seconds] + [Time since reference or first frame: 4.821969000 seconds] + Frame Number: 7756 + Frame Length: 3399 bytes (27192 bits) + Capture Length: 3399 bytes (27192 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b6050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2880 + [Response in: 7775] + Isochronous transfer start frame: 1891699 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: de123353e332000000000000c95b2c2e282c000000000000f40e25bc4825000000000000b96f1da0481e000000000000710a160d2f17000000000000f0250f9e0110000000000000 +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c8c30857c6080000000000001d73022a8301000000000000c3effb923ffa000000000000f4e5f4f0fff20000000000006c6ced06cceb0000000000005291e578a8e4000000000000 +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8991dd8c9cdd0000000000007dbdd56eaed6000000000000921fce04e2cf0000000000003fbdc6f23fc9000000000000e08abf4ecbc2000000000000e8c1b8198bbc000000000000 +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b28fb23883b6000000000000fd53ad06bbb0000000000000a322a9c635ab00000000000011d0a577f8a500000000000046c3a27807a1000000000000ec829fd9669c000000000000 +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 67ea9b891b98000000000000c42898172894000000000000647894d790900000000000009de1904e578d00000000000066a58d1b808a000000000000b0f68abe0b88000000000000 +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ecd688f9fe85000000000000871a877457840000000000007bb385211b8300000000000013888496468200000000000093c98305df81000000000000f593830ce181000000000000 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4a0584f04e82000000000000870c85422783000000000000883e86d56984000000000000f166877e1486000000000000029a88442788000000000000fa538a849f8a000000000000 +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: cec88c987b8d000000000000f408901db990000000000000c7f6937c54940000000000006042983f4c9800000000000052959c6a9a9c00000000000048c7a0bd3ea1000000000000 +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 01f4a41232a60000000000005275a95472ab0000000000000976aef8f9b0000000000000380db406c5b6000000000000f12cbac7cdbc000000000000deb2c0c20fc3000000000000 +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 785cc79385c900000000000062e6cdc128d00000000000001858d405f6d60000000000005398dae8e4dd000000000000d0d3e070f1e4000000000000c439e70614ec000000000000 +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0b06eefa47f3000000000000a156f59086fa000000000000d1e7fc2aca010000000000008a8d04400b090000000000009f660ca0451000000000000043b6149d7117000000000000 +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 58a61de1891e000000000000b7e126be872500000000000098bc2fe9652c0000000000006cbb37ff1e33000000000000589c3e55ac39000000000000c09944d80740000000000000 +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 04df49482d460000000000009bdd4e09174c00000000000059b253b2c0510000000000001065584f24570000000000009c095d563e5c0000000000008f8561910961000000000000 +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 46e2651d8365000000000000a0ee6939a669000000000000dfc56d206f6d000000000000196a71efdb700000000000008bd57497e7730000000000009bef772b9276000000000000 +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ad6a7ad4d67800000000000006517cb5b57a0000000000006fc17da52c7c00000000000048d37e6e397d000000000000dfba7f6bdc7d000000000000abff7f5c147e000000000000 +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: abff7face17d000000000000abff7f10447d000000000000abff7f463d7c000000000000a1517e53ca7a000000000000c7c67bc0f1780000000000002ad97872b076000000000000 +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 20e775b50b740000000000000014736c04710000000000005458709e9d6d000000000000fa386dc1da69000000000000b06869f4bc650000000000000cc664724961000000000000 +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: cc6e5fc8825c000000000000176c59d86d5700000000000062f652350e52000000000000f31e4ce1684c000000000000862e4547824600000000000094253e146040000000000000 +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: af1537b1063a0000000000003121301e7c33000000000000fe8529d8c52c000000000000567823f4e8250000000000008fca1d03ec1e000000000000cd431871d417000000000000 +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 537612dda81000000000000034f70bd76e09000000000000dcb4049f2c0200000000000009d3fc4de8fa00000000000054a4f444a8f30000000000003f62ec6673ec000000000000 +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ac49e48d4ee500000000000031abdc5840de000000000000c88ed5014fd7000000000000dec2ce4a80d00000000000009b09c84cd9c9000000000000586fc1e760c3000000000000 +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9b21bb3d1bbd000000000000d443b59c0fb700000000000065fdafb840b100000000000094faaae0b5ab00000000000026fca52371a6000000000000f2e1a08479a1000000000000 +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d2d39b8fd19c000000000000275697807e98000000000000dbb1931d83940000000000001ad79032e390000000000000e7708eafa18d000000000000e2318c9fc08a000000000000 +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 30d8892d4488000000000000365087bf2c860000000000000dda84da7c84000000000000a0db82a535830000000000004d8f81d25882000000000000b9358141e681000000000000 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d1978141df810000000000003a8e821f438200000000000063e483271183000000000000b45885134a8400000000000016c9864eeb85000000000000b94d880df587000000000000 +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b8288afd638a000000000000ab7a8c32378d00000000000067418f456b90000000000000589b92b0fe930000000000002c41965aed97000000000000ec4c9ab4349c000000000000 +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 28f29e55d0a0000000000000d3b2a4aabca50000000000000f84ab4cf6aa0000000000002c09b3c776b00000000000004274bab63cb60000000000002139c16240bc000000000000 +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4d64c7227dc20000000000007e2acd4fedc800000000000060c6d2388dcf0000000000008077d8b655d60000000000007386de5e42dd0000000000000fe7e4ef4be4000000000000 +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 95b2eb246deb00000000000016d0f2ab9ff2000000000000d326faa6ddf90000000000008a870170200100000000000077d108486308000000000000571210b89d0f000000000000 +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 903217b5cb16000000000000d23d1e40e51d000000000000caee2414e6240000000000000f322b50c72b000000000000393031cf8332000000000000ca2537b31439000000000000 +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6d383d6f753f0000000000007b90437ca045000000000000981c4a10904b000000000000598450963f51000000000000a34b5634aa56000000000000de4d5b05cb5b000000000000 +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 90ab5f979d6000000000000091c263df1e65000000000000c5ef675d49690000000000007d4b6c551b6d000000000000939670b28f70000000000000ed71742ba573000000000000 +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0b8a777b587600000000000060b179b8a678000000000000020a7b648f7a000000000000bfb87b140f7c0000000000008cb87bb1257d00000000000027487b34d27d000000000000 +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 898f7a48147e000000000000b2977949eb7d000000000000476278f1577d000000000000c30c77d7587c00000000000008ed751ef27a0000000000005f1c75322179000000000000 +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a3aa7436ea76000000000000c63074434e74000000000000124073824f71000000000000ea8a7144f16d000000000000e0c96e72376a00000000000012fb6ab32166000000000000 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6f666657b561000000000000c54f61cef55c00000000000054dd5b6be7570000000000001b4856078e5200000000000057945007ef4c00000000000083974a700e47000000000000 +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 283244baf140000000000000347c3db59c3a000000000000129b36db16340000000000007cbc2f99632d000000000000daed28c98a260000000000005bcf218a8f1f000000000000 +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 80391ad37a180000000000001c4c12985011000000000000ef500a71170a000000000000848302a5d5020000000000009f20fba991fb0000000000009b1bf4cb50f4000000000000 +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 022fed391aed0000000000007d30e66ef3e500000000000047f8de33e3de000000000000d08fd720eed7000000000000a71ed0491cd1000000000000e9ebc8c771ca000000000000 +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6001c228f4c3000000000000c29fbb8daabd00000000000097b2b58998b70000000000002602b096c4b1000000000000b762aaec31ac0000000000003fc4a490e7a6000000000000 + +No. Time Source Destination Protocol Length Info + 7757 4.823893 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 7757: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.314740000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.314740000 UTC + Epoch Arrival Time: 1750683232.314740000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001924000 seconds] + [Time delta from previous displayed frame: 0.001924000 seconds] + [Time since reference or first frame: 4.823893000 seconds] + Frame Number: 7757 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720df8010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 7732] + [Time from request: 0.017907000 seconds] + Isochronous transfer start frame: 1891689 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 7758 4.824111 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 7758: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.314958000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.314958000 UTC + Epoch Arrival Time: 1750683232.314958000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000218000 seconds] + [Time delta from previous displayed frame: 0.000218000 seconds] + [Time since reference or first frame: 4.824111000 seconds] + Frame Number: 7758 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720df8010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 7782] + Isochronous transfer start frame: 1891707 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 7759 4.825894 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 7759: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.316741000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.316741000 UTC + Epoch Arrival Time: 1750683232.316741000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001783000 seconds] + [Time delta from previous displayed frame: 0.001783000 seconds] + [Time since reference or first frame: 4.825894000 seconds] + Frame Number: 7759 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 7735] + [Time from request: 0.017893000 seconds] + Isochronous transfer start frame: 1891691 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 7760 4.825982 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 7760: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.316829000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.316829000 UTC + Epoch Arrival Time: 1750683232.316829000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000088000 seconds] + [Time delta from previous displayed frame: 0.000088000 seconds] + [Time since reference or first frame: 4.825982000 seconds] + Frame Number: 7760 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 7785] + Isochronous transfer start frame: 1891709 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 7761 4.826769 1.1.2 host USB 519 URB_ISOCHRONOUS out + +Frame 7761: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.317616000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.317616000 UTC + Epoch Arrival Time: 1750683232.317616000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000787000 seconds] + [Time delta from previous displayed frame: 0.000787000 seconds] + [Time since reference or first frame: 4.826769000 seconds] + Frame Number: 7761 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff92072024f5a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 7742] + [Time from request: 0.014777000 seconds] + Isochronous transfer start frame: 1891689 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + +No. Time Source Destination Protocol Length Info + 7762 4.827892 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 7762: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.318739000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.318739000 UTC + Epoch Arrival Time: 1750683232.318739000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001123000 seconds] + [Time delta from previous displayed frame: 0.001123000 seconds] + [Time since reference or first frame: 4.827892000 seconds] + Frame Number: 7762 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 7738] + [Time from request: 0.017748000 seconds] + Isochronous transfer start frame: 1891693 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 7763 4.827981 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 7763: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.318828000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.318828000 UTC + Epoch Arrival Time: 1750683232.318828000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000089000 seconds] + [Time delta from previous displayed frame: 0.000089000 seconds] + [Time since reference or first frame: 4.827981000 seconds] + Frame Number: 7763 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 7789] + Isochronous transfer start frame: 1891711 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 7764 4.827985 host 1.1.2 USB 3399 URB_ISOCHRONOUS out + +Frame 7764: 3399 bytes on wire (27192 bits), 3399 bytes captured (27192 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.318832000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.318832000 UTC + Epoch Arrival Time: 1750683232.318832000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000004000 seconds] + [Time delta from previous displayed frame: 0.000004000 seconds] + [Time since reference or first frame: 4.827985000 seconds] + Frame Number: 7764 + Frame Length: 3399 bytes (27192 bits) + Capture Length: 3399 bytes (27192 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff92072024f5a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2880 + [Response in: 7781] + Isochronous transfer start frame: 1891704 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e22a9fa4e8a100000000000052929942399d00000000000038599429dd98000000000000bebf8fddda9400000000000081c88b333191000000000000444a8826e88d000000000000 +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 54378534fd8a00000000000055ae822378880000000000003bfe80975686000000000000628a80199e84000000000000742581b24c83000000000000796282896682000000000000 +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: eda383afea81000000000000ab778430d9810000000000008cda84a93382000000000000c130853bf882000000000000c0bf85972784000000000000698b863ebf85000000000000 +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b4d487a5bf8700000000000028bb8906258a0000000000009b368c79ef8c000000000000c43d8f2e1b90000000000000faa892e1a593000000000000a66796388c97000000000000 +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0d849ac2cb9b000000000000e61e9f9460a0000000000000bf27a45e45a5000000000000f083a97878aa000000000000311faf10f3af0000000000005abeb45eb2b5000000000000 +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4576ba24b0bb0000000000008aa3c062e8c10000000000001f70c7df54c800000000000013c7ce94f0ce000000000000be77d641b6d5000000000000701edede9fdc000000000000 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c55de5cca6e30000000000009e44ec7fc6ea0000000000002308f341f7f1000000000000e119faf534f90000000000008bc30110780000000000000037dc093bba07000000000000 +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 44ef11e6f50e00000000000073b01948251600000000000065f420e4401d000000000000569b27fe442400000000000075af2dc2282b000000000000e75e33f3e831000000000000 +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2bbb38b07e38000000000000cbf03d0be43e000000000000001f434814450000000000007e414836094b00000000000000524ddbbe50000000000000887052d22f56000000000000 +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ffbd57cb575b00000000000084545dbf3160000000000000963d63b5ba64000000000000ea016976ed68000000000000db1a6e62c76c000000000000492372604470000000000000 +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2c14751c63730000000000000516779c1e760000000000009e57789f7678000000000000944a7954687a00000000000098347ac3f17b000000000000661b7b8a127d000000000000 +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b2d57b0fc87d0000000000000b2d7cb9147e000000000000a5f37b37f57d000000000000c5497b346b7d000000000000a14a7a86767c000000000000011779f9177b000000000000 +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d2b977f1507900000000000094e275982377000000000000d553736b9074000000000000b510700e9a71000000000000527d6c91456e00000000000066bc68c7926a000000000000 +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 39c86460856600000000000074bd60f12062000000000000515f5cab685d000000000000af7357986158000000000000edda51f00e530000000000007a9e4b12764d000000000000 +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d5fb44df9a4700000000000071533ef382410000000000009dd83775333b000000000000489c312bb134000000000000f6a52b30022e00000000000037b725042c27000000000000 +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 17621f5934200000000000009a97183621190000000000002f5f11c7f811000000000000ded1091fc00a000000000000552002e37e030000000000008786fa6d3afc000000000000 +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e800f316f9f4000000000000e06deb3ec1ed00000000000077f5e3c398e6000000000000b1b0dc4585df0000000000002c14d69e8ed8000000000000617bd08db8d1000000000000 +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3d8bcb020acb00000000000093c1c69f88c40000000000000bacc1f039be000000000000fb1bbc4122b80000000000007d12b6a448b2000000000000e1cfaf55b0ac000000000000 +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f7aea9395ea70000000000007ddaa33b58a2000000000000878f9e8da19d0000000000001a029a0b3e99000000000000793b96a13295000000000000941393418191000000000000 +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 694090a82e8e000000000000b08e8d663c8b000000000000100f8bb9ac88000000000000daeb88ad82860000000000007f1c8712c084000000000000f08e856a6583000000000000 +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5f3184597582000000000000990f8329ef810000000000004e4682c3d481000000000000a42382e224820000000000007bd4825ae082000000000000d86684ee0484000000000000 +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ee818648948500000000000069de88d08a87000000000000f9398b31e88900000000000067a88d28a88c00000000000005859019cc8f000000000000e9ec938f4d93000000000000 +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: bd2c986d2c97000000000000441f9dec639b000000000000bb8ea264f09f000000000000560ba8d6cea40000000000005c75adb5faa9000000000000f6f0b2af6faf000000000000 +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0b28b82a28b5000000000000f149bd3e21bb0000000000009975c20e54c1000000000000ccd4c77ebcc70000000000008683cdee53ce0000000000003775d35a16d5000000000000 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d1b9d985fcdb000000000000d16fe0e701e3000000000000d807e8771fea000000000000ca73f05a4ff1000000000000d980f9f38bf8000000000000b7ea026eceff000000000000 +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 96e80bf311070000000000008b1414e74e0e000000000000b7801b537f150000000000008c5522b49d1c000000000000b5cf2877a32300000000000080232ff78a2a000000000000 +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ef8135b64e310000000000000cea3b0ce837000000000000b63242c8513e000000000000544a4890874400000000000043f34df3814a0000000000003e7553263e50000000000000 +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e4d8587cb55500000000000028085e82e45a0000000000006feb6205c65f000000000000775267615664000000000000a51d6b2791680000000000008d3f6e8d736c000000000000 +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ec147176f96f000000000000c8c2730b21730000000000009856766ae575000000000000acd278584678000000000000a1e87af2417a00000000000068757c5cd47b000000000000 +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 12467d2fff7c000000000000395d7d73be7d000000000000c5df7c8b147e00000000000002257c97fd7d000000000000595f7bc27d7d000000000000a47c7a13927c000000000000 +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c86079993c7b00000000000022e477f57e7900000000000047d375725a77000000000000b9067336d0740000000000002daf6fb9e271000000000000eee46be9946e000000000000 +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: dcee6718ea6a00000000000068b463b2e566000000000000f3325fd88862000000000000e35d5a43d85d000000000000cc35551bd858000000000000d012509d8c53000000000000 +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: bc2e4b6ff94d00000000000096da46ae24480000000000009dce42ce11420000000000005e783ea4c73b0000000000007b5039464935000000000000fb2c33209f2e000000000000 +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 15352c18cc27000000000000d37d242dd720000000000000bd6a1ce8c519000000000000db40148d9f12000000000000e9500c25680b00000000000099b6046d2804000000000000 +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3a4efdc2e3fc00000000000075f3f529a2f50000000000002c8beeee68ee000000000000c12ae7c73ee7000000000000b9e8df4d2ae000000000000021ffd80030d9000000000000 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e680d23757d20000000000006f25cc7ea5cb00000000000053a8c52c1fc5000000000000dd45bfd5cbbe0000000000005207b93bafb80000000000007347b3f6cfb2000000000000 +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ef1baea830ad0000000000005a74a9a2d9a7000000000000d527a5a4cba2000000000000dfcfa0fd0d9e0000000000002b699c4ca3990000000000008cf997258f95000000000000 +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 03ed931bd691000000000000d271900b7a8e000000000000df898dee7e8b000000000000ed428b19e68800000000000041708957b386000000000000f3c7876fe684000000000000 +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e72186048383000000000000ba8984cd8882000000000000070083eff8810000000000008196810ed48100000000000028a580ce1a82000000000000d443800ecc82000000000000 +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3c8e8025e883000000000000dc8881e16c8500000000000040fb82035a87000000000000692d855bad8900000000000017648870658c000000000000bea88cae7f8f000000000000 + +No. Time Source Destination Protocol Length Info + 7765 4.829902 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 7765: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.320749000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.320749000 UTC + Epoch Arrival Time: 1750683232.320749000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001917000 seconds] + [Time delta from previous displayed frame: 0.001917000 seconds] + [Time since reference or first frame: 4.829902000 seconds] + Frame Number: 7765 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff92072203f560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 7741] + [Time from request: 0.017916000 seconds] + Isochronous transfer start frame: 1891695 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 7766 4.830120 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 7766: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.320967000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.320967000 UTC + Epoch Arrival Time: 1750683232.320967000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000218000 seconds] + [Time delta from previous displayed frame: 0.000218000 seconds] + [Time since reference or first frame: 4.830120000 seconds] + Frame Number: 7766 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff92072203f560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1891713 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 7767 4.831772 1.1.2 host USB 519 URB_ISOCHRONOUS out + +Frame 7767: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.322619000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.322619000 UTC + Epoch Arrival Time: 1750683232.322619000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001652000 seconds] + [Time delta from previous displayed frame: 0.001652000 seconds] + [Time since reference or first frame: 4.831772000 seconds] + Frame Number: 7767 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b65a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 7750] + [Time from request: 0.013760000 seconds] + Isochronous transfer start frame: 1891694 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + +No. Time Source Destination Protocol Length Info + 7768 4.831890 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 7768: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.322737000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.322737000 UTC + Epoch Arrival Time: 1750683232.322737000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000118000 seconds] + [Time delta from previous displayed frame: 0.000118000 seconds] + [Time since reference or first frame: 4.831890000 seconds] + Frame Number: 7768 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff92072203f010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 7744] + [Time from request: 0.017785000 seconds] + Isochronous transfer start frame: 1891697 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 7769 4.831962 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 7769: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.322809000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.322809000 UTC + Epoch Arrival Time: 1750683232.322809000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000072000 seconds] + [Time delta from previous displayed frame: 0.000072000 seconds] + [Time since reference or first frame: 4.831962000 seconds] + Frame Number: 7769 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff92072203f010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1891715 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 7770 4.831967 host 1.1.2 USB 3399 URB_ISOCHRONOUS out + +Frame 7770: 3399 bytes on wire (27192 bits), 3399 bytes captured (27192 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.322814000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.322814000 UTC + Epoch Arrival Time: 1750683232.322814000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000005000 seconds] + [Time delta from previous displayed frame: 0.000005000 seconds] + [Time since reference or first frame: 4.831967000 seconds] + Frame Number: 7770 + Frame Length: 3399 bytes (27192 bits) + Capture Length: 3399 bytes (27192 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b65a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2880 + [Response in: 7791] + Isochronous transfer start frame: 1891709 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4da091bef8920000000000000fd39672cf96000000000000d6e69beafe9a000000000000047da04c839f00000000000050bfa4c55aa4000000000000d8f8a8ca7ea9000000000000 +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5856ada9edae000000000000c621b247a0b4000000000000ca6fb78b93ba000000000000c746bd76c1c0000000000000d78fc30e25c7000000000000681cca55b9cd000000000000 +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f6ccd05477d40000000000009d9fd7985adb000000000000becbde415de20000000000000d56e6e078e9000000000000d50cee8ea7f00000000000006dccf511e3f7000000000000 +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9b73fd6325ff000000000000c2e804c36806000000000000aa270c05a60d000000000000757b1380d8140000000000008adc1aaff81b000000000000e93d22340123000000000000 +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ab68295fec290000000000000a14307ab3300000000000005b2d36b6513700000000000046d83bfdbf3d000000000000bd55418dfa4300000000000049d14616fb49000000000000 +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: fc8d4c00bd4f0000000000003b6e52fd3a55000000000000842558d8705a00000000000098875d81595f000000000000ec7c6279f163000000000000b4d5663c3468000000000000 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 81986a561f6c00000000000096d96da3ad6f000000000000d69f70c2dd72000000000000980f7315ac75000000000000781d755f167800000000000033ca76ce1a7a000000000000 +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b223780cb87b000000000000a99c79c3eb7c000000000000863f7bbab57d000000000000330f7d28147e000000000000b9d97e29087e000000000000eff17f18917d000000000000 +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f5f27fb8af7c0000000000005eba7e03647b000000000000c08e7cd9af79000000000000c88979b993770000000000005d07762113750000000000005a66727b2e72000000000000 +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ebb46eaae96e00000000000033186b75456b000000000000cc46675a4767000000000000a5fd62bef062000000000000e63a5ec4465e000000000000950f592e4c59000000000000 +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6c92539d0654000000000000a7c64dcd784e00000000000077c14760a948000000000000e06541ae9b420000000000004e8d3a4b553c0000000000000f7233f6db35000000000000 +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b0522cb2342f000000000000036225e86528000000000000c3bc1ed77421000000000000da301852671a0000000000002a9b111743130000000000002eb70a830e0c000000000000 +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1779038fd00400000000000052f1fb768dfd0000000000006a62f4c44cf6000000000000e837ed3614ef0000000000004967e611eae7000000000000fcf9dff7d3e0000000000000 +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8bb6d996d9d9000000000000f964d31efed200000000000077d0cca149cc000000000000dbddc5c0c0c50000000000004cbebe8c69bf000000000000378fb7ea48b9000000000000 +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4fa0b09e64b30000000000007d26aa21c1ad0000000000007008a44563a800000000000053619ec650a3000000000000005999f18b9e000000000000fd2d95371a9a000000000000 +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d23c92abfe95000000000000a39090b93d92000000000000afa68fead98e0000000000004bd48e4ed58b000000000000e1c68dee34890000000000000e718c1cf886000000000000 +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 7eb78a8022850000000000001f0b89c8b483000000000000bf9387ebb0820000000000009b7786e81682000000000000790d8656e881000000000000aa36861a2582000000000000 +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8ed386a8cb8200000000000046c0877ddd8300000000000025fe88945885000000000000ed7e8a893b8700000000000097728c2d8589000000000000d8118f55338c000000000000 +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 031f92e2438f000000000000b164950eb392000000000000e6cd98217f960000000000008b599c36a49a000000000000b430a0fd1f9f0000000000006ea1a4e0eda3000000000000 +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2ab4a9ed09a9000000000000ec66af4270ae0000000000009165b5cd1bb40000000000005063bbe207ba000000000000f426c1fb2fc000000000000002e4c6ad8dc6000000000000 +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e5dfcc171dcd000000000000c515d3e3d6d3000000000000e5c5d9e4b6da00000000000008d6e0ddb6e10000000000003818e810d0e8000000000000686eef01feef000000000000 +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: cda3f6e738f7000000000000fabbfd387cfe0000000000005684045ec005000000000000071a0b78ff0c000000000000729811e33314000000000000e7181806571b000000000000 +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: deb41e9e6222000000000000a33f258851290000000000007cdb2b4a1d30000000000000bcc232aebf3600000000000024473a26343d000000000000464b42297443000000000000 +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9e5b4a9a7b49000000000000f2105253444f00000000000013d558f2c95400000000000074835eb4075a000000000000c13463d3f75e0000000000006326679e9863000000000000 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e39b6a8be36700000000000000e36d88d76b000000000000b71071c86e6f000000000000410474c4a772000000000000dfae76a57f7500000000000049f078e2f277000000000000 +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b2a47a4b017a00000000000005017cb1a77b0000000000009c347d72e57c000000000000be0d7e5ab87d0000000000007f8a7e4d217e000000000000ef917e7f1e7e000000000000 +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 06167e16b17d000000000000f42e7db5d87c0000000000002b017c5e967b00000000000083c07a7ceb79000000000000a45879e3d8770000000000000fc777a56075000000000000 +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d0c6756f84720000000000001f1c7360476f0000000000001ce16f93ab6b00000000000074fe6be1b4670000000000003e97676565630000000000007303633ec25e000000000000 +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f8605ebacd59000000000000e17f59188e54000000000000e4385433064f000000000000eb714eb43b49000000000000ceff47b531430000000000005ced40acf03c000000000000 +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 495539187a360000000000001f673136d72f000000000000e27029520a29000000000000df8421921b220000000000003a9819770f1b00000000000033a11136ec13000000000000 +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 44020a9ab80c0000000000000cf002687905000000000000fd86fc4336fe00000000000035aff694f4f6000000000000c7f1f0b8baef000000000000cfe2ea538ee8000000000000 +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8a42e49e76e1000000000000e325dd7978da0000000000004ab3d54d9ad3000000000000a32cce97e1cc00000000000004b2c68054c6000000000000ef88bf55f8bf000000000000 +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 97e8b80ad3b90000000000007cc8b2bce8b3000000000000ec06ada23fae000000000000d770a778dba8000000000000191fa2c2c1a3000000000000f53b9dd8f59e000000000000 +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e8e1981e7d9a000000000000292e95d3599600000000000015fb91169192000000000000fff18e62248f00000000000002db8b7b188c00000000000007d188306e89000000000000 +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 792886272987000000000000800f84484a8500000000000064a2828ad383000000000000dbb481a6c682000000000000270681b62382000000000000b4758060eb81000000000000 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 550080331e8200000000000055008077bb82000000000000174c809bc383000000000000cba781fc348500000000000001af83d00e870000000000004e6486b14e89000000000000 +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9fa48912f48b00000000000089498d34fb8e000000000000c32491f36192000000000000630795112596000000000000a1e698e3429a00000000000024d89c26b69e000000000000 +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5f20a14a7da300000000000047b3a54e92a80000000000006aa7aa48f1ad000000000000aafeaf4797b3000000000000acb9b5ed7cb9000000000000e117bccd9fbf000000000000 +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2463c3e9f8c50000000000004f8bcb9683cc000000000000bff3d30e3ad30000000000001930dc6916da0000000000006dd8e38913e10000000000007cf8eacf2ae8000000000000 +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3ba8f18b56ef000000000000b535f8c490f600000000000040effefcd2fd000000000000e0050620170500000000000071740d14570c00000000000062e014ad8c13000000000000 + +No. Time Source Destination Protocol Length Info + 7771 4.833895 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 7771: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.324742000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.324742000 UTC + Epoch Arrival Time: 1750683232.324742000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001928000 seconds] + [Time delta from previous displayed frame: 0.001928000 seconds] + [Time since reference or first frame: 4.833895000 seconds] + Frame Number: 7771 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720b96560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 7746] + [Time from request: 0.017913000 seconds] + Isochronous transfer start frame: 1891699 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 7772 4.834139 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 7772: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.324986000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.324986000 UTC + Epoch Arrival Time: 1750683232.324986000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000244000 seconds] + [Time delta from previous displayed frame: 0.000244000 seconds] + [Time since reference or first frame: 4.834139000 seconds] + Frame Number: 7772 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720b96560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1891717 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 7773 4.835896 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 7773: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.326743000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.326743000 UTC + Epoch Arrival Time: 1750683232.326743000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001757000 seconds] + [Time delta from previous displayed frame: 0.001757000 seconds] + [Time since reference or first frame: 4.835896000 seconds] + Frame Number: 7773 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720b96010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 7749] + [Time from request: 0.017890000 seconds] + Isochronous transfer start frame: 1891701 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 7774 4.835981 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 7774: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.326828000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.326828000 UTC + Epoch Arrival Time: 1750683232.326828000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000085000 seconds] + [Time delta from previous displayed frame: 0.000085000 seconds] + [Time since reference or first frame: 4.835981000 seconds] + Frame Number: 7774 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720b96010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1891719 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 7775 4.836770 1.1.2 host USB 519 URB_ISOCHRONOUS out + +Frame 7775: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.327617000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.327617000 UTC + Epoch Arrival Time: 1750683232.327617000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000789000 seconds] + [Time delta from previous displayed frame: 0.000789000 seconds] + [Time since reference or first frame: 4.836770000 seconds] + Frame Number: 7775 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b6050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 7756] + [Time from request: 0.014801000 seconds] + Isochronous transfer start frame: 1891699 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + +No. Time Source Destination Protocol Length Info + 7776 4.837894 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 7776: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.328741000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.328741000 UTC + Epoch Arrival Time: 1750683232.328741000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001124000 seconds] + [Time delta from previous displayed frame: 0.001124000 seconds] + [Time since reference or first frame: 4.837894000 seconds] + Frame Number: 7776 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720bdb050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 7752] + [Time from request: 0.017716000 seconds] + Isochronous transfer start frame: 1891703 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 7777 4.837982 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 7777: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.328829000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.328829000 UTC + Epoch Arrival Time: 1750683232.328829000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000088000 seconds] + [Time delta from previous displayed frame: 0.000088000 seconds] + [Time since reference or first frame: 4.837982000 seconds] + Frame Number: 7777 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720bdb050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1891721 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 7778 4.837988 host 1.1.2 USB 3399 URB_ISOCHRONOUS out + +Frame 7778: 3399 bytes on wire (27192 bits), 3399 bytes captured (27192 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.328835000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.328835000 UTC + Epoch Arrival Time: 1750683232.328835000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000006000 seconds] + [Time delta from previous displayed frame: 0.000006000 seconds] + [Time since reference or first frame: 4.837988000 seconds] + Frame Number: 7778 + Frame Length: 3399 bytes (27192 bits) + Capture Length: 3399 bytes (27192 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b6050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2880 + Isochronous transfer start frame: 1891714 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2b441cbab01a0000000000000f6823b4bf21000000000000eb3a2a80b028000000000000f6c0308e7f2f000000000000751f37ed25360000000000001f543de99e3c000000000000 +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6741438fe342000000000000a3da4833f04800000000000071134e97be4e000000000000760f53044a5400000000000059e557748e5900000000000096ac5c49865e000000000000 +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f86f61f72d63000000000000a92c6664816700000000000078a36a6d7c6b000000000000957e6ef01c6f000000000000ffaa719a5e72000000000000734374943e75000000000000 +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0f917621bc770000000000008bc07809d37900000000000052f77a1f837b000000000000071f7d8aca7c00000000000054ce7ee8a67d000000000000dbc27ff4197e000000000000 +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ccc57f10217e0000000000007be77e5ebd7d000000000000bb397db9ee7c000000000000ede77a08b67b0000000000009b3378a4147a000000000000af3675370b78000000000000 +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 870872ae9c7500000000000051996e14c97200000000000046436bfc946f00000000000029566805026c0000000000009dcf65491368000000000000fd4b63c6cb63000000000000 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0571604a305f0000000000005ef65cfe435a000000000000c18758090a550000000000007851530f894f0000000000006d574d16c44900000000000071d946c3c043000000000000 +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ca064013843d0000000000004a24398012370000000000002d4a321373300000000000009a8c2bdca92900000000000012c12403be2200000000000006921deab31b000000000000 +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2328168b92140000000000002eb40e9c600d000000000000306b07272206000000000000c22f00d4dffe0000000000005ceef8429df70000000000005467f1c362f0000000000000 +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f49ae9ea34e900000000000016c9e1d21ae2000000000000a722da281adb00000000000026f3d2ed38d4000000000000b551cc457ccd00000000000075f6c548ebc6000000000000 +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6890bf828ac00000000000005a29b93060ba00000000000099b9b2986fb40000000000009775accec0ae000000000000ae8aa61856a9000000000000dc34a16e35a4000000000000 +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2b689c56629f000000000000082698d6e19a000000000000ed679469b696000000000000891291fbe492000000000000a0078ec16f8f00000000000077f38adb5a8c000000000000 +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5eca8797a789000000000000c1cf844c59870000000000009e4c82cb7085000000000000a64480a6f08300000000000055008006da82000000000000e44a809e2d82000000000000 +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5500807ceb81000000000000e3af805014820000000000002d7f8260a8820000000000007d5d8546a683000000000000febd889a0e8500000000000032018c60de86000000000000 +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 92cc8e1c16890000000000003157913ab18b00000000000034c8933db08e0000000000001c6b96ac0d92000000000000a85499b8c895000000000000d0d09c39de99000000000000 +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0fcba08b4a9e000000000000463fa5b109a300000000000054e6a93d18a80000000000000fedae1671ad0000000000007159b44a10b3000000000000c50fbae2f0b8000000000000 +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8e13c0fa0dbf0000000000008863c65f62c500000000000088edcce6e8cb0000000000002c86d3aa9bd2000000000000c239dae674d9000000000000ad0fe1086fe0000000000000 +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b234e8c484e7000000000000f0bdefdfaeee000000000000c99af737e8f500000000000015a2ff8a29fd0000000000007ea1075a6e040000000000000e360f92ae0b000000000000 +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 49221635e51200000000000097ca1c270c1a0000000000001f6923e21c210000000000003c242ae9102800000000000035fa30b2e32e00000000000054ca37378e35000000000000 +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 35503e090b3c0000000000007c5a444e554200000000000065cc498c67480000000000006da34e2f3b4e000000000000b40b53c1cd53000000000000d539573c1859000000000000 +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 83245b93175e00000000000008e15e8bc662000000000000638a622a2267000000000000db0b665a256b00000000000037976910ce6e000000000000f2536d521872000000000000 +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a94371f10175000000000000d10975838877000000000000445478eca87900000000000033ca7adf627b0000000000003e487cd2b27c000000000000c9eb7cac997d000000000000 +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 63bd7c6d157e00000000000039d47b0c277e0000000000002b897aa6cc7d0000000000002e257934087d000000000000edc177d4d87b0000000000000623760b417a000000000000 +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a82f74fa407800000000000090d57101db75000000000000611d6f5611730000000000002d4c6ce8e46f000000000000ea8469b75a6c00000000000095ac66c27368000000000000 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e45a63a334640000000000009e325f49a05f00000000000030685aabba5a000000000000da0355ff8755000000000000e9704f610d50000000000000e1b849494e4a000000000000 +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e4e7435a5044000000000000acee3d0b183e0000000000001e7537a2ab370000000000009b7a30400f310000000000002a2c298e4a2a000000000000b0bc212f6023000000000000 +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: bd581ad7591c000000000000101113893915000000000000061c0cc9080e000000000000bb55058fcb060000000000005acefe8e88ff0000000000003644f86846f8000000000000 +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1b7bf1240af10000000000002868eaf1dae900000000000099f4e270bee20000000000005b83dbb0bbdb000000000000ea40d4e4d6d4000000000000d85dcdd716ce000000000000 +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b7a7c6ac81c7000000000000cf17c0001cc10000000000000318ba11ecba000000000000e1ceb44af7b4000000000000df6ab0fa40af000000000000a8aaac93d0a9000000000000 +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 130fa9d4a7a40000000000000c3ea5a0ce9f0000000000000b1da110469b00000000000024bd9cc71297000000000000366f981839930000000000009a60948bba8f000000000000 +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: cfb890719d8c0000000000000b8c8df1e0890000000000001bf38a97898700000000000099fa884997850000000000005a4a871f0e840000000000009bf985d8ed82000000000000 +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 77eb844c3782000000000000c7498447eb81000000000000060c84ee0a820000000000007235843c95820000000000006dca8473898300000000000016bc85c4e784000000000000 +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: fc0a8767ae8600000000000056bf88b5dc88000000000000ec058b786f8b0000000000002f098eb1658e000000000000cfa69131ba91000000000000ffd995996d95000000000000 +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 90369a7e7a99000000000000508e9ee1de9d00000000000045dfa21597a20000000000006171a7b79da7000000000000839bacb5f0ac0000000000002f6db28889b2000000000000 +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 99d3b8a964b8000000000000ab92bf8b7cbe000000000000f45ac665ccc4000000000000b205cdfc4dcb000000000000c961d3d4fdd1000000000000e884d95cd3d8000000000000 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 7478df48cbdf000000000000f578e558dee600000000000012abebf606ee000000000000bf17f2af3ef500000000000005d2f86f80fc000000000000e1050022c503000000000000 +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3dc20709060b0000000000002002102e3e1200000000000089b818ca6619000000000000ae9121ee792000000000000086122a73702700000000000031fd314a472e000000000000 +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3c3339e2f5340000000000005bc23f11773b000000000000bec94577c641000000000000385b4b01dd47000000000000b4a5500eb74d0000000000005eef55254f53000000000000 +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 86235be6a058000000000000fc0b6052a75d000000000000688764545e620000000000004e8e68f7c066000000000000d83f6c5bcd6a0000000000009abd6fa87d6e000000000000 +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d41b7370d1710000000000006c1076aec3740000000000004d6d784553770000000000006d207a107d79000000000000402d7b96407b000000000000e3ef7b7d9a7c000000000000 + +No. Time Source Destination Protocol Length Info + 7779 4.839894 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 7779: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.330741000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.330741000 UTC + Epoch Arrival Time: 1750683232.330741000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001906000 seconds] + [Time delta from previous displayed frame: 0.001906000 seconds] + [Time since reference or first frame: 4.839894000 seconds] + Frame Number: 7779 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920719bd6560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 7755] + [Time from request: 0.017928000 seconds] + Isochronous transfer start frame: 1891705 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 7780 4.840117 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 7780: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.330964000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.330964000 UTC + Epoch Arrival Time: 1750683232.330964000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000223000 seconds] + [Time delta from previous displayed frame: 0.000223000 seconds] + [Time since reference or first frame: 4.840117000 seconds] + Frame Number: 7780 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920719bd6560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1891723 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 7781 4.841798 1.1.2 host USB 519 URB_ISOCHRONOUS out + +Frame 7781: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.332645000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.332645000 UTC + Epoch Arrival Time: 1750683232.332645000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001681000 seconds] + [Time delta from previous displayed frame: 0.001681000 seconds] + [Time since reference or first frame: 4.841798000 seconds] + Frame Number: 7781 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff92072024f5a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 7764] + [Time from request: 0.013813000 seconds] + Isochronous transfer start frame: 1891704 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + +No. Time Source Destination Protocol Length Info + 7782 4.841892 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 7782: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.332739000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.332739000 UTC + Epoch Arrival Time: 1750683232.332739000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000094000 seconds] + [Time delta from previous displayed frame: 0.000094000 seconds] + [Time since reference or first frame: 4.841892000 seconds] + Frame Number: 7782 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720df8010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 7758] + [Time from request: 0.017781000 seconds] + Isochronous transfer start frame: 1891707 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 7783 4.841960 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 7783: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.332807000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.332807000 UTC + Epoch Arrival Time: 1750683232.332807000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000068000 seconds] + [Time delta from previous displayed frame: 0.000068000 seconds] + [Time since reference or first frame: 4.841960000 seconds] + Frame Number: 7783 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720df8010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1891725 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 7784 4.841966 host 1.1.2 USB 3399 URB_ISOCHRONOUS out + +Frame 7784: 3399 bytes on wire (27192 bits), 3399 bytes captured (27192 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.332813000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.332813000 UTC + Epoch Arrival Time: 1750683232.332813000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000006000 seconds] + [Time delta from previous displayed frame: 0.000006000 seconds] + [Time since reference or first frame: 4.841966000 seconds] + Frame Number: 7784 + Frame Length: 3399 bytes (27192 bits) + Capture Length: 3399 bytes (27192 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff92072024f5a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2880 + Isochronous transfer start frame: 1891719 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1e8a7cc58a7d0000000000004afe7cb4107e000000000000ef397db32b7e000000000000b4187d1ddb7d00000000000020667c77207d000000000000c3eb7a4bfa7b000000000000 +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: dad278296c7a0000000000004e4376a47578000000000000ad8473f318760000000000007e9570a45773000000000000e3886dbb3470000000000000ce626ae3b26c000000000000 +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b70b6720d468000000000000db1f63659d64000000000000a2685e4f106000000000000044f758ce315b0000000000003bf752ea05560000000000006f934c2c9150000000000000 +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a91c46fbd74a000000000000998a3fb4df44000000000000dbe23851ac3e0000000000003c26328f4438000000000000c7b32bcaab3100000000000026f42571ea2a000000000000 +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: dde020ad0324000000000000d8051c13ff1c00000000000070cf167ee11500000000000092eb1064b10e0000000000002e4e0a7a74070000000000000b0a03df3100000000000000 +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b95bfb8eeef8000000000000be6ff35cb2f10000000000009d90eb2f81ea0000000000004fdee35963e3000000000000d37bdcff5cdc000000000000a94ed58775d5000000000000 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: af59cedeb1ce000000000000e189c78618c80000000000009ed5c0a8adc1000000000000c071ba2979bb0000000000007a63b49c7db500000000000080b0aefbc1af000000000000 +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ec42a9774aaa0000000000007d20a4681ba5000000000000cc589f413aa000000000000085099bd3a99b0000000000004c5397286f97000000000000f85d947b8c93000000000000 +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 341c922207900000000000005e37906adf8c000000000000803d8e921a8a0000000000004c218c50b98700000000000036098a39be85000000000000ad2b88fa2a84000000000000 +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b0d3864701830000000000009d0d86284182000000000000bfe8850eec81000000000000ae3186b30182000000000000ccc186028382000000000000076b87616e83000000000000 +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 87148851c38400000000000069cf88ce8086000000000000949f89eda588000000000000f7d68a1e308b00000000000005a38c5e1d8e000000000000b8268f0e6b91000000000000 +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8b46923e1595000000000000a81396851a990000000000000f879aca769d00000000000085ed9f8d27a2000000000000d009a63f27a7000000000000e08cac2373ac000000000000 +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3a2bb3b905b2000000000000b5a1b90edbb700000000000078c9bf70edbd000000000000fba4c57638c40000000000008250cb6ab5ca0000000000000710d1eb60d1000000000000 +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 16fed6cb33d8000000000000225cdd6728df000000000000c215e40d39e60000000000005210eb4c60ed000000000000b22bf2c696f4000000000000ae45f980d7fb000000000000 +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a3a600c01b03000000000000614c08265d0a000000000000b20810a596110000000000008b9d1711c01800000000000043de1ef4d41f0000000000008bbb2587cf26000000000000 +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b4212cfea72d000000000000b56832c45a340000000000007a943854e03a00000000000031c83efc3341000000000000f6f0442a5047000000000000a3bf4a3e304d000000000000 +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 652050f6cd520000000000004613555e26580000000000008493598d335d00000000000028ca5d48f261000000000000b2f061555c660000000000001b29661e716a000000000000 +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0e456a86296e0000000000001e356e17867100000000000005da71ee8074000000000000c5eb749419770000000000007d55770d4d7900000000000001ef7807197b000000000000 +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 64e579767d7c00000000000034767a11777d00000000000065ad7ac1067e000000000000d37c7ac72b7e0000000000003ef27912e57d000000000000ec2a79b3337d000000000000 +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c6697843187c0000000000000adf77d3927a000000000000d5927711a678000000000000f2fe765e527600000000000020bb75ce9a73000000000000519a73f68070000000000000 +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 76ae7041076d000000000000aa0b6dc431690000000000008db1680902650000000000003faf63517c60000000000000546c5eaca55b000000000000c70a59a98056000000000000 +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d59253d01251000000000000c4d64da05f4b00000000000054ce47ec6c45000000000000fb6041b33e3f00000000000098ad3a81db3800000000000019bc334e4732000000000000 +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 15b92c0a892b000000000000ee8625dca524000000000000ae201e72a31d000000000000c579167a87160000000000008fba0e7c590f0000000000003d25072e1d08000000000000 +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: acd4ffd5da00000000000000d1f3f89297f9000000000000df39f2c959f2000000000000d18bebaf27eb000000000000809de4a607e4000000000000726edd00ffdc000000000000 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2934d6ed13d60000000000000a4fcfe64ccf000000000000f9fbc8c3aec8000000000000e614c37a40c2000000000000be99bd9b05bc0000000000007266b86905b6000000000000 +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1229b30343b000000000000001c9ad9bc5aa000000000000e42aa88e8fa5000000000000ba65a29ba6a0000000000000b0c29ca40e9c0000000000003e7c97cccb97000000000000 +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d6cb922ce193000000000000aeb08e825290000000000000ae3d8bca228d00000000000053588804548a000000000000ed4086a5e9870000000000008f408545e585000000000000 +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3b1285a048840000000000001e5e85bd148300000000000011ad85874a82000000000000410f8666ec810000000000000864865af88100000000000027d286726f82000000000000 +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d85887775083000000000000f04388c69b840000000000003cbc8914508600000000000060bf8b986b88000000000000d6288ef7ec8a000000000000430a9106d18d000000000000 +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 284494f01691000000000000fab397d6b99400000000000000859ba6b8980000000000005cb69fb90e9d0000000000003d50a421b9a1000000000000920fa92cb3a6000000000000 +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b6f1ad14f9ab00000000000030f4b2cf86b10000000000001a1fb83c56b70000000000005ba0bd7564bd0000000000003d78c3cfa9c30000000000001dd1c97023ca000000000000 +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2491d01ecad00000000000002676d7be99d70000000000002e3edeb08ade00000000000097eae42a98e5000000000000cf9aebe0bcec0000000000007c6df288f0f3000000000000 +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ae8ef9192ffb000000000000af15013a720200000000000071ef0889b209000000000000f7cc108feb100000000000005b6418fd141800000000000061ad1f812b1f000000000000 +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e36d26612626000000000000d79b2ca9012d000000000000c3653253b633000000000000adfe377d3e3a000000000000569a3d529640000000000000e5184357b646000000000000 +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3a8a48229b4c000000000000f5004e303e52000000000000f0e353219c5700000000000045285adfae5c000000000000209b60c2736100000000000084e766bce465000000000000 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 927f6cdf006a000000000000d44671d0c16d000000000000ff0275112671000000000000abe077fc297400000000000052e5793acb76000000000000f9577bcc0779000000000000 +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f5717c78dd7a000000000000e8567d814b7c000000000000cd257e1f4f7d000000000000ba987e9de87d000000000000b57f7e84177e00000000000001f37dc0da7d000000000000 +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b8127db1337d0000000000000cd97b1c227c0000000000000e3d7a7fa77a000000000000653a7829c478000000000000fccb75aa7a76000000000000870973e0cc73000000000000 +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 70147010bc70000000000000e40f6d474d6d000000000000a9096a1c816900000000000056eb665e5c65000000000000cf566312e060000000000000561e5f29125c000000000000 +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3f3c5a40f65600000000000052b354d78f5100000000000051954e67e44b000000000000c63c485ef84500000000000039dc41a2d03f0000000000001f7e3b9e7239000000000000 + +No. Time Source Destination Protocol Length Info + 7785 4.843902 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 7785: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.334749000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.334749000 UTC + Epoch Arrival Time: 1750683232.334749000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001936000 seconds] + [Time delta from previous displayed frame: 0.001936000 seconds] + [Time since reference or first frame: 4.843902000 seconds] + Frame Number: 7785 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 7760] + [Time from request: 0.017920000 seconds] + Isochronous transfer start frame: 1891709 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 7786 4.843977 1.1.6 host USB 131099 URB_BULK in + +Frame 7786: 131099 bytes on wire (1048792 bits), 65535 bytes captured (524280 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.334824000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.334824000 UTC + Epoch Arrival Time: 1750683232.334824000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000075000 seconds] + [Time delta from previous displayed frame: 0.000075000 seconds] + [Time since reference or first frame: 4.843977000 seconds] + Frame Number: 7786 + Frame Length: 131099 bytes (1048792 bits) + Capture Length: 65535 bytes (524280 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.6] + [Destination: host] + USBPcap pseudoheader length: 27 + IRP ID: 0xffff92071af7c560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: URB_BULK (0x03) + Packet Data Length: 131072 + [Request in: 7354] + [Time from request: 0.297464000 seconds] + [bInterfaceClass: Vendor Specific (0xff)] +Leftover Capture Data […]: 010101010101000100010001010001010001000101010100000000000000000000000000000000000000000000000000000001000101010000000000000000000101010101010000010100010001010000010000010001000000000000000000000000000000000000 + +No. Time Source Destination Protocol Length Info + 7787 4.844582 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 7787: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.335429000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.335429000 UTC + Epoch Arrival Time: 1750683232.335429000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000605000 seconds] + [Time delta from previous displayed frame: 0.000605000 seconds] + [Time since reference or first frame: 4.844582000 seconds] + Frame Number: 7787 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1891727 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 7788 4.844617 host 1.1.6 USB 27 URB_BULK in + +Frame 7788: 27 bytes on wire (216 bits), 27 bytes captured (216 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.335464000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.335464000 UTC + Epoch Arrival Time: 1750683232.335464000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000035000 seconds] + [Time delta from previous displayed frame: 0.000035000 seconds] + [Time since reference or first frame: 4.844617000 seconds] + Frame Number: 7788 + Frame Length: 27 bytes (216 bits) + Capture Length: 27 bytes (216 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.6] + USBPcap pseudoheader length: 27 + IRP ID: 0xffff92071af7c560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: URB_BULK (0x03) + Packet Data Length: 0 + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 7789 4.845896 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 7789: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.336743000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.336743000 UTC + Epoch Arrival Time: 1750683232.336743000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001279000 seconds] + [Time delta from previous displayed frame: 0.001279000 seconds] + [Time since reference or first frame: 4.845896000 seconds] + Frame Number: 7789 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 7763] + [Time from request: 0.017915000 seconds] + Isochronous transfer start frame: 1891711 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 7790 4.846004 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 7790: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.336851000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.336851000 UTC + Epoch Arrival Time: 1750683232.336851000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000108000 seconds] + [Time delta from previous displayed frame: 0.000108000 seconds] + [Time since reference or first frame: 4.846004000 seconds] + Frame Number: 7790 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1891729 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 7791 4.846771 1.1.2 host USB 519 URB_ISOCHRONOUS out + +Frame 7791: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:53:52.337618000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:53:52.337618000 UTC + Epoch Arrival Time: 1750683232.337618000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000767000 seconds] + [Time delta from previous displayed frame: 0.000767000 seconds] + [Time since reference or first frame: 4.846771000 seconds] + Frame Number: 7791 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b65a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 7770] + [Time from request: 0.014804000 seconds] + Isochronous transfer start frame: 1891709 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) diff --git a/reverse_eng_dataset/24bit_48k_LINE_ORGAN_INST_4_NOTE_CHORD__PLAYBACK_SILENCE.txt b/reverse_eng_dataset/24bit_48k_LINE_ORGAN_INST_4_NOTE_CHORD__PLAYBACK_SILENCE.txt new file mode 100644 index 0000000..ee0a589 --- /dev/null +++ b/reverse_eng_dataset/24bit_48k_LINE_ORGAN_INST_4_NOTE_CHORD__PLAYBACK_SILENCE.txt @@ -0,0 +1,3816 @@ +No. Time Source Destination Protocol Length Info + 8168 5.182188 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 8168: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.502737000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.502737000 UTC + Epoch Arrival Time: 1750683145.502737000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000118000 seconds] + [Time delta from previous displayed frame: 0.000118000 seconds] + [Time since reference or first frame: 5.182188000 seconds] + Frame Number: 8168 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 8144] + [Time from request: 0.017763000 seconds] + Isochronous transfer start frame: 1804877 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 8169 5.182253 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 8169: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.502802000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.502802000 UTC + Epoch Arrival Time: 1750683145.502802000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000065000 seconds] + [Time delta from previous displayed frame: 0.000065000 seconds] + [Time since reference or first frame: 5.182253000 seconds] + Frame Number: 8169 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 8195] + Isochronous transfer start frame: 1804895 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 8170 5.182260 host 1.1.2 USB 3399 URB_ISOCHRONOUS out + +Frame 8170: 3399 bytes on wire (27192 bits), 3399 bytes captured (27192 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.502809000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.502809000 UTC + Epoch Arrival Time: 1750683145.502809000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000007000 seconds] + [Time delta from previous displayed frame: 0.000007000 seconds] + [Time since reference or first frame: 5.182260000 seconds] + Frame Number: 8170 + Frame Length: 3399 bytes (27192 bits) + Capture Length: 3399 bytes (27192 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b65a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2880 + [Response in: 8191] + Isochronous transfer start frame: 1804889 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ee6003b1ffff0000000000000534032d00000000000000000ca602a4ffff00000000000005de01c2ffff00000000000048f500310000000000000000d5b0ffc8ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 474afe1700000000000000004e34fdb8ffff000000000000efb3fc09000000000000000010a0fce9ffff000000000000009bfc8fffff000000000000b27afcf7ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ac36fcdbffff00000000000043defbdfffff0000000000001a8bfb74ffff0000000000001b55fb2300000000000000009c7afbb3ffff000000000000bd8cfb210000000000000000 +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 774dfb70ffff0000000000005301fb31000000000000000021c6fa59ffff00000000000089bffa2c0000000000000000b9cbfac5ffff00000000000014cffaf9ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e08dfa8fffff0000000000001bfbf95affff000000000000f664f9ffffff000000000000de23f9d8ffff00000000000042a3f9fbffff000000000000f1a4fab8ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4db5fb010000000000000000b6ebfcbeffff0000000000002451fe2300000000000000001f97ff7effff000000000000f7600097ffff00000000000099ab00c5ffff000000000000 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d5a000ccffff000000000000d285009affff0000000000001ea500a8ffff000000000000840f01020000000000000000cfb501dbffff000000000000a54c020f0000000000000000 +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 7ba802b8ffff0000000000007ef2020c00000000000000001a4e037dffff00000000000025b003b0ffff000000000000c80004010000000000000000d82404c2ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 090804000000000000000000a49503bcffff00000000000084e20259ffff000000000000fc3502d5ffff00000000000046cc01a7ffff000000000000b6a901210000000000000000 +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6d8301f6ffff000000000000c61a010c00000000000000002e6c0082ffff000000000000c8b0fffaffff000000000000c018fff2ffff000000000000fbc3fef7ffff000000000000 +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3b9dfe5fffff00000000000057bbfe050000000000000000410dff26ffff0000000000001499ffc4ffff000000000000c78100c3ffff000000000000857501dfffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 57f701bfffff00000000000061cf01fbffff000000000000af610175ffff000000000000e3da00d6ffff0000000000002b3d0081ffff000000000000a076ffe5ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 988dfe93ffff00000000000042c5fdbdffff000000000000c50ffdd3ffff000000000000126afcfdffff0000000000000ff9fbc4ffff00000000000011e7fbd6ffff000000000000 +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 29ddfbfeffff00000000000003c2fb07000000000000000026d8fbfbffff0000000000000349fc120000000000000000661efd710000000000000000525efe030000000000000000 +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c6b4ff38000000000000000067a9008cffff000000000000a02d01f4ffff000000000000645a0140000000000000000077bc0168ffff000000000000ada602430000000000000000 +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: cdb703cbffff000000000000b99304d70000000000000000022505100000000000000000599d05cfffff000000000000dfc705f2ffff0000000000004aa105cdffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: de2105280000000000000000474e045affff000000000000a97f0390ffff000000000000e6090395ffff0000000000003e1703c8ffff000000000000878f037bffff000000000000 +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: bef403fbffff0000000000006cf603f2ffff00000000000078dd030100000000000000007ae6038b00000000000000006ef4033effff000000000000cccf03100000000000000000 +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: fe7c03c5ffff0000000000000cee02c9ffff000000000000b03802c5ffff000000000000d27d018bffff000000000000aa0c0199ffff0000000000008cf700e5ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f6e80094ffff000000000000a56900e2ffff000000000000564fff9bffff000000000000b6e5fd130000000000000000d486fc95ffff0000000000000c7bfb580000000000000000 +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4dd6faa0ffff000000000000557bfae6ffff0000000000002749fa010000000000000000d836fadbffff000000000000f03ffaafffff000000000000e670fac8ffff000000000000 +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ee6bfaaaffff000000000000af2afaf1ffff0000000000009be8f9a6ffff0000000000004efbf93f0000000000000000ee7ffaceffff0000000000004737fbf5ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 72e4fbe8ffff0000000000007553fcffffff0000000000003904fdbdffff00000000000019e4fd7fffff000000000000c10eff060000000000000000dd890081ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3df0011f000000000000000068bf0225ffff0000000000008ed30218000000000000000023b3027affff000000000000ef4f025c0000000000000000b7ff0179ffff000000000000 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 05d0013b00000000000000006ebd0174ffff000000000000e6bc015c0000000000000000b86a0180ffff00000000000047bd000c0000000000000000d31400190000000000000000 +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 67c7fff6ffff000000000000d1b1ffa0ffff000000000000b2c1ffcfffff000000000000774d001e0000000000000000703501d1ffff000000000000ba2102ddffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 11e4026cffff0000000000001f1803faffff00000000000004ce0263ffff000000000000841e026e000000000000000030670142ffff000000000000c2d7002c0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 25530018ffff0000000000008c9cff250000000000000000c390feb1ffff0000000000001f9dfd1a000000000000000009e7fca9ffff0000000000006e5cfcf8ffff000000000000 +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1d07fca5ffff0000000000000804fc5600000000000000004127fc72ffff0000000000008966fcacffff0000000000001cc5fcb0ffff00000000000092adfdc9ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2c1fff9fffff0000000000001fd300380000000000000000ed6202060000000000000000f19003d4ffff000000000000d36304770000000000000000bdcf045b0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 191b05efffff0000000000005c6205f0ffff0000000000009da605abffff000000000000dfbf05040000000000000000b0a3058fffff000000000000928905c0ffff000000000000 +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 637e05e6ffff0000000000004612059cffff0000000000001d07042a000000000000000001af02b1ffff000000000000fa8201baffff00000000000002df00d3ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 51be00a7ffff000000000000d9b100ebffff0000000000009d7500a3ffff000000000000ed1700f8ffff000000000000e5afffa6ffff000000000000de5fff240000000000000000 +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 784aff99ffff0000000000003939ff250000000000000000a306ff69ffff0000000000005de0fe470000000000000000c2c8fe74ffff00000000000003d5feebffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 15f2fe8fffff000000000000f719ff2400000000000000009b34ffa5ffff0000000000002f28ff6000000000000000006aeefeacffff00000000000079b3fed2ffff000000000000 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: feebfe1300000000000000005c88ff290000000000000000e3f5ff63ffff0000000000007b560018000000000000000004f00097ffff00000000000082ba01290000000000000000 +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 149402bdffff0000000000000d1d03340000000000000000695903b1ffff0000000000000f31030f0000000000000000aaf30282ffff000000000000a5db02d2ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 232203b3ffff000000000000039d0335000000000000000000b9038affff000000000000d2bc031600000000000000005e080488ffff00000000000011b804b80000000000000000 +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 106d05f4ffff00000000000062df05baffff000000000000e9e405e4ffff000000000000d466053affff000000000000deaa04e3ffff00000000000021cd032cffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 373303d5ffff0000000000000ed9022fffff000000000000988202480000000000000000782a029cffff000000000000b2b901e3ffff000000000000440601620000000000000000 + +No. Time Source Destination Protocol Length Info + 8171 5.183136 1.1.6 host USB 131099 URB_BULK in + +Frame 8171: 131099 bytes on wire (1048792 bits), 65535 bytes captured (524280 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.503685000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.503685000 UTC + Epoch Arrival Time: 1750683145.503685000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000876000 seconds] + [Time delta from previous displayed frame: 0.000876000 seconds] + [Time since reference or first frame: 5.183136000 seconds] + Frame Number: 8171 + Frame Length: 131099 bytes (1048792 bits) + Capture Length: 65535 bytes (524280 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.6] + [Destination: host] + USBPcap pseudoheader length: 27 + IRP ID: 0xffff92071aa2e010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: URB_BULK (0x03) + Packet Data Length: 131072 + [Request in: 7738] + [Time from request: 0.298059000 seconds] + [bInterfaceClass: Vendor Specific (0xff)] +Leftover Capture Data […]: 000000000001000101010101010000000001000001000100000000000000000000000000000000000000000000000000000000000101010000000000000000000000000000010100000100010001000101010000010000000000000000000000000000000000000000 + +No. Time Source Destination Protocol Length Info + 8172 5.184187 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 8172: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.504736000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.504736000 UTC + Epoch Arrival Time: 1750683145.504736000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001051000 seconds] + [Time delta from previous displayed frame: 0.001051000 seconds] + [Time since reference or first frame: 5.184187000 seconds] + Frame Number: 8172 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 8146] + [Time from request: 0.017885000 seconds] + Isochronous transfer start frame: 1804879 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 8173 5.184424 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 8173: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.504973000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.504973000 UTC + Epoch Arrival Time: 1750683145.504973000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000237000 seconds] + [Time delta from previous displayed frame: 0.000237000 seconds] + [Time since reference or first frame: 5.184424000 seconds] + Frame Number: 8173 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 8198] + Isochronous transfer start frame: 1804897 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 8174 5.184464 host 1.1.6 USB 27 URB_BULK in + +Frame 8174: 27 bytes on wire (216 bits), 27 bytes captured (216 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.505013000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.505013000 UTC + Epoch Arrival Time: 1750683145.505013000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000040000 seconds] + [Time delta from previous displayed frame: 0.000040000 seconds] + [Time since reference or first frame: 5.184464000 seconds] + Frame Number: 8174 + Frame Length: 27 bytes (216 bits) + Capture Length: 27 bytes (216 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.6] + USBPcap pseudoheader length: 27 + IRP ID: 0xffff92071af7c010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: URB_BULK (0x03) + Packet Data Length: 0 + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 8175 5.186187 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 8175: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.506736000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.506736000 UTC + Epoch Arrival Time: 1750683145.506736000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001723000 seconds] + [Time delta from previous displayed frame: 0.001723000 seconds] + [Time since reference or first frame: 5.186187000 seconds] + Frame Number: 8175 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff92072203f560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 8149] + [Time from request: 0.017880000 seconds] + Isochronous transfer start frame: 1804881 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 8176 5.186306 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 8176: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.506855000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.506855000 UTC + Epoch Arrival Time: 1750683145.506855000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000119000 seconds] + [Time delta from previous displayed frame: 0.000119000 seconds] + [Time since reference or first frame: 5.186306000 seconds] + Frame Number: 8176 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff92072203f560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 8201] + Isochronous transfer start frame: 1804899 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 8177 5.187064 1.1.2 host USB 519 URB_ISOCHRONOUS out + +Frame 8177: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.507613000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.507613000 UTC + Epoch Arrival Time: 1750683145.507613000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000758000 seconds] + [Time delta from previous displayed frame: 0.000758000 seconds] + [Time since reference or first frame: 5.187064000 seconds] + Frame Number: 8177 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b6050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 8156] + [Time from request: 0.014765000 seconds] + Isochronous transfer start frame: 1804879 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + +No. Time Source Destination Protocol Length Info + 8178 5.188186 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 8178: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.508735000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.508735000 UTC + Epoch Arrival Time: 1750683145.508735000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001122000 seconds] + [Time delta from previous displayed frame: 0.001122000 seconds] + [Time since reference or first frame: 5.188186000 seconds] + Frame Number: 8178 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff92072203f010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 8152] + [Time from request: 0.017806000 seconds] + Isochronous transfer start frame: 1804883 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 8179 5.188304 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 8179: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.508853000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.508853000 UTC + Epoch Arrival Time: 1750683145.508853000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000118000 seconds] + [Time delta from previous displayed frame: 0.000118000 seconds] + [Time since reference or first frame: 5.188304000 seconds] + Frame Number: 8179 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff92072203f010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 8203] + Isochronous transfer start frame: 1804901 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 8180 5.188318 host 1.1.2 USB 3399 URB_ISOCHRONOUS out + +Frame 8180: 3399 bytes on wire (27192 bits), 3399 bytes captured (27192 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.508867000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.508867000 UTC + Epoch Arrival Time: 1750683145.508867000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000014000 seconds] + [Time delta from previous displayed frame: 0.000014000 seconds] + [Time since reference or first frame: 5.188318000 seconds] + Frame Number: 8180 + Frame Length: 3399 bytes (27192 bits) + Capture Length: 3399 bytes (27192 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b6050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2880 + [Response in: 8197] + Isochronous transfer start frame: 1804894 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f1000091ffff0000000000003dfbfe1700000000000000007543fe8effff0000000000002be2fd27000000000000000080cdfde1ffff0000000000007e15fe110000000000000000 +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f7d2febbffff00000000000025c2ff320000000000000000465000d4ffff000000000000a75600e1ffff000000000000241100ebffff0000000000005aafffccffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2144ffbfffff00000000000071a4feb1ffff0000000000000db4fdccffff000000000000449afc59ffff000000000000907dfb4000000000000000002589facaffff000000000000 +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 36f5f9f2ffff000000000000f2bef91c00000000000000007187f992ffff0000000000003c3af9dcffff0000000000001c04f9a2ffff000000000000b9eef81a0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9514f9d6ffff000000000000af91f91f00000000000000000164faa7ffff000000000000826bfb0800000000000000005977fcc5ffff000000000000b22ffdf6ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d495fdd6ffff00000000000078fafdddffff000000000000a072fec6ffff000000000000c10affedffff00000000000075caff570000000000000000a8af0070ffff000000000000 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 277c016e00000000000000008e13028bffff000000000000325402210000000000000000251802ecffff000000000000c18101b7ffff000000000000e4d6000c0000000000000000 +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 7ab7000e0000000000000000334e0196ffff000000000000f81f02f7ffff00000000000084610287ffff0000000000005a1d02b6ffff000000000000ceca01fcffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 7c7f01ffffff0000000000005b40014b00000000000000007df0000a0000000000000000979b00ebffff000000000000c52a00f2ffff000000000000589aff160000000000000000 +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 11fcfea9ffff000000000000da92fed9ffff0000000000008f40fe9fffff00000000000074dbfd1f0000000000000000946bfd8affff00000000000033f4fce0ffff000000000000 +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 954dfc1e00000000000000002864fb0000000000000000006877faadffff000000000000df7ff9c9ffff00000000000047acf8e7ffff0000000000005502f8000000000000000000 +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 20cbf7a2ffff000000000000ff2bf82c000000000000000051bbf88fffff0000000000002ef0f8dfffff0000000000001bc7f80f0000000000000000967cf8beffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 244ff8b5ffff0000000000001d89f88bffff000000000000f61bf9180000000000000000a5e2f9fbffff0000000000004799fa3c0000000000000000cf70fb96ffff000000000000 +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 35a0fc6300000000000000004e42fe27000000000000000059ecff410000000000000000de0c0135000000000000000059a00179ffff0000000000004b0102100000000000000000 +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: fe4802d9ffff000000000000c05102c7ffff000000000000a223020c0000000000000000c2d801bcffff000000000000dfba01b9ffff00000000000060b601340000000000000000 +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: eab801f8ffff0000000000002eab019bffff000000000000708801f9ffff000000000000163e018affff000000000000faec00b7ffff0000000000008ded0087ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9b5301edffff0000000000007b2802e4ffff000000000000b73203acffff000000000000761b0490ffff0000000000003c7d04370000000000000000236804e5ffff000000000000 +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ede403bcffff0000000000007e550397ffff00000000000086d702c7ffff0000000000008e2f02b5ffff000000000000663d01f4ffff0000000000005e47009cffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4e97ff690000000000000000cb16ffe4ffff00000000000058bcfe900000000000000000dc6efe0c0000000000000000483efef2ffff0000000000001047feefffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: df98feaaffff0000000000007960ffd0ffff000000000000e5a2000b0000000000000000dbfe015900000000000000008c2a03caffff000000000000975a043f0000000000000000 +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2375051a0000000000000000453806650000000000000000797506c8ffff000000000000967106670000000000000000cf760661ffff000000000000b38a06010000000000000000 +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 339206faffff000000000000bd7106f7ffff000000000000886706f1ffff0000000000005c21062500000000000000008d7b0576ffff0000000000009a8d04190000000000000000 +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 978a0398ffff00000000000010b5029cffff000000000000392002e0ffff000000000000e4e20126000000000000000091910190ffff000000000000e20f01bfffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ed6f00b7ffff000000000000d10c00f2ffff0000000000000f140067ffff0000000000008c33005b00000000000000006917000600000000000000009cd1ff180000000000000000 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4390ffd1ffff0000000000000d50ff9fffff000000000000ab0dff130000000000000000f9e5fe8affff000000000000bad8fe5700000000000000003ef3fe86ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f927ff1c00000000000000002961ffb5ffff0000000000000e93ff1a000000000000000023acffefffff000000000000c27cff5100000000000000008b5cffb8ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b07effe3ffff000000000000401100bdffff0000000000001ce90026000000000000000040c101b4ffff0000000000001c790233000000000000000057b9022a0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6ba702edffff00000000000008720211000000000000000019a0020c0000000000000000fd3903efffff00000000000065cc03280000000000000000410f0471ffff000000000000 +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c62404f2ffff000000000000bc7504d5ffff000000000000b61b05d8ffff000000000000f5e405f9ffff00000000000094630662ffff000000000000fe7506b6ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 751006f8ffff000000000000406d05daffff0000000000009dbd04b1ffff000000000000a11c04deffff0000000000004c4f03abffff000000000000ed9902ddffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0f4b02e3ffff000000000000f93f028cffff000000000000281a02caffff0000000000004d8601ecffff000000000000be9b0083ffff0000000000008db2ff5c0000000000000000 +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3221fff3ffff0000000000005114ff0a000000000000000015b8ffc3ffff000000000000b3f500ceffff0000000000004d10020c0000000000000000218502dcffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 637c022300000000000000005f200272ffff0000000000001b810119000000000000000095bf00a3ffff0000000000005ee5ffecffff00000000000088effe8cffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4dc7fdceffff000000000000d396fc0200000000000000006a95fbb6ffff000000000000f9e3fa5400000000000000008f47faa1ffff000000000000828df9f4ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4620f9010000000000000000181df9b3ffff000000000000c66ff9d4ffff0000000000001ad0f9ceffff000000000000111dfaaeffff000000000000b76efae1ffff000000000000 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 56ecfab2ffff000000000000d3c3fbe8ffff0000000000008cdffc84ffff0000000000005ffefde0ffff00000000000078b8fea2ffff000000000000181dff1d0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5581ffebffff000000000000ec0f003e00000000000000001bab00b4ffff000000000000b14601c9ffff0000000000009fcd01c9ffff000000000000873402d4ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a964020d0000000000000000662e02bfffff000000000000d4f301c5ffff0000000000008ceb01cfffff000000000000e0240275ffff000000000000b54902d7ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 113f02baffff000000000000ba1d02fbffff000000000000cee001dbffff000000000000f8c201e8ffff000000000000558101010000000000000000541f0176ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 01a7003d0000000000000000a81500a5ffff000000000000439aff300000000000000000a95affd0ffff000000000000ba30ff34000000000000000005c0feddffff000000000000 + +No. Time Source Destination Protocol Length Info + 8181 5.190187 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 8181: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.510736000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.510736000 UTC + Epoch Arrival Time: 1750683145.510736000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001869000 seconds] + [Time delta from previous displayed frame: 0.001869000 seconds] + [Time since reference or first frame: 5.190187000 seconds] + Frame Number: 8181 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720b96560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 8155] + [Time from request: 0.017912000 seconds] + Isochronous transfer start frame: 1804885 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 8182 5.190397 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 8182: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.510946000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.510946000 UTC + Epoch Arrival Time: 1750683145.510946000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000210000 seconds] + [Time delta from previous displayed frame: 0.000210000 seconds] + [Time since reference or first frame: 5.190397000 seconds] + Frame Number: 8182 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720b96560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 8208] + Isochronous transfer start frame: 1804903 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 8183 5.192064 1.1.2 host USB 519 URB_ISOCHRONOUS out + +Frame 8183: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.512613000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.512613000 UTC + Epoch Arrival Time: 1750683145.512613000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001667000 seconds] + [Time delta from previous displayed frame: 0.001667000 seconds] + [Time since reference or first frame: 5.192064000 seconds] + Frame Number: 8183 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff92072024f5a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 8164] + [Time from request: 0.013759000 seconds] + Isochronous transfer start frame: 1804884 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + +No. Time Source Destination Protocol Length Info + 8184 5.192185 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 8184: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.512734000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.512734000 UTC + Epoch Arrival Time: 1750683145.512734000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000121000 seconds] + [Time delta from previous displayed frame: 0.000121000 seconds] + [Time since reference or first frame: 5.192185000 seconds] + Frame Number: 8184 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720b96010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 8158] + [Time from request: 0.017758000 seconds] + Isochronous transfer start frame: 1804887 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 8185 5.192302 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 8185: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.512851000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.512851000 UTC + Epoch Arrival Time: 1750683145.512851000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000117000 seconds] + [Time delta from previous displayed frame: 0.000117000 seconds] + [Time since reference or first frame: 5.192302000 seconds] + Frame Number: 8185 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720b96010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1804905 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 8186 5.192319 host 1.1.2 USB 3399 URB_ISOCHRONOUS out + +Frame 8186: 3399 bytes on wire (27192 bits), 3399 bytes captured (27192 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.512868000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.512868000 UTC + Epoch Arrival Time: 1750683145.512868000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000017000 seconds] + [Time delta from previous displayed frame: 0.000017000 seconds] + [Time since reference or first frame: 5.192319000 seconds] + Frame Number: 8186 + Frame Length: 3399 bytes (27192 bits) + Capture Length: 3399 bytes (27192 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff92072024f5a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2880 + [Response in: 8205] + Isochronous transfer start frame: 1804899 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d02efecfffff000000000000adcbfdc1ffff0000000000005674fdc8ffff000000000000f001fd080000000000000000aa40fc000000000000000000ff21fbe4ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6bf4f9b7ffff000000000000eecff81200000000000000008beff7acffff000000000000588cf72c00000000000000006f8af7e2ffff000000000000dbb6f7a7ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 94c3f7540000000000000000dbdbf7e4ffff0000000000000ce3f712000000000000000067e8f7a100000000000000005d30f88effff00000000000022a7f8600000000000000000 +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ef5ff99bffff000000000000b529fae1ffff0000000000008838fbceffff0000000000004eddfcf8ffff000000000000defafe3f000000000000000085ac00410000000000000000 +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c58e01020000000000000000f5f301c2ffff000000000000b5f701fdffff000000000000c4e4015100000000000000001e9001180000000000000000890201170000000000000000 +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5869001e000000000000000053ddfff6ffff000000000000d6b0ff4600000000000000000dc4ffffffff00000000000071d1fffcffff000000000000b470ff73ffff000000000000 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 41aefeebffff000000000000b230fe8effff0000000000008a3dfe1700000000000000009bd4feabffff00000000000036c7fffeffff000000000000eac300180000000000000000 +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 7d8d016d000000000000000088ec0180ffff0000000000007dee01e0ffff0000000000004fe1017dffff000000000000c0ce013000000000000000001f7f01a3ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2fe700cfffff0000000000009e0400bbffff000000000000fffafe94ffff000000000000ed00fe0b0000000000000000153dfdc9ffff000000000000f3b2fc710000000000000000 +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9e57fcd4ffff000000000000c135fc600000000000000000884afcdbffff0000000000000adbfc3b000000000000000098c6fddcffff00000000000056a0fe070000000000000000 +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b12bff5500000000000000002fd9ffdcffff00000000000072f100440000000000000000c05602efffff00000000000012a8034800000000000000003d4904320000000000000000 +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 795a045c0000000000000000363e042d0000000000000000f02e04eeffff0000000000003b4004260000000000000000ac9c04140000000000000000cfd604f6ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ef9b04660000000000000000de1d048bffff000000000000eb87031c0000000000000000f8c402a5ffff00000000000060e601f7ffff0000000000006b3301000000000000000000 +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 719800300000000000000000851900a9ffff0000000000002590fffaffff0000000000005cf4fefaffff000000000000c38bfe0700000000000000006459fe420000000000000000 +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 761cfeebffff000000000000c3d0fdc0ffff0000000000005abafd550000000000000000e1c7fdb4ffff000000000000b8dcfde8ffff000000000000d9dffd0b0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8ccafd01000000000000000070a9fd050000000000000000baabfdbcffff0000000000003f3dfe6f0000000000000000003effe6ffff000000000000a63300e2ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c46f00030000000000000000690600deffff0000000000008a7dff0e0000000000000000ec37ffcbffff0000000000006934ff060000000000000000ef7dfff5ffff000000000000 +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d50300f3ffff0000000000001aaa00090000000000000000eb0c01070000000000000000871f010600000000000000008f1701e7ffff000000000000320b01720000000000000000 +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 181a0195ffff0000000000002d460102000000000000000063bb01c9ffff000000000000cd4902f8ffff00000000000029f70234000000000000000082c60393ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 437a044a000000000000000026e704e0ffff0000000000005ac4045f00000000000000003762040f0000000000000000851a04c9ffff00000000000035e803c2ffff000000000000 +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ed6203060000000000000000008c027effff0000000000000fb0011100000000000000002a1701d7ffff00000000000052d600060000000000000000a2c000c4ffff000000000000 +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 086d00ccffff000000000000c2c0ff180000000000000000d80affd5ffff000000000000ff8ffe460000000000000000faaafe0000000000000000005b5eff770000000000000000 +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ec1a000200000000000000001ca300290000000000000000821901ccffff0000000000004284013b0000000000000000ddbb01b2ffff000000000000b89401660000000000000000 +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 880901c7ffff000000000000592f005500000000000000008e33ff0c0000000000000000e21cfe080000000000000000471ffd2c00000000000000009a8efce7ffff000000000000 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4a20fc0f00000000000000004a85fb560000000000000000a1d9faecffff0000000000000778fa3f0000000000000000a36efa1e000000000000000071abfa2b0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: dd05fb6d0000000000000000ce29fbf1ffff000000000000262bfbbcffff0000000000007267fb7600000000000000005227fc93ffff000000000000e679fd000000000000000000 +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: cfbdfeddffff000000000000a481ff0c0000000000000000c6040024000000000000000041aa00edffff0000000000002a9b01d5ffff000000000000a38602140000000000000000 +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: bb67030700000000000000005c2204cbffff000000000000eab3044c0000000000000000723e05c2ffff000000000000f8d105a20000000000000000087d069dffff000000000000 +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e2f106430000000000000000e7f606deffff00000000000049c706fdffff000000000000509206070000000000000000f44006220000000000000000fec705230000000000000000 +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4732051b0000000000000000e0c204fbffff000000000000115804b1ffff000000000000c0d4030d00000000000000007e5903c2ffff000000000000820203a3ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 97b502a80000000000000000b91f02bbffff000000000000498001270000000000000000f61201f1ffff00000000000023fe000f00000000000000000e3401070000000000000000 +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: da46011e000000000000000081c000d3ffff0000000000007294ff7a00000000000000005f22fed3ffff000000000000f1d8fc850000000000000000ee27fc0d0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1becfbe8ffff000000000000a6b9fb630000000000000000669dfb1c000000000000000014bcfb19000000000000000063c2fbaa0000000000000000eda4fbefffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2f83fb430000000000000000f377fbe5ffff00000000000061c4fbd8ffff000000000000657efc1a0000000000000000e379fdf5ffff000000000000eec8fe150000000000000000 +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: bd510086000000000000000076be010a00000000000000003bda024f0000000000000000cfad03540000000000000000793f04010000000000000000d98804320000000000000000 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1699040300000000000000006a5104e7ffff000000000000ada903f9ffff0000000000009cbe02e4ffff000000000000bdea0136000000000000000061a001beffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: fcea01300000000000000000c64c02a1ffff0000000000005b1502ccffff0000000000006a7d01ffffff000000000000e4f400d2ffff0000000000003dc400190000000000000000 +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5eff00210000000000000000c18b01210000000000000000c63402e0ffff00000000000004c7023d0000000000000000d33003f2ffff0000000000000181036b0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 599e032b0000000000000000804803220000000000000000c1a102edffff000000000000d9db010a0000000000000000ab36017affff000000000000dd6b00120000000000000000 +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: fa8cff9cffff00000000000057acfe29000000000000000075eefde2ffff000000000000c166fd1d00000000000000007711fde9ffff0000000000008a61fd230000000000000000 + +No. Time Source Destination Protocol Length Info + 8187 5.194188 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 8187: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.514737000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.514737000 UTC + Epoch Arrival Time: 1750683145.514737000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001869000 seconds] + [Time delta from previous displayed frame: 0.001869000 seconds] + [Time since reference or first frame: 5.194188000 seconds] + Frame Number: 8187 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720bdb050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 8160] + [Time from request: 0.017911000 seconds] + Isochronous transfer start frame: 1804889 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 8188 5.194397 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 8188: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.514946000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.514946000 UTC + Epoch Arrival Time: 1750683145.514946000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000209000 seconds] + [Time delta from previous displayed frame: 0.000209000 seconds] + [Time since reference or first frame: 5.194397000 seconds] + Frame Number: 8188 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720bdb050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1804907 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 8189 5.196186 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 8189: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.516735000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.516735000 UTC + Epoch Arrival Time: 1750683145.516735000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001789000 seconds] + [Time delta from previous displayed frame: 0.001789000 seconds] + [Time since reference or first frame: 5.196186000 seconds] + Frame Number: 8189 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920719bd6560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 8163] + [Time from request: 0.017904000 seconds] + Isochronous transfer start frame: 1804891 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 8190 5.196285 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 8190: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.516834000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.516834000 UTC + Epoch Arrival Time: 1750683145.516834000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000099000 seconds] + [Time delta from previous displayed frame: 0.000099000 seconds] + [Time since reference or first frame: 5.196285000 seconds] + Frame Number: 8190 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920719bd6560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1804909 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 8191 5.197063 1.1.2 host USB 519 URB_ISOCHRONOUS out + +Frame 8191: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.517612000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.517612000 UTC + Epoch Arrival Time: 1750683145.517612000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000778000 seconds] + [Time delta from previous displayed frame: 0.000778000 seconds] + [Time since reference or first frame: 5.197063000 seconds] + Frame Number: 8191 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b65a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 8170] + [Time from request: 0.014803000 seconds] + Isochronous transfer start frame: 1804889 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + +No. Time Source Destination Protocol Length Info + 8192 5.198185 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 8192: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.518734000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.518734000 UTC + Epoch Arrival Time: 1750683145.518734000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001122000 seconds] + [Time delta from previous displayed frame: 0.001122000 seconds] + [Time since reference or first frame: 5.198185000 seconds] + Frame Number: 8192 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720df8010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 8166] + [Time from request: 0.017786000 seconds] + Isochronous transfer start frame: 1804893 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 8193 5.198283 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 8193: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.518832000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.518832000 UTC + Epoch Arrival Time: 1750683145.518832000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000098000 seconds] + [Time delta from previous displayed frame: 0.000098000 seconds] + [Time since reference or first frame: 5.198283000 seconds] + Frame Number: 8193 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720df8010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1804911 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 8194 5.198305 host 1.1.2 USB 3399 URB_ISOCHRONOUS out + +Frame 8194: 3399 bytes on wire (27192 bits), 3399 bytes captured (27192 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.518854000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.518854000 UTC + Epoch Arrival Time: 1750683145.518854000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000022000 seconds] + [Time delta from previous displayed frame: 0.000022000 seconds] + [Time since reference or first frame: 5.198305000 seconds] + Frame Number: 8194 + Frame Length: 3399 bytes (27192 bits) + Capture Length: 3399 bytes (27192 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b65a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2880 + Isochronous transfer start frame: 1804904 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 704cfedeffff0000000000008454ff83ffff00000000000036ccff1c0000000000000000eee2ff7dffff00000000000089f0ff390000000000000000585a00dbffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 733601310000000000000000c54002b1ffff0000000000002df8026a0000000000000000662e03a3ffff0000000000005e09037d00000000000000000fe60286ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: aff4027e00000000000000005de902e0ffff000000000000af9b02900000000000000000f8180200000000000000000040ce012100000000000000003f9b01f5ffff000000000000 +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 655f0115000000000000000026d0002a0000000000000000d5cbff0d0000000000000000edb2fefbffff00000000000024bafd250000000000000000841bfd670000000000000000 +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2cddfcdcffff0000000000003daffc190000000000000000194ffc54000000000000000031f3fbe6ffff000000000000d99cfb4200000000000000007355fba8ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6221fb530000000000000000680ffbe2ffff000000000000ad10fb280000000000000000e508fbc9ffff000000000000830ffb6a00000000000000008e3cfbfbffff000000000000 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6de4fb100000000000000000ead3fc9affff0000000000007a7bfd4c00000000000000008d78fd9dffff0000000000005e2afdfcffff00000000000037dffc100000000000000000 +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 41c8fc2f0000000000000000c2d1fc100000000000000000a3eefccaffff0000000000004e3bfdeeffff000000000000a7b3fd0400000000000000009a4efe030000000000000000 +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2cf2fe520000000000000000c682ff300000000000000000e6b1fff1ffff00000000000063b3ffc1000000000000000047edff180000000000000000f89300260000000000000000 +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 646201fbffff000000000000e1240235000000000000000059c4024100000000000000007a72032700000000000000007cea03110000000000000000980904e4ffff000000000000 +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f20f045b00000000000000007ae803120000000000000000249303890000000000000000edec02c8ffff000000000000a148024f0000000000000000c0ad01510000000000000000 +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d43d01caffff000000000000d838016600000000000000000b54013d0000000000000000365601260000000000000000b7fc00330000000000000000177c00b9ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 916f00570000000000000000730801e6ffff00000000000029a701b50000000000000000f30702190000000000000000fd2b022b0000000000000000645f023e0000000000000000 +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c49202370000000000000000c2aa02bdffff000000000000ca7602290000000000000000c5c6014d000000000000000091ea000d000000000000000065ddffa10000000000000000 +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 20cffebcffff00000000000018d4fd8b00000000000000005ecafc050000000000000000afc0fb0f00000000000000000df3fa3b0000000000000000d978fa310000000000000000 +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 294ffa0c00000000000000008075fa5c0000000000000000c6bafa24000000000000000042d4fa22000000000000000031adfa7c0000000000000000535afa290000000000000000 +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c459fa6e00000000000000006d23fbeaffff0000000000008278fc5b000000000000000014e1fd410000000000000000b9e9fe9f0000000000000000f09fff99ffff000000000000 +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: cd2c008f00000000000000004dcc00daffff0000000000008388018bffff0000000000002e4602fdffff0000000000007afa0244000000000000000008bc030b0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e79c04b80000000000000000179905720000000000000000ec4f067c0000000000000000a3390663000000000000000080b5055b0000000000000000ba3805e6ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 171a058200000000000000001506057c000000000000000044a604f0ffff00000000000051ef031800000000000000003324032300000000000000009266023c0000000000000000 +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2ecd012c0000000000000000a986018800000000000000001268014f0000000000000000d21d019b00000000000000005780000e0000000000000000aee4fffcffff000000000000 +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1f66ff1400000000000000005e2cff4d0000000000000000081dff56000000000000000028f5fef1ffff0000000000008978fe2600000000000000006467fde4ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: fa01fc2e000000000000000005c2fa3300000000000000006ad1f96e00000000000000001cf2f82500000000000000008144f82f000000000000000044f7f76d0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5c15f81400000000000000007063f80f00000000000000000a9ef86d0000000000000000de9bf82c00000000000000005382f8300000000000000000639df8210000000000000000 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1859f94e00000000000000002fcbfaf7ffff00000000000089a9fc3d0000000000000000834dfe1500000000000000003367ff4400000000000000005b6e002f0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ae31015f00000000000000005ba601040000000000000000c4c101480000000000000000da9a01d2ffff0000000000008d4601d1ffff0000000000000db400310000000000000000 +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2eedffe7ffff000000000000610eff7200000000000000009a7efe0a0000000000000000af3afe3c0000000000000000561efeb4ffff000000000000e51efea0ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b213fe0600000000000000002009fe470000000000000000ae1cfe170000000000000000dd40fe0100000000000000003575fe12000000000000000010abfe190000000000000000 +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 7707ffdfffff000000000000c9bcff41000000000000000024b300260000000000000000476701410000000000000000d56501dcffff0000000000006af7006c0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 295e00d4ffff0000000000000cbcff4f00000000000000002bf5feacffff000000000000f41bfe6c0000000000000000993ffdccffff00000000000039a9fc230000000000000000 +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ba5afcfdffff0000000000003976fc3900000000000000009b0ffd39000000000000000033bffd060000000000000000b04cfe2a0000000000000000c793fe500000000000000000 +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d9e3fe4e00000000000000001f3dff5f000000000000000006d5fffaffff0000000000000dbe007d0000000000000000b4da0164000000000000000070ef021a0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 187c032d0000000000000000e0cd03f7ffff000000000000b03404850000000000000000e9bf0459000000000000000082f7048000000000000000001dd8041a0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9da404330000000000000000128304720000000000000000fd8204330000000000000000e37604c8ffff000000000000280e04310000000000000000732e036cffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: de0e02370000000000000000fa1101ceffff000000000000ef97004b0000000000000000d149006b0000000000000000ddc0ff0000000000000000001b31ff050000000000000000 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1ee8fe6d0000000000000000ece6fe0a0000000000000000c5effe1700000000000000007604ff2900000000000000007411ff0200000000000000003b1dff3c0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d33fff200000000000000000a88dff3c0000000000000000554d009800000000000000003c5001faffff000000000000b00f02b60000000000000000fb7602c2ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 997102540000000000000000fa1e020300000000000000001697017b0000000000000000b51201ffffff00000000000039b000910000000000000000ef5e00200000000000000000 +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b45800770000000000000000f58100080000000000000000661201480000000000000000e3ba01c1ffff000000000000c1f3014900000000000000009dd2010f0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0aa601310000000000000000e306026f000000000000000024e702f9ffff000000000000f8fc0365000000000000000090d904f0ffff000000000000962e05750000000000000000 + +No. Time Source Destination Protocol Length Info + 8195 5.200188 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 8195: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.520737000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.520737000 UTC + Epoch Arrival Time: 1750683145.520737000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001883000 seconds] + [Time delta from previous displayed frame: 0.001883000 seconds] + [Time since reference or first frame: 5.200188000 seconds] + Frame Number: 8195 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 8169] + [Time from request: 0.017935000 seconds] + Isochronous transfer start frame: 1804895 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 8196 5.200393 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 8196: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.520942000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.520942000 UTC + Epoch Arrival Time: 1750683145.520942000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000205000 seconds] + [Time delta from previous displayed frame: 0.000205000 seconds] + [Time since reference or first frame: 5.200393000 seconds] + Frame Number: 8196 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1804913 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 8197 5.202065 1.1.2 host USB 519 URB_ISOCHRONOUS out + +Frame 8197: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.522614000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.522614000 UTC + Epoch Arrival Time: 1750683145.522614000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001672000 seconds] + [Time delta from previous displayed frame: 0.001672000 seconds] + [Time since reference or first frame: 5.202065000 seconds] + Frame Number: 8197 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b6050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 8180] + [Time from request: 0.013747000 seconds] + Isochronous transfer start frame: 1804894 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + +No. Time Source Destination Protocol Length Info + 8198 5.202184 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 8198: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.522733000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.522733000 UTC + Epoch Arrival Time: 1750683145.522733000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000119000 seconds] + [Time delta from previous displayed frame: 0.000119000 seconds] + [Time since reference or first frame: 5.202184000 seconds] + Frame Number: 8198 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 8173] + [Time from request: 0.017760000 seconds] + Isochronous transfer start frame: 1804897 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 8199 5.202281 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 8199: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.522830000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.522830000 UTC + Epoch Arrival Time: 1750683145.522830000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000097000 seconds] + [Time delta from previous displayed frame: 0.000097000 seconds] + [Time since reference or first frame: 5.202281000 seconds] + Frame Number: 8199 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1804915 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 8200 5.202305 host 1.1.2 USB 3399 URB_ISOCHRONOUS out + +Frame 8200: 3399 bytes on wire (27192 bits), 3399 bytes captured (27192 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.522854000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.522854000 UTC + Epoch Arrival Time: 1750683145.522854000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000024000 seconds] + [Time delta from previous displayed frame: 0.000024000 seconds] + [Time since reference or first frame: 5.202305000 seconds] + Frame Number: 8200 + Frame Length: 3399 bytes (27192 bits) + Capture Length: 3399 bytes (27192 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b6050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2880 + Isochronous transfer start frame: 1804909 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2a6d050400000000000000004cac05edffff0000000000000a19062e0000000000000000ae9106dcffff000000000000b48906290000000000000000542406160000000000000000 +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9375050000000000000000001fb4043500000000000000001ad403040000000000000000d4f102f4ffff000000000000996602c9ffff000000000000283702420000000000000000 +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: df4f02c5ffff000000000000284f026000000000000000009b35021300000000000000009e3002440000000000000000071702c2ffff00000000000049cd01000000000000000000 +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ef8301480000000000000000667d01ecffff000000000000fab1013c0000000000000000e90602e4ffff000000000000803c020100000000000000007f0802430000000000000000 +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6462011a00000000000000005861004a0000000000000000015effc6ffff0000000000000ca4fe8c0000000000000000e7cffd07000000000000000011aefc8c0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8d88fb2600000000000000007bbffa2c0000000000000000794dfa4a0000000000000000e50bfa4e000000000000000064eff9f5ffff00000000000004d8f91c0000000000000000 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b8c3f90c0000000000000000147ef9050000000000000000b029f9deffff0000000000004418f97000000000000000003546f9390000000000000000adccf9640000000000000000 +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 17cefa7600000000000000002e1bfcbdffff000000000000404dfd8200000000000000004147fe0a00000000000000007626ffdbffff000000000000d8f1ff2d0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b39f00ebffff000000000000674e019d0000000000000000b63c02c2ffff0000000000007fae03480000000000000000a93305720000000000000000b00c060e0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 240106ca0000000000000000046505f7ffff0000000000009bad045c0000000000000000153304c0ffff00000000000048e3038700000000000000002c7603d8ffff000000000000 +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 87b8026e0000000000000000a8d40192ffff000000000000850d017200000000000000008c8900240000000000000000e23200150000000000000000d6b4ff630000000000000000 +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b52affe7ffff00000000000012d0fe0b000000000000000077b3fe320000000000000000f2bcfe2d000000000000000048cefe7d0000000000000000e3b1fe270000000000000000 +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9f60fe2200000000000000008cd0fdbfffff00000000000025f0fc340000000000000000a416fc050000000000000000274afb0f0000000000000000016dfa5b0000000000000000 +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3b77f9d2ffff0000000000002daaf81700000000000000005b2af81e00000000000000005cf2f72c0000000000000000c514f84b0000000000000000ee53f8e6ffff000000000000 +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2f7cf8710000000000000000599af813000000000000000095e9f826000000000000000021d7f91500000000000000007766fb730000000000000000d9defc6b0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 69f7fdd7ffff000000000000dbe7fe5b0000000000000000f90c00b7ffff000000000000ef5101780000000000000000015302d5ffff0000000000007cd402630000000000000000 +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d2c302070000000000000000a87202190000000000000000d2ec01270000000000000000727d013400000000000000004c2501c7ffff00000000000050a3000e0000000000000000 +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 943100020000000000000000ea0d00140000000000000000844d001b000000000000000052a1002e000000000000000084c900eaffff000000000000e6cf003c0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d4b500f3ffff000000000000dda600d6ffff00000000000010a50031000000000000000011fc0006000000000000000078d401c5ffff000000000000a4a702c6ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e03403210000000000000000b472035800000000000000002b6603ebffff0000000000002622036b00000000000000002dd802e5ffff000000000000596b02eaffff000000000000 +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5dae013200000000000000008fcb00570000000000000000bd1700180000000000000000b8f1ff4f0000000000000000497f001800000000000000004e3b01140000000000000000 +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a898019cffff000000000000c4af013c00000000000000004cb101ffffff000000000000619901ffffff000000000000d47701eaffff0000000000002b7b01000000000000000000 +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 39af01230000000000000000ee5002f9ffff0000000000006332032d0000000000000000f90504eaffff0000000000007b8e043000000000000000000ae2040e0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 40ea043000000000000000002dc90450000000000000000040c6040c00000000000000005eca0422000000000000000031f204f4ffff0000000000003206052c0000000000000000 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d9ef04980000000000000000345c04c9ffff0000000000000c49039700000000000000003d1b02aaffff0000000000006f37010c0000000000000000dad600f3ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f177005d0000000000000000e4d8ffe9ffff0000000000001c24ff190000000000000000429ffe670000000000000000f14efe1100000000000000007a1bfe000000000000000000 +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 77fcfd830000000000000000aff3fdf8ffff0000000000005001fe290000000000000000ea4dfedcffff000000000000c7f9fe6e000000000000000079a7ff97ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4f03005d0000000000000000bdf9ff71000000000000000078f3ff5e00000000000000005202000700000000000000002212004b000000000000000072eaff020000000000000000 +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: dd6fff5d000000000000000008e5fe1300000000000000001349fe66000000000000000041defd3a00000000000000001e05fe2a0000000000000000f1c0fe610000000000000000 +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 178dff33000000000000000023f9ff3f0000000000000000492100310000000000000000ff21001500000000000000001864002a0000000000000000b825012c0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: df0d02f3ffff00000000000056d102010000000000000000d438038600000000000000003468039bffff000000000000f1bb035c0000000000000000505a04080000000000000000 +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 46b5043f0000000000000000507904310000000000000000cb0704ffffff00000000000047a803580000000000000000883e03e3ffff00000000000055c5022f0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1b27027a0000000000000000b27801bdffff000000000000551501610000000000000000ff3701f9ffff00000000000087d5017e0000000000000000399202320000000000000000 +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b6e902fdffff000000000000489f0264000000000000000011f201fcffff000000000000456501390000000000000000deff00f4ffff0000000000005fcc00aeffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 16d90073000000000000000086d900c8ffff000000000000c0bd002c0000000000000000ad4e00220000000000000000689aff910000000000000000c7bcfe130000000000000000 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: dac1fd170000000000000000ad94fc400000000000000000de2ffb6700000000000000005616fab6ffff0000000000003185f9270000000000000000155bf93f0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 863ef989ffff00000000000033f4f8d0ffff000000000000f378f8470000000000000000d9edf7ffffff0000000000009fa3f7320000000000000000a3b5f7eeffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e5cbf779000000000000000020c4f712000000000000000076ebf7690000000000000000e299f8c1ffff000000000000fac4f91e00000000000000008f19fb87ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9935fc7800000000000000005625fdd0ffff000000000000e825fe1000000000000000004016ffd3ffff000000000000031700c2ffff000000000000785d01070000000000000000 +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 85c00249000000000000000019c203e9ffff000000000000a05b04400000000000000000618b04460000000000000000a64f045d00000000000000002efc037b0000000000000000 + +No. Time Source Destination Protocol Length Info + 8201 5.204186 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 8201: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.524735000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.524735000 UTC + Epoch Arrival Time: 1750683145.524735000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001881000 seconds] + [Time delta from previous displayed frame: 0.001881000 seconds] + [Time since reference or first frame: 5.204186000 seconds] + Frame Number: 8201 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff92072203f560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 8176] + [Time from request: 0.017880000 seconds] + Isochronous transfer start frame: 1804899 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 8202 5.204379 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 8202: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.524928000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.524928000 UTC + Epoch Arrival Time: 1750683145.524928000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000193000 seconds] + [Time delta from previous displayed frame: 0.000193000 seconds] + [Time since reference or first frame: 5.204379000 seconds] + Frame Number: 8202 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff92072203f560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1804917 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 8203 5.206186 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 8203: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.526735000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.526735000 UTC + Epoch Arrival Time: 1750683145.526735000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001807000 seconds] + [Time delta from previous displayed frame: 0.001807000 seconds] + [Time since reference or first frame: 5.206186000 seconds] + Frame Number: 8203 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff92072203f010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 8179] + [Time from request: 0.017882000 seconds] + Isochronous transfer start frame: 1804901 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 8204 5.206282 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 8204: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.526831000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.526831000 UTC + Epoch Arrival Time: 1750683145.526831000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000096000 seconds] + [Time delta from previous displayed frame: 0.000096000 seconds] + [Time since reference or first frame: 5.206282000 seconds] + Frame Number: 8204 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff92072203f010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1804919 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 8205 5.207063 1.1.2 host USB 519 URB_ISOCHRONOUS out + +Frame 8205: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.527612000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.527612000 UTC + Epoch Arrival Time: 1750683145.527612000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000781000 seconds] + [Time delta from previous displayed frame: 0.000781000 seconds] + [Time since reference or first frame: 5.207063000 seconds] + Frame Number: 8205 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff92072024f5a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 8186] + [Time from request: 0.014744000 seconds] + Isochronous transfer start frame: 1804899 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + +No. Time Source Destination Protocol Length Info + 8208 5.208189 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 8208: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.528738000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.528738000 UTC + Epoch Arrival Time: 1750683145.528738000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000967000 seconds] + [Time delta from previous displayed frame: 0.001126000 seconds] + [Time since reference or first frame: 5.208189000 seconds] + Frame Number: 8208 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720b96560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 8182] + [Time from request: 0.017792000 seconds] + Isochronous transfer start frame: 1804903 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 8209 5.208298 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 8209: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:52:25.528847000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:52:25.528847000 UTC + Epoch Arrival Time: 1750683145.528847000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000109000 seconds] + [Time delta from previous displayed frame: 0.000109000 seconds] + [Time since reference or first frame: 5.208298000 seconds] + Frame Number: 8209 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720b96560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1804921 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) diff --git a/reverse_eng_dataset/24bit_48k_LINE_ORGAN_INST_4_NOTE_CHORD__PLAYBACK_SILENCE_FULL.txt b/reverse_eng_dataset/24bit_48k_LINE_ORGAN_INST_4_NOTE_CHORD__PLAYBACK_SILENCE_FULL.txt new file mode 100644 index 0000000..533d4cc --- /dev/null +++ b/reverse_eng_dataset/24bit_48k_LINE_ORGAN_INST_4_NOTE_CHORD__PLAYBACK_SILENCE_FULL.txt @@ -0,0 +1,4185 @@ +No. Time Source Destination Protocol Length Info + 2255 1.011407 1.1.6 host USB 131099 URB_BULK in + +Frame 2255: 131099 bytes on wire (1048792 bits), 65535 bytes captured (524280 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 15:10:24.684433000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 13:10:24.684433000 UTC + Epoch Arrival Time: 1750684224.684433000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000627000 seconds] + [Time delta from previous displayed frame: 0.001552000 seconds] + [Time since reference or first frame: 1.011407000 seconds] + Frame Number: 2255 + Frame Length: 131099 bytes (1048792 bits) + Capture Length: 65535 bytes (524280 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.6] + [Destination: host] + USBPcap pseudoheader length: 27 + IRP ID: 0xffff92071af7c010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: URB_BULK (0x03) + Packet Data Length: 131072 + [Request in: 1540] + [Time from request: 0.297455000 seconds] + [bInterfaceClass: Vendor Specific (0xff)] +Leftover Capture Data […]: 010101010100000101010101000000010001010000000000000000000000000000000000000000000000000000000000000001000100010000000000000000000101010101000100000001000001010100000100010001010000000000000000000000000000000000 + +0000 1b 00 10 c0 f7 1a 07 92 ff ff 00 00 00 00 09 00 ................ +0010 01 01 00 01 00 86 03 00 00 02 00 01 01 01 01 01 ................ +0020 00 00 01 01 01 01 01 00 00 00 01 00 01 01 00 00 ................ +0030 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0040 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +0050 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0060 00 01 00 00 00 01 00 00 01 01 01 00 00 01 00 01 ................ +0070 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0080 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 00 ................ +0090 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +00a0 00 01 00 01 00 01 00 01 01 00 01 00 00 01 00 01 ................ +00b0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +00c0 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 ................ +00d0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +00e0 00 01 01 00 01 00 00 01 01 00 01 00 01 00 01 01 ................ +00f0 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0100 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 01 ................ +0110 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0120 00 01 01 01 01 01 00 01 00 00 00 00 00 01 00 01 ................ +0130 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0140 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +0150 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0160 01 00 00 00 01 00 01 00 01 00 01 01 00 01 00 00 ................ +0170 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0180 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 ................ +0190 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +01a0 01 00 00 00 01 01 01 00 01 01 01 01 00 00 00 00 ................ +01b0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +01c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +01d0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +01e0 01 00 00 00 00 01 01 00 01 00 01 01 00 01 01 00 ................ +01f0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0200 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 00 ................ +0210 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0220 00 01 01 01 00 01 00 01 00 00 00 01 01 00 00 00 ................ +0230 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0240 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +0250 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0260 00 01 01 00 00 00 00 00 01 00 00 01 01 01 00 00 ................ +0270 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0280 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +0290 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +02a0 00 01 00 00 01 01 01 01 01 01 00 00 00 00 00 00 ................ +02b0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +02c0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +02d0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +02e0 00 01 00 00 00 01 01 00 00 01 01 00 01 01 00 00 ................ +02f0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0300 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +0310 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0320 00 01 00 00 00 01 01 00 01 01 00 00 01 01 00 01 ................ +0330 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0340 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0350 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0360 00 01 00 01 00 01 00 01 00 00 01 00 01 01 00 01 ................ +0370 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0380 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 00 ................ +0390 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +03a0 00 01 01 01 00 00 00 01 01 01 00 01 00 01 01 01 ................ +03b0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +03c0 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 ................ +03d0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +03e0 01 00 00 01 01 00 00 00 01 00 00 00 00 00 01 01 ................ +03f0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0400 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 01 ................ +0410 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0420 01 00 01 01 01 01 01 00 00 00 00 00 01 01 00 01 ................ +0430 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0440 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 ................ +0450 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0460 01 01 00 01 00 01 00 00 00 00 00 01 01 00 01 01 ................ +0470 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0480 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +0490 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +04a0 01 01 00 01 00 01 00 01 00 00 01 01 00 01 00 01 ................ +04b0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +04c0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +04d0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +04e0 01 01 00 00 01 00 01 00 00 01 01 01 00 01 01 00 ................ +04f0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0500 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +0510 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0520 01 01 00 00 00 00 00 00 01 00 00 01 00 01 01 01 ................ +0530 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0540 01 01 01 01 01 01 01 01 01 01 01 01 00 00 01 01 ................ +0550 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0560 01 00 01 01 01 00 00 01 01 00 00 00 01 00 00 01 ................ +0570 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0580 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +0590 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +05a0 01 00 01 01 00 00 01 00 00 00 01 00 01 01 01 00 ................ +05b0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +05c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +05d0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +05e0 01 00 01 00 01 00 00 00 01 01 01 00 00 00 01 00 ................ +05f0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0600 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +0610 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0620 01 00 01 00 01 00 00 01 00 01 00 00 00 00 00 00 ................ +0630 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0640 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 00 ................ +0650 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0660 01 00 01 01 00 01 01 00 01 00 00 00 00 01 01 00 ................ +0670 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0680 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +0690 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +06a0 01 01 00 01 00 00 01 01 01 00 00 00 00 01 01 00 ................ +06b0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +06c0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +06d0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +06e0 01 01 01 01 01 01 00 01 00 01 00 01 00 01 00 01 ................ +06f0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0700 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +0710 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0720 00 00 01 00 01 00 00 00 01 01 00 00 01 00 01 01 ................ +0730 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0740 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 ................ +0750 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0760 00 01 00 00 01 00 00 00 00 00 00 00 01 00 00 00 ................ +0770 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0780 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +0790 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +07a0 00 01 00 01 00 00 00 00 01 01 00 01 01 00 00 01 ................ +07b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +07c0 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 ................ +07d0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +07e0 00 01 00 00 00 00 01 00 01 01 01 00 01 01 01 00 ................ +07f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0800 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +0810 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0820 00 00 01 00 01 00 01 01 01 00 00 01 00 01 00 01 ................ +0830 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0840 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +0850 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0860 00 00 00 01 00 01 01 00 01 01 01 00 00 00 01 00 ................ +0870 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0880 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +0890 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +08a0 00 00 00 00 00 01 01 01 00 01 01 00 01 01 01 01 ................ +08b0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +08c0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +08d0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +08e0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +08f0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0900 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 01 ................ +0910 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0920 01 01 01 01 01 01 01 01 00 00 01 00 01 01 01 00 ................ +0930 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0940 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 ................ +0950 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0960 00 00 00 00 00 01 00 00 00 00 00 00 00 00 01 01 ................ +0970 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0980 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 ................ +0990 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +09a0 00 00 00 01 00 00 00 00 00 00 01 01 00 00 01 00 ................ +09b0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +09c0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +09d0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +09e0 00 00 00 01 01 01 00 01 00 00 00 01 01 00 01 01 ................ +09f0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0a00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 00 ................ +0a10 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0a20 00 00 01 00 01 00 01 00 01 01 01 01 01 00 00 00 ................ +0a30 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0a40 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +0a50 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0a60 00 00 01 01 00 01 01 01 01 00 01 01 00 01 00 01 ................ +0a70 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0a80 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +0a90 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0aa0 00 00 01 01 01 01 01 01 01 01 00 01 01 00 00 00 ................ +0ab0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0ac0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +0ad0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0ae0 00 01 00 00 00 01 01 00 00 01 01 01 00 01 01 01 ................ +0af0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0b00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +0b10 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0b20 00 01 00 00 01 00 01 01 00 01 00 01 00 00 00 00 ................ +0b30 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0b40 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0b50 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0b60 00 01 00 01 00 01 00 00 00 00 00 01 01 01 00 00 ................ +0b70 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0b80 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +0b90 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0ba0 00 01 01 00 00 00 01 00 01 00 01 00 00 00 01 00 ................ +0bb0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0bc0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +0bd0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0be0 00 01 01 01 01 00 00 00 01 01 01 00 00 01 00 01 ................ +0bf0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0c00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0c10 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0c20 01 00 00 01 00 01 01 01 00 01 01 00 00 01 01 01 ................ +0c30 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0c40 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 00 ................ +0c50 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0c60 01 00 01 01 01 00 01 00 01 00 00 01 00 00 00 01 ................ +0c70 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0c80 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +0c90 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0ca0 01 01 00 01 01 00 01 01 00 00 01 01 01 01 00 01 ................ +0cb0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0cc0 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 ................ +0cd0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0ce0 01 01 01 01 00 00 00 01 00 01 00 00 01 01 01 00 ................ +0cf0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0d00 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +0d10 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0d20 01 01 01 01 01 00 00 01 01 01 01 00 01 00 00 01 ................ +0d30 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0d40 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +0d50 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0d60 01 01 01 00 01 01 01 01 00 01 00 00 01 01 01 00 ................ +0d70 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0d80 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 ................ +0d90 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0da0 01 01 00 01 00 01 00 01 00 00 01 00 01 01 00 00 ................ +0db0 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0dc0 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 ................ +0dd0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0de0 01 00 01 01 00 00 01 01 01 00 01 00 00 00 00 01 ................ +0df0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0e00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 00 ................ +0e10 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0e20 01 00 00 01 00 00 00 01 01 00 00 01 00 01 01 00 ................ +0e30 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0e40 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 ................ +0e50 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0e60 00 01 01 01 00 01 01 00 00 01 00 01 00 01 00 01 ................ +0e70 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0e80 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +0e90 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0ea0 00 01 01 00 00 00 01 00 00 01 01 01 01 01 01 01 ................ +0eb0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0ec0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +0ed0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0ee0 00 01 00 01 00 01 00 00 01 01 00 01 01 00 01 00 ................ +0ef0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0f00 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 ................ +0f10 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0f20 00 01 00 01 00 00 00 00 01 00 00 01 01 00 01 01 ................ +0f30 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0f40 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 ................ +0f50 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0f60 00 01 00 01 01 00 00 00 01 01 01 00 01 01 01 00 ................ +0f70 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0f80 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 ................ +0f90 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0fa0 00 01 01 00 01 00 01 01 01 00 01 00 01 01 01 01 ................ +0fb0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +0fc0 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 ................ +0fd0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +0fe0 00 01 01 01 01 01 01 00 01 00 00 00 00 00 01 01 ................ +0ff0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1000 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 01 ................ +1010 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1020 01 00 00 00 01 01 01 01 00 00 00 00 01 00 01 00 ................ +1030 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +1050 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1060 01 00 00 01 00 00 01 01 00 00 00 01 01 01 00 00 ................ +1070 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1080 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 00 ................ +1090 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +10a0 01 00 00 00 00 01 00 00 01 00 01 01 01 01 00 00 ................ +10b0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +10c0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +10d0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +10e0 00 01 01 00 00 00 01 01 00 00 01 00 01 00 01 00 ................ +10f0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1100 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +1110 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1120 00 00 01 01 01 00 00 00 01 01 00 00 01 01 01 00 ................ +1130 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1140 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 ................ +1150 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1160 00 00 00 01 00 01 00 00 00 01 01 00 01 01 00 01 ................ +1170 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1180 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +1190 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +11a0 01 01 01 01 01 01 00 01 01 00 00 01 01 00 00 00 ................ +11b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +11c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +11d0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +11e0 01 01 01 01 00 00 01 01 00 00 01 01 00 00 00 01 ................ +11f0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1200 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +1210 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1220 01 01 01 01 01 00 00 01 01 01 00 00 00 00 01 01 ................ +1230 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1240 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +1250 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1260 00 00 00 00 01 01 01 00 00 00 01 00 01 01 01 00 ................ +1270 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1280 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +1290 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +12a0 00 00 01 00 01 01 01 01 01 00 00 01 00 00 00 01 ................ +12b0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +12c0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +12d0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +12e0 00 01 00 01 00 00 01 01 01 01 00 00 00 01 01 01 ................ +12f0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1300 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +1310 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1320 00 01 01 01 00 01 01 00 00 00 01 00 01 00 01 01 ................ +1330 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1340 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +1350 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1360 01 00 00 00 01 00 01 01 00 01 01 01 00 01 00 00 ................ +1370 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1380 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +1390 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +13a0 01 00 00 01 00 00 01 00 00 01 00 00 00 01 00 01 ................ +13b0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +13c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +13d0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +13e0 01 00 00 00 00 01 01 01 01 00 00 01 00 01 01 01 ................ +13f0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1400 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +1410 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1420 00 01 01 01 00 00 01 01 00 01 00 01 01 00 01 01 ................ +1430 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1440 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 01 ................ +1450 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1460 00 01 01 00 00 00 01 00 00 00 00 00 00 00 00 01 ................ +1470 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1480 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +1490 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +14a0 00 01 00 01 00 00 01 01 01 00 00 01 01 01 01 01 ................ +14b0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +14c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +14d0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +14e0 00 01 00 00 01 00 00 01 01 01 00 00 00 00 01 00 ................ +14f0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1500 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 00 ................ +1510 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1520 00 00 01 01 01 01 01 01 01 01 01 00 01 00 01 01 ................ +1530 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1540 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +1550 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1560 00 00 01 01 01 00 00 01 01 00 01 01 01 00 01 00 ................ +1570 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1580 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 00 ................ +1590 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +15a0 00 00 01 01 00 01 01 01 00 00 01 01 01 01 00 00 ................ +15b0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +15c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +15d0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +15e0 00 00 01 01 01 01 00 00 01 00 00 00 00 01 00 01 ................ +15f0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1600 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 01 ................ +1610 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1620 00 01 00 00 01 00 01 01 01 01 00 01 01 00 01 00 ................ +1630 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1640 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +1650 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1660 00 01 00 01 01 01 00 01 01 00 01 00 01 00 01 01 ................ +1670 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1680 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 ................ +1690 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +16a0 00 01 01 00 00 00 00 00 00 01 00 00 00 01 00 01 ................ +16b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +16c0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +16d0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +16e0 00 01 00 01 00 00 01 00 00 01 00 00 01 00 00 01 ................ +16f0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1700 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 ................ +1710 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1720 00 00 01 01 00 01 01 00 00 01 01 01 00 00 00 00 ................ +1730 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1740 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +1750 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1760 00 00 00 01 00 01 01 01 00 00 00 00 01 00 01 00 ................ +1770 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1780 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 01 ................ +1790 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +17a0 01 01 01 01 01 00 00 00 00 00 00 01 01 01 00 01 ................ +17b0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +17c0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +17d0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +17e0 01 01 00 01 01 01 00 01 01 01 01 00 01 01 01 01 ................ +17f0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1800 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +1810 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1820 01 01 00 00 01 01 00 01 01 01 01 01 00 00 01 01 ................ +1830 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1840 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +1850 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1860 01 01 00 00 01 00 00 00 01 01 01 01 00 00 00 00 ................ +1870 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1880 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +1890 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +18a0 01 01 00 00 00 01 01 01 00 00 01 00 00 01 00 01 ................ +18b0 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +18c0 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 01 ................ +18d0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +18e0 01 00 01 01 01 01 01 01 01 01 00 01 01 00 01 00 ................ +18f0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1900 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +1910 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1920 01 00 01 01 00 01 01 01 00 01 01 00 01 00 00 01 ................ +1930 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1940 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 ................ +1950 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1960 01 00 01 01 00 01 00 01 00 00 01 00 01 00 00 01 ................ +1970 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1980 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1990 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +19a0 01 00 01 01 01 01 00 00 01 01 00 00 01 01 00 01 ................ +19b0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +19c0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +19d0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +19e0 01 01 00 00 00 01 00 01 01 01 00 00 01 01 00 00 ................ +19f0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1a00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +1a10 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1a20 01 01 00 00 01 00 01 01 01 00 00 00 01 00 01 00 ................ +1a30 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1a40 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +1a50 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1a60 01 01 00 01 00 00 00 00 00 00 01 00 00 01 01 01 ................ +1a70 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1a80 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 00 ................ +1a90 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1aa0 01 01 00 01 00 01 00 01 01 01 00 01 00 01 00 00 ................ +1ab0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1ac0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +1ad0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1ae0 01 01 00 01 01 01 01 01 00 00 01 01 00 01 01 00 ................ +1af0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1b00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +1b10 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1b20 01 01 01 00 01 00 01 01 00 00 01 00 01 01 01 01 ................ +1b30 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1b40 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 ................ +1b50 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1b60 01 01 01 01 01 01 00 00 00 00 01 01 01 01 00 01 ................ +1b70 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1b80 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 00 ................ +1b90 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1ba0 00 00 00 01 00 00 01 00 00 01 00 00 00 00 01 01 ................ +1bb0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1bc0 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 ................ +1bd0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1be0 00 00 01 00 00 01 01 01 00 01 00 00 01 00 00 00 ................ +1bf0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1c00 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 ................ +1c10 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1c20 00 00 01 01 01 00 00 01 00 01 01 01 00 01 01 01 ................ +1c30 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1c40 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 ................ +1c50 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1c60 00 01 00 00 00 00 00 00 01 01 01 01 01 00 00 01 ................ +1c70 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1c80 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +1c90 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1ca0 00 00 01 01 00 01 01 00 01 00 01 00 01 00 00 01 ................ +1cb0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1cc0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +1cd0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1ce0 00 00 00 01 01 01 01 00 00 00 01 01 00 01 00 00 ................ +1cf0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1d00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +1d10 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1d20 01 01 01 01 01 01 01 00 00 01 00 01 01 01 00 01 ................ +1d30 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1d40 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +1d50 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1d60 01 01 01 00 00 00 01 01 00 01 00 00 01 01 01 01 ................ +1d70 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1d80 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +1d90 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1da0 01 01 00 01 00 01 00 01 01 00 00 00 01 00 00 01 ................ +1db0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1dc0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +1dd0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1de0 01 01 00 00 01 01 00 01 00 01 01 01 00 00 01 01 ................ +1df0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1e00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +1e10 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1e20 01 01 00 00 01 00 00 00 00 00 01 00 00 01 01 00 ................ +1e30 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1e40 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 ................ +1e50 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1e60 01 01 00 00 00 00 00 01 01 01 01 01 00 01 00 00 ................ +1e70 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1e80 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +1e90 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1ea0 01 00 01 01 01 01 00 01 00 00 01 01 01 00 01 00 ................ +1eb0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1ec0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +1ed0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1ee0 01 00 01 01 01 01 01 00 01 01 01 01 01 00 01 00 ................ +1ef0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1f00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +1f10 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1f20 01 01 00 00 01 00 01 01 00 00 01 01 01 00 00 00 ................ +1f30 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1f40 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +1f50 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1f60 01 01 00 01 01 01 01 00 01 00 01 01 01 00 00 01 ................ +1f70 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1f80 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +1f90 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1fa0 01 01 01 01 00 00 01 01 00 01 01 01 00 00 01 01 ................ +1fb0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +1fc0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +1fd0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +1fe0 00 00 00 00 00 00 01 00 01 01 01 01 00 01 01 01 ................ +1ff0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2000 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +2010 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2020 00 00 00 00 01 01 00 00 00 00 00 00 00 01 01 00 ................ +2030 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2040 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +2050 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2060 00 00 00 01 00 00 00 01 01 00 00 01 00 01 00 00 ................ +2070 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2080 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +2090 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +20a0 00 00 00 01 00 00 01 01 00 00 00 00 01 00 01 01 ................ +20b0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +20c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +20d0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +20e0 00 00 00 01 00 00 00 00 00 01 00 00 01 00 01 00 ................ +20f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2100 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2110 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2120 00 00 00 00 01 00 00 01 01 01 00 01 01 00 00 01 ................ +2130 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2140 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +2150 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2160 00 00 00 00 00 00 01 01 01 01 01 01 00 01 01 00 ................ +2170 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2180 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 01 ................ +2190 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +21a0 00 00 00 00 00 01 01 01 00 01 00 00 01 01 01 01 ................ +21b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +21c0 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 00 ................ +21d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +21e0 00 00 00 01 00 01 00 00 01 01 00 00 01 00 01 00 ................ +21f0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2200 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 00 ................ +2210 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2220 00 00 01 00 01 01 00 00 01 00 01 01 01 00 01 01 ................ +2230 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2240 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +2250 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2260 00 01 00 00 01 01 01 01 01 00 01 00 00 00 01 01 ................ +2270 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2280 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +2290 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +22a0 00 01 01 01 00 00 01 01 00 00 00 01 00 00 00 01 ................ +22b0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +22c0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +22d0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +22e0 01 00 00 00 01 01 00 01 00 00 01 01 00 00 01 01 ................ +22f0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2300 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +2310 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2320 01 00 00 01 01 01 00 00 01 01 00 00 00 00 00 00 ................ +2330 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2340 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 ................ +2350 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2360 01 00 01 00 00 01 00 01 01 01 01 00 00 00 01 00 ................ +2370 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2380 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +2390 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +23a0 01 00 01 01 00 00 00 00 01 00 00 01 00 01 01 00 ................ +23b0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +23c0 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 00 ................ +23d0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +23e0 01 00 01 01 00 01 01 01 00 00 00 01 01 01 00 00 ................ +23f0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2400 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +2410 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2420 01 00 01 01 00 01 01 01 01 01 01 01 00 00 00 01 ................ +2430 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2440 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +2450 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2460 01 00 01 00 01 01 01 01 01 00 00 01 01 00 01 01 ................ +2470 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2480 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 ................ +2490 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +24a0 01 00 01 00 00 00 00 01 00 00 00 01 00 00 01 00 ................ +24b0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +24c0 01 01 01 01 01 01 01 01 01 01 01 01 00 00 01 01 ................ +24d0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +24e0 01 00 00 01 00 00 00 00 00 01 00 01 00 01 00 00 ................ +24f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2500 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 01 ................ +2510 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2520 01 00 00 00 00 00 00 01 01 00 01 01 00 00 00 01 ................ +2530 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2540 01 01 01 01 01 01 01 01 01 01 01 01 00 00 01 01 ................ +2550 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2560 00 01 01 01 01 00 01 01 01 01 00 01 00 00 01 01 ................ +2570 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2580 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +2590 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +25a0 00 01 01 01 01 01 01 01 01 00 00 01 00 00 01 00 ................ +25b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +25c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +25d0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +25e0 01 00 00 00 00 01 00 00 00 01 00 01 01 01 01 00 ................ +25f0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2600 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +2610 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2620 01 00 00 00 00 00 01 00 01 01 00 01 00 00 01 01 ................ +2630 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2640 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2650 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2660 00 01 01 01 01 01 00 00 01 00 01 00 00 01 00 00 ................ +2670 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2680 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +2690 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +26a0 00 01 01 00 01 01 01 00 00 00 01 01 01 01 00 00 ................ +26b0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +26c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +26d0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +26e0 00 01 00 01 01 01 01 00 00 01 01 00 00 00 00 00 ................ +26f0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2700 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +2710 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2720 00 01 00 01 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2730 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2740 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 01 ................ +2750 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2760 00 01 00 00 00 01 01 01 00 00 00 00 01 01 00 00 ................ +2770 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2780 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +2790 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +27a0 00 01 00 00 00 00 00 00 01 00 00 00 01 00 01 00 ................ +27b0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +27c0 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 01 ................ +27d0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +27e0 00 00 01 01 00 01 00 01 01 01 01 01 01 00 00 00 ................ +27f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2800 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +2810 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2820 00 00 01 00 00 01 01 01 00 00 00 01 00 01 00 00 ................ +2830 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2840 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +2850 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2860 00 00 00 01 00 01 01 00 00 00 00 00 01 00 00 00 ................ +2870 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2880 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +2890 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +28a0 00 00 00 00 00 01 00 01 01 01 00 01 01 01 00 00 ................ +28b0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +28c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +28d0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +28e0 01 01 01 01 00 00 01 01 01 01 01 01 01 00 00 01 ................ +28f0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2900 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +2910 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2920 01 01 00 01 01 01 01 01 00 00 01 00 00 00 01 01 ................ +2930 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2940 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +2950 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2960 01 01 00 00 01 00 00 00 01 01 00 01 00 00 01 01 ................ +2970 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2980 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +2990 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +29a0 01 00 01 01 00 01 00 00 00 00 01 01 01 00 00 01 ................ +29b0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +29c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +29d0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +29e0 01 00 00 01 01 00 01 01 01 00 00 01 01 01 01 01 ................ +29f0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2a00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +2a10 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2a20 01 00 00 00 00 01 00 01 01 00 00 01 00 00 00 01 ................ +2a30 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2a40 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +2a50 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2a60 00 01 01 01 00 01 01 00 01 01 01 01 01 01 01 01 ................ +2a70 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2a80 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +2a90 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2aa0 00 01 01 01 00 01 01 01 00 00 00 01 00 01 01 00 ................ +2ab0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2ac0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +2ad0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2ae0 01 00 00 00 00 00 01 01 01 01 01 01 00 01 01 00 ................ +2af0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2b00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +2b10 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2b20 01 00 00 01 01 00 01 00 00 00 01 01 00 01 01 01 ................ +2b30 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2b40 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 ................ +2b50 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2b60 01 00 01 01 00 01 00 00 00 00 01 01 01 01 01 00 ................ +2b70 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2b80 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +2b90 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2ba0 01 01 00 00 01 00 01 01 00 01 01 00 00 00 01 00 ................ +2bb0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2bc0 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 ................ +2bd0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2be0 01 01 00 01 00 01 00 01 00 00 00 00 00 00 00 00 ................ +2bf0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2c00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +2c10 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2c20 01 01 00 00 01 00 01 00 01 01 00 00 00 01 00 01 ................ +2c30 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2c40 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +2c50 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2c60 01 00 01 01 00 00 01 01 01 01 00 00 00 00 00 00 ................ +2c70 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2c80 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 01 ................ +2c90 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2ca0 01 00 00 01 00 01 01 01 01 01 00 00 00 01 00 01 ................ +2cb0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2cc0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +2cd0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2ce0 01 00 00 00 00 00 00 00 01 01 00 00 01 00 00 01 ................ +2cf0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2d00 01 01 01 01 01 01 01 01 01 01 01 01 00 00 01 00 ................ +2d10 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2d20 00 01 01 00 01 01 00 01 00 01 00 01 01 01 00 01 ................ +2d30 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2d40 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +2d50 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2d60 00 01 00 01 01 00 01 01 01 01 00 01 00 00 01 01 ................ +2d70 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2d80 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +2d90 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2da0 00 01 00 01 00 00 00 01 01 01 01 00 01 01 01 01 ................ +2db0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2dc0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +2dd0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2de0 00 01 00 01 00 00 00 00 01 01 01 00 00 01 01 00 ................ +2df0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2e00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +2e10 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2e20 00 01 00 01 01 01 01 00 00 01 01 01 01 00 01 00 ................ +2e30 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2e40 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +2e50 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2e60 00 01 01 01 00 01 01 01 01 00 00 01 00 01 00 00 ................ +2e70 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2e80 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +2e90 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2ea0 01 00 00 01 00 00 00 00 00 01 01 01 01 01 01 00 ................ +2eb0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2ec0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +2ed0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2ee0 01 00 01 00 00 01 00 00 01 00 01 00 00 01 00 00 ................ +2ef0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2f00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +2f10 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2f20 01 00 01 00 01 01 00 01 00 00 01 01 00 00 01 01 ................ +2f30 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2f40 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 00 ................ +2f50 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2f60 01 00 01 00 01 00 00 01 01 00 00 00 00 00 01 00 ................ +2f70 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +2f80 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 ................ +2f90 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2fa0 01 00 00 01 01 01 00 00 00 00 01 00 00 00 00 01 ................ +2fb0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2fc0 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 00 ................ +2fd0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +2fe0 01 00 00 00 01 00 00 00 01 01 01 01 00 01 01 00 ................ +2ff0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3000 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 00 ................ +3010 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3020 00 01 01 01 01 00 00 00 01 00 00 01 01 01 00 00 ................ +3030 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3040 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 ................ +3050 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3060 00 01 01 01 00 00 00 00 00 00 01 01 00 00 00 01 ................ +3070 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3080 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +3090 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +30a0 00 01 01 01 00 00 01 00 00 00 01 00 00 01 00 00 ................ +30b0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +30c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +30d0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +30e0 00 01 01 01 01 01 01 01 00 01 01 00 00 00 00 00 ................ +30f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3100 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +3110 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3120 01 00 00 01 00 01 01 01 01 00 00 01 01 01 00 00 ................ +3130 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3140 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +3150 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3160 01 00 01 01 01 00 00 01 01 01 01 00 00 01 01 00 ................ +3170 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3180 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +3190 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +31a0 01 01 01 00 00 01 00 00 00 00 00 01 01 01 01 00 ................ +31b0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +31c0 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 00 ................ +31d0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +31e0 00 00 00 00 01 01 00 00 01 01 01 00 00 00 00 00 ................ +31f0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3200 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +3210 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3220 00 00 01 00 01 00 00 01 00 00 01 00 00 00 01 00 ................ +3230 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3240 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +3250 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3260 00 00 01 01 00 00 01 00 00 00 01 00 00 01 00 00 ................ +3270 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3280 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +3290 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +32a0 00 00 01 00 01 00 00 01 01 01 00 00 00 00 01 00 ................ +32b0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +32c0 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 ................ +32d0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +32e0 00 00 00 01 00 01 01 00 00 00 00 01 00 01 01 01 ................ +32f0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3300 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 ................ +3310 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3320 01 01 01 01 01 01 01 01 00 00 01 01 00 00 00 01 ................ +3330 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3340 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 00 ................ +3350 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3360 01 01 01 00 01 01 00 00 00 00 01 01 01 00 00 01 ................ +3370 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3380 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +3390 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +33a0 01 01 00 01 01 01 01 01 01 00 00 01 01 01 01 00 ................ +33b0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +33c0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +33d0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +33e0 01 01 00 01 01 00 00 01 01 01 01 01 01 01 01 00 ................ +33f0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3400 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 00 ................ +3410 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3420 01 01 00 01 01 01 00 01 01 01 01 00 00 00 01 01 ................ +3430 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3440 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +3450 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3460 01 01 01 00 01 01 00 01 01 01 01 00 01 00 01 00 ................ +3470 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3480 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 ................ +3490 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +34a0 00 00 00 00 01 00 00 01 00 00 01 00 00 00 00 01 ................ +34b0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +34c0 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 00 ................ +34d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +34e0 00 00 01 00 00 01 00 01 00 00 01 00 00 01 01 00 ................ +34f0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3500 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 ................ +3510 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3520 00 00 01 01 00 00 00 00 00 00 01 01 01 00 01 00 ................ +3530 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3540 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 00 ................ +3550 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3560 00 00 00 01 01 01 01 01 00 00 00 00 00 00 01 00 ................ +3570 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3580 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 ................ +3590 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +35a0 01 01 01 01 01 00 00 00 00 01 01 01 01 00 00 01 ................ +35b0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +35c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +35d0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +35e0 01 01 00 00 00 01 01 00 00 01 00 01 00 00 01 00 ................ +35f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3600 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +3610 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3620 01 00 00 01 00 00 01 01 00 01 01 01 00 01 01 00 ................ +3630 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3640 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 ................ +3650 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3660 00 01 01 00 01 00 01 00 00 00 00 00 00 00 00 01 ................ +3670 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3680 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 01 ................ +3690 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +36a0 00 01 00 01 00 00 01 00 01 00 01 01 01 00 00 01 ................ +36b0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +36c0 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 ................ +36d0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +36e0 00 01 00 00 01 01 01 00 00 00 00 01 01 00 01 01 ................ +36f0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3700 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3710 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3720 00 01 00 01 01 00 00 00 01 01 00 00 01 00 00 00 ................ +3730 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3740 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +3750 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3760 00 01 01 00 01 00 00 00 01 00 00 00 01 01 00 01 ................ +3770 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3780 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 ................ +3790 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +37a0 00 01 01 01 00 01 01 01 01 00 01 00 01 01 01 00 ................ +37b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +37c0 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 ................ +37d0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +37e0 01 00 00 00 00 00 00 01 01 00 00 01 00 01 01 01 ................ +37f0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3800 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 ................ +3810 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3820 01 00 00 00 00 01 00 01 01 01 01 01 01 01 00 01 ................ +3830 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3840 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +3850 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3860 01 00 00 00 00 01 00 01 00 00 01 00 00 01 01 00 ................ +3870 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3880 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 00 ................ +3890 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +38a0 00 01 01 01 01 01 01 00 01 01 00 01 00 00 00 00 ................ +38b0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +38c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +38d0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +38e0 00 01 01 01 01 00 00 00 01 00 01 01 01 01 00 01 ................ +38f0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3900 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +3910 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3920 00 01 01 01 00 00 00 01 01 01 00 01 01 01 01 01 ................ +3930 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3940 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +3950 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3960 00 01 01 00 01 00 01 00 01 00 01 01 01 00 00 00 ................ +3970 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3980 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +3990 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +39a0 00 01 01 00 01 00 01 01 00 01 01 00 00 01 00 01 ................ +39b0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +39c0 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 ................ +39d0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +39e0 00 01 01 01 00 01 00 01 00 01 01 01 00 00 01 00 ................ +39f0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3a00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +3a10 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3a20 01 00 00 00 01 01 01 00 00 01 00 00 01 01 01 01 ................ +3a30 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3a40 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +3a50 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3a60 01 00 01 01 00 01 00 00 00 00 00 01 01 00 01 01 ................ +3a70 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3a80 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +3a90 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3aa0 01 01 00 01 01 01 00 01 00 00 00 00 01 00 01 01 ................ +3ab0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3ac0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +3ad0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3ae0 01 01 01 01 01 01 01 00 01 01 00 00 00 00 01 01 ................ +3af0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3b00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +3b10 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3b20 00 00 00 00 01 00 01 01 01 01 00 01 00 01 00 01 ................ +3b30 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3b40 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +3b50 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3b60 00 00 00 00 00 00 01 00 00 01 01 00 01 00 01 01 ................ +3b70 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3b80 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +3b90 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3ba0 01 01 01 00 01 01 00 00 00 00 01 01 00 01 00 00 ................ +3bb0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3bc0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +3bd0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3be0 01 01 00 01 00 00 01 01 01 01 01 00 01 01 01 00 ................ +3bf0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3c00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 00 ................ +3c10 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3c20 01 01 00 00 00 00 00 01 00 01 00 00 00 00 00 01 ................ +3c30 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3c40 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 ................ +3c50 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3c60 01 00 01 01 00 01 00 00 00 01 01 01 01 00 00 00 ................ +3c70 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3c80 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +3c90 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3ca0 01 00 01 00 01 01 01 01 01 01 00 01 00 01 00 00 ................ +3cb0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3cc0 01 01 01 01 01 01 01 01 01 01 01 01 00 00 00 01 ................ +3cd0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3ce0 01 00 01 01 00 00 01 00 00 00 01 01 01 00 01 01 ................ +3cf0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3d00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 00 ................ +3d10 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3d20 01 00 01 01 01 01 01 00 01 00 00 00 00 00 00 01 ................ +3d30 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3d40 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 00 ................ +3d50 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3d60 01 01 00 00 01 01 00 00 00 01 01 01 01 01 00 01 ................ +3d70 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3d80 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 ................ +3d90 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3da0 01 01 01 00 00 00 00 01 00 00 01 00 01 01 00 01 ................ +3db0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3dc0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +3dd0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3de0 01 01 01 01 00 01 01 01 00 00 00 01 01 01 00 00 ................ +3df0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3e00 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +3e10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3e20 00 00 00 00 00 01 01 00 01 01 01 01 00 01 00 00 ................ +3e30 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3e40 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +3e50 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3e60 00 00 00 00 01 01 01 00 00 00 00 00 01 00 01 00 ................ +3e70 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3e80 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +3e90 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3ea0 00 00 00 00 00 01 01 01 01 01 01 00 01 00 01 00 ................ +3eb0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3ec0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3ed0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3ee0 01 01 01 01 01 00 01 00 01 01 00 01 00 00 00 01 ................ +3ef0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3f00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 ................ +3f10 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3f20 01 01 01 00 01 01 01 00 00 00 00 00 01 01 00 00 ................ +3f30 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3f40 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +3f50 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3f60 01 01 01 00 00 01 01 01 00 00 00 00 01 01 01 01 ................ +3f70 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3f80 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3f90 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3fa0 01 01 01 00 01 00 00 00 01 00 00 01 01 01 00 00 ................ +3fb0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +3fc0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +3fd0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +3fe0 01 01 01 01 00 00 01 00 01 00 01 01 00 00 01 00 ................ +3ff0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +4000 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +4010 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4020 00 00 00 00 00 01 00 01 01 00 00 01 01 01 00 00 ................ +4030 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +4050 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4060 00 00 00 01 01 00 01 00 00 00 01 01 01 01 00 01 ................ +4070 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4080 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +4090 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +40a0 00 00 01 00 01 01 00 00 01 01 00 01 01 01 00 00 ................ +40b0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +40c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +40d0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +40e0 00 00 01 01 01 00 00 01 01 00 01 00 01 00 01 00 ................ +40f0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4100 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +4110 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4120 00 00 01 01 01 01 00 01 00 01 01 01 01 00 00 01 ................ +4130 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4140 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +4150 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4160 00 00 01 01 00 01 00 00 01 01 00 00 00 01 00 00 ................ +4170 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +4180 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +4190 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +41a0 00 00 01 00 00 00 01 00 01 00 00 01 01 01 00 01 ................ +41b0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +41c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +41d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +41e0 00 00 00 00 01 01 00 01 01 00 00 00 01 00 00 01 ................ +41f0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4200 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +4210 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4220 00 00 00 00 00 00 00 00 00 01 01 01 01 00 01 01 ................ +4230 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4240 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +4250 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4260 00 00 00 00 00 00 00 01 00 00 00 01 00 01 01 00 ................ +4270 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4280 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +4290 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +42a0 00 00 00 00 01 01 01 00 01 00 01 00 00 01 00 01 ................ +42b0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +42c0 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 01 ................ +42d0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +42e0 00 00 01 00 00 00 01 00 01 00 01 00 00 00 00 00 ................ +42f0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4300 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +4310 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4320 00 00 01 01 00 01 01 01 00 01 01 00 00 01 01 01 ................ +4330 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4340 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +4350 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4360 00 01 00 00 01 00 00 00 01 00 00 01 00 01 01 00 ................ +4370 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4380 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +4390 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +43a0 00 01 00 01 00 01 01 01 00 00 01 00 01 00 01 00 ................ +43b0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +43c0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +43d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +43e0 00 01 01 00 00 01 00 00 00 00 01 00 01 00 00 00 ................ +43f0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +4400 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +4410 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4420 00 01 01 00 01 01 00 01 01 01 00 01 01 01 01 01 ................ +4430 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4440 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +4450 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4460 00 01 01 00 01 01 01 01 00 00 00 00 00 01 01 00 ................ +4470 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +4480 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 01 ................ +4490 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +44a0 00 01 01 00 00 00 00 01 00 01 01 01 01 00 00 00 ................ +44b0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +44c0 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 00 ................ +44d0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +44e0 00 01 00 00 01 00 00 00 00 00 00 01 00 00 01 01 ................ +44f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4500 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +4510 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4520 00 00 01 00 00 01 00 01 00 01 00 01 01 01 00 01 ................ +4530 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4540 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +4550 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4560 00 00 00 00 00 00 00 00 01 00 00 01 00 00 01 01 ................ +4570 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4580 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +4590 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +45a0 01 01 01 00 00 00 01 01 00 01 00 00 01 00 01 00 ................ +45b0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +45c0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +45d0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +45e0 01 01 00 01 00 00 00 01 00 00 01 01 00 00 01 00 ................ +45f0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4600 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +4610 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +4620 01 01 00 00 01 01 01 00 01 01 00 01 01 01 01 00 ................ +4630 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4640 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +4650 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +4660 01 01 00 01 00 00 01 00 01 00 00 00 00 00 01 00 ................ +4670 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4680 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +4690 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +46a0 01 01 00 01 00 01 00 00 00 00 00 01 01 01 01 01 ................ +46b0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +46c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +46d0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +46e0 01 01 00 00 01 01 01 00 01 01 01 00 01 00 00 00 ................ +46f0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4700 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +4710 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +4720 01 00 01 01 01 01 01 01 00 00 00 00 01 01 01 00 ................ +4730 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4740 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +4750 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +4760 01 00 01 00 00 01 01 01 00 01 00 01 00 00 00 00 ................ +4770 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4780 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 ................ +4790 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +47a0 01 00 00 01 00 00 00 00 00 00 00 00 01 01 01 00 ................ +47b0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +47c0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +47d0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +47e0 01 00 00 00 00 00 00 00 01 01 00 01 00 01 00 01 ................ +47f0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4800 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +4810 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +4820 00 01 01 01 01 01 01 01 00 00 00 01 01 01 01 01 ................ +4830 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4840 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +4850 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +4860 01 00 00 00 01 00 00 00 00 01 01 01 01 01 00 01 ................ +4870 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4880 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +4890 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +48a0 01 00 00 01 01 01 00 00 01 01 01 01 01 01 00 00 ................ +48b0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +48c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +48d0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +48e0 01 00 01 01 01 00 01 00 00 01 00 01 00 00 00 00 ................ +48f0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +4900 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 ................ +4910 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +4920 01 01 00 01 01 01 01 01 01 01 00 01 00 00 01 00 ................ +4930 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +4940 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +4950 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4960 00 00 00 00 00 01 01 00 01 01 01 00 01 00 00 00 ................ +4970 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4980 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +4990 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +49a0 00 00 01 00 01 00 00 01 00 01 01 00 00 01 01 00 ................ +49b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +49c0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +49d0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +49e0 00 01 00 00 00 00 01 01 01 00 01 01 01 01 01 01 ................ +49f0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4a00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +4a10 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4a20 00 01 00 01 00 00 01 00 01 01 00 00 01 01 00 00 ................ +4a30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4a40 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +4a50 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4a60 00 01 00 01 00 01 00 00 01 00 00 00 00 00 01 00 ................ +4a70 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4a80 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +4a90 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4aa0 00 01 00 00 00 01 01 01 00 00 00 00 01 00 01 01 ................ +4ab0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4ac0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +4ad0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4ae0 00 00 01 01 00 00 00 00 01 01 01 01 00 00 00 01 ................ +4af0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4b00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 00 ................ +4b10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4b20 00 00 01 00 00 00 00 00 00 01 01 00 00 01 00 01 ................ +4b30 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4b40 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +4b50 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4b60 00 00 00 01 01 01 00 01 00 01 00 01 00 01 01 00 ................ +4b70 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4b80 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 ................ +4b90 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4ba0 00 00 01 00 01 00 01 00 01 00 01 00 01 00 00 01 ................ +4bb0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4bc0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +4bd0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4be0 00 01 00 00 00 00 00 01 00 00 01 01 01 00 01 00 ................ +4bf0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +4c00 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +4c10 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4c20 00 01 00 01 01 00 00 00 01 01 01 00 01 00 00 00 ................ +4c30 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4c40 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 01 ................ +4c50 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4c60 00 01 01 00 01 00 01 00 01 00 00 00 00 01 01 00 ................ +4c70 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4c80 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +4c90 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4ca0 00 01 01 01 01 00 01 00 01 01 01 00 00 01 00 01 ................ +4cb0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4cc0 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 ................ +4cd0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4ce0 01 00 00 00 01 00 00 00 01 01 01 01 01 01 00 01 ................ +4cf0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4d00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 00 ................ +4d10 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4d20 01 00 00 01 00 01 00 00 00 00 01 00 01 01 00 01 ................ +4d30 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4d40 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +4d50 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4d60 01 00 00 01 00 01 01 00 01 01 00 00 01 00 01 00 ................ +4d70 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4d80 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 00 ................ +4d90 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4da0 01 00 00 00 01 01 00 01 00 00 00 00 00 01 00 01 ................ +4db0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4dc0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +4dd0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4de0 00 01 01 01 01 00 00 00 00 01 00 01 01 01 00 01 ................ +4df0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4e00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +4e10 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4e20 00 01 01 00 00 00 00 01 01 01 01 00 00 00 00 01 ................ +4e30 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4e40 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +4e50 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4e60 00 01 00 00 01 01 01 01 01 01 01 01 01 00 00 01 ................ +4e70 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4e80 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +4e90 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4ea0 00 01 00 00 00 01 01 00 00 01 01 01 01 00 01 01 ................ +4eb0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4ec0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +4ed0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4ee0 00 01 00 00 01 00 01 00 00 01 01 00 00 00 00 00 ................ +4ef0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4f00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +4f10 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4f20 00 01 00 01 01 01 00 00 00 01 00 01 00 01 00 01 ................ +4f30 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4f40 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +4f50 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4f60 00 01 01 01 01 00 00 00 01 00 00 01 01 00 01 00 ................ +4f70 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4f80 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +4f90 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4fa0 01 00 00 01 01 00 01 01 01 01 01 01 00 01 00 01 ................ +4fb0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4fc0 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 00 ................ +4fd0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +4fe0 01 01 00 00 00 00 01 01 00 01 00 01 00 01 00 00 ................ +4ff0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5000 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +5010 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5020 01 01 01 00 01 00 01 00 00 01 00 00 00 01 00 01 ................ +5030 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5040 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 ................ +5050 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +5060 00 00 00 00 01 01 00 01 00 01 01 01 01 01 00 01 ................ +5070 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5080 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +5090 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +50a0 00 00 01 00 00 00 01 01 01 00 00 01 01 00 01 00 ................ +50b0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +50c0 01 01 01 01 01 01 01 01 01 01 01 01 00 00 01 00 ................ +50d0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +50e0 00 00 01 00 01 00 01 00 00 00 01 00 01 01 01 00 ................ +50f0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5100 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 00 ................ +5110 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +5120 00 00 01 00 00 00 01 01 00 00 01 00 00 01 01 00 ................ +5130 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5140 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +5150 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +5160 00 00 00 01 00 01 00 01 01 00 00 00 00 01 00 00 ................ +5170 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5180 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 ................ +5190 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +51a0 00 00 00 00 00 01 01 00 01 01 01 01 01 00 00 01 ................ +51b0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +51c0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +51d0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +51e0 01 01 01 01 00 01 00 01 01 01 00 00 01 00 01 00 ................ +51f0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5200 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +5210 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5220 01 01 01 00 00 01 00 01 01 01 00 00 01 00 01 00 ................ +5230 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5240 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +5250 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5260 01 01 00 01 00 01 01 00 00 01 01 00 01 01 01 00 ................ +5270 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5280 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +5290 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +52a0 01 01 00 00 01 00 00 00 00 00 00 01 00 01 01 00 ................ +52b0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +52c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +52d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +52e0 01 00 01 01 01 01 01 00 00 00 00 00 00 00 01 01 ................ +52f0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +5310 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5320 01 00 01 01 01 00 00 00 01 01 00 00 00 01 01 01 ................ +5330 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5340 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +5350 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5360 01 00 01 01 01 00 00 01 01 00 00 00 01 00 01 00 ................ +5370 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5380 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 ................ +5390 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +53a0 01 00 01 01 01 01 00 00 00 01 00 01 00 00 00 00 ................ +53b0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +53c0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +53d0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +53e0 01 00 01 01 01 00 01 00 00 01 00 00 01 01 00 00 ................ +53f0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5400 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +5410 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5420 01 00 01 00 01 01 01 01 01 01 00 00 00 00 01 00 ................ +5430 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5440 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +5450 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5460 01 00 00 01 01 01 00 01 00 01 01 01 00 01 00 01 ................ +5470 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5480 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +5490 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +54a0 01 00 00 00 00 01 01 00 00 00 00 00 01 01 01 01 ................ +54b0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +54c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +54d0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +54e0 00 01 01 00 01 00 01 01 01 00 00 00 00 01 01 01 ................ +54f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5500 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +5510 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5520 00 01 00 01 00 01 00 00 01 01 01 00 01 01 00 01 ................ +5530 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5540 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +5550 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5560 00 01 00 00 00 01 00 01 01 01 01 01 00 00 00 00 ................ +5570 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5580 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +5590 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +55a0 00 00 01 01 01 00 01 01 00 00 00 01 00 00 00 00 ................ +55b0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +55c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +55d0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +55e0 00 00 01 01 00 00 00 01 01 01 00 00 01 01 01 01 ................ +55f0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5600 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +5610 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5620 00 00 01 00 00 01 01 01 00 01 01 01 00 01 01 01 ................ +5630 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5640 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 ................ +5650 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5660 00 00 00 01 01 01 01 01 01 00 01 01 00 00 01 01 ................ +5670 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5680 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +5690 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +56a0 00 00 00 01 01 00 00 01 00 00 00 00 00 00 01 01 ................ +56b0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +56c0 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 ................ +56d0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +56e0 00 00 00 01 00 01 01 00 01 01 01 01 00 00 01 01 ................ +56f0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5700 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +5710 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5720 00 00 00 01 00 01 01 00 01 01 01 01 00 01 01 00 ................ +5730 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5740 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 ................ +5750 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5760 00 00 00 01 00 01 00 01 00 01 00 01 00 01 01 00 ................ +5770 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5780 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +5790 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +57a0 00 00 00 01 00 00 00 00 01 00 01 01 00 01 01 00 ................ +57b0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +57c0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +57d0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +57e0 00 00 00 00 01 00 00 00 01 01 01 01 00 01 00 01 ................ +57f0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5800 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +5810 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5820 00 00 00 00 00 00 01 00 01 01 01 01 00 00 01 01 ................ +5830 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5840 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +5850 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5860 01 01 01 01 01 01 01 01 01 00 01 01 00 00 00 01 ................ +5870 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5880 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +5890 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +58a0 00 00 00 00 00 00 01 00 00 01 00 01 01 01 00 01 ................ +58b0 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +58c0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +58d0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +58e0 00 00 00 00 01 01 00 00 01 01 00 00 00 00 00 01 ................ +58f0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5900 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 01 ................ +5910 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5920 00 00 00 01 01 01 00 00 01 00 00 01 00 01 01 00 ................ +5930 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5940 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 00 ................ +5950 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5960 00 00 01 00 01 00 00 01 01 01 00 00 01 00 00 01 ................ +5970 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5980 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 00 ................ +5990 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +59a0 00 00 01 00 01 00 01 00 00 00 00 00 00 01 01 01 ................ +59b0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +59c0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +59d0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +59e0 00 00 00 01 00 00 01 01 01 01 00 01 01 00 00 00 ................ +59f0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5a00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 00 ................ +5a10 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5a20 01 01 01 01 00 00 00 01 00 01 00 01 01 01 00 00 ................ +5a30 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5a40 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 ................ +5a50 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5a60 01 01 00 00 01 01 00 00 00 01 00 01 00 00 00 00 ................ +5a70 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5a80 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 00 ................ +5a90 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5aa0 01 00 01 00 01 01 00 01 01 00 00 01 01 01 00 00 ................ +5ab0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5ac0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +5ad0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5ae0 01 00 00 01 01 00 01 00 00 00 00 00 00 00 00 01 ................ +5af0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5b00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +5b10 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5b20 01 00 00 01 00 00 00 01 01 00 01 01 00 01 01 00 ................ +5b30 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5b40 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +5b50 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5b60 01 00 00 01 00 00 00 00 00 01 00 00 00 00 01 00 ................ +5b70 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5b80 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 00 ................ +5b90 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5ba0 01 00 00 01 00 00 00 01 00 01 01 01 01 00 00 00 ................ +5bb0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5bc0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +5bd0 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5be0 01 00 00 00 01 01 01 01 00 01 01 00 00 01 00 01 ................ +5bf0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5c00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 ................ +5c10 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5c20 01 00 00 01 00 00 00 00 00 01 01 00 01 01 01 00 ................ +5c30 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5c40 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +5c50 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5c60 01 00 00 01 01 00 00 01 00 00 01 00 01 01 00 01 ................ +5c70 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5c80 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +5c90 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5ca0 01 00 01 00 00 01 01 00 00 01 00 00 01 01 01 00 ................ +5cb0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5cc0 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 01 ................ +5cd0 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5ce0 01 00 01 01 00 00 00 01 00 00 01 01 00 00 00 01 ................ +5cf0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5d00 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 01 ................ +5d10 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5d20 01 00 01 01 00 01 00 00 00 01 01 01 00 00 00 00 ................ +5d30 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5d40 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +5d50 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5d60 01 00 01 00 01 01 01 01 01 01 00 00 00 01 01 00 ................ +5d70 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5d80 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 00 ................ +5d90 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5da0 01 00 01 00 00 01 01 00 00 00 00 01 01 00 01 00 ................ +5db0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5dc0 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 ................ +5dd0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5de0 01 00 00 01 01 00 00 00 01 01 01 00 00 00 00 00 ................ +5df0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5e00 01 01 01 01 01 01 01 01 01 01 01 01 00 00 01 00 ................ +5e10 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5e20 01 00 00 00 01 01 01 01 00 01 00 01 00 01 01 00 ................ +5e30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5e40 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5e50 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5e60 01 00 00 00 01 01 01 00 00 00 00 01 01 01 01 00 ................ +5e70 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5e80 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +5e90 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5ea0 01 00 00 01 00 01 00 01 00 01 01 00 01 00 00 01 ................ +5eb0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5ec0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +5ed0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5ee0 01 00 01 00 00 01 01 00 00 01 00 01 01 01 00 01 ................ +5ef0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5f00 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +5f10 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5f20 01 00 01 01 01 01 00 01 01 01 01 01 01 01 00 00 ................ +5f30 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5f40 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 01 ................ +5f50 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5f60 01 01 00 01 01 00 01 00 00 01 01 00 00 00 00 01 ................ +5f70 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5f80 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +5f90 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +5fa0 01 01 01 01 00 01 01 01 01 00 00 01 00 00 01 01 ................ +5fb0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5fc0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +5fd0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +5fe0 00 00 00 00 01 01 00 01 00 00 01 00 00 00 01 01 ................ +5ff0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6000 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +6010 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6020 00 00 00 01 01 00 01 00 01 01 01 00 00 01 00 01 ................ +6030 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6040 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +6050 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6060 00 00 00 01 01 01 00 00 01 01 01 00 00 01 01 00 ................ +6070 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6080 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +6090 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +60a0 00 00 00 01 00 01 00 01 01 01 01 01 00 01 01 00 ................ +60b0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +60c0 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 00 ................ +60d0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +60e0 00 00 00 00 01 01 00 00 01 00 00 00 01 00 01 01 ................ +60f0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6100 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6110 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6120 00 00 00 00 00 01 01 00 01 00 01 01 01 00 01 01 ................ +6130 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6140 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 ................ +6150 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6160 00 00 00 00 00 01 00 01 00 00 01 00 01 01 00 01 ................ +6170 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6180 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +6190 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +61a0 00 00 00 00 00 01 00 01 01 01 01 00 00 00 01 01 ................ +61b0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +61c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +61d0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +61e0 00 00 00 00 00 01 00 01 00 01 00 00 00 01 01 00 ................ +61f0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6200 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +6210 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6220 00 00 00 00 00 01 01 00 00 00 00 01 00 00 01 00 ................ +6230 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6240 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 ................ +6250 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6260 00 00 00 00 01 01 00 00 00 00 00 00 00 01 01 01 ................ +6270 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6280 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +6290 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +62a0 00 00 00 01 00 01 00 00 01 01 00 00 00 01 00 00 ................ +62b0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +62c0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +62d0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +62e0 00 00 00 01 01 00 00 01 01 01 01 01 00 01 00 00 ................ +62f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6300 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +6310 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6320 00 00 00 01 00 00 00 01 00 01 01 00 00 00 00 01 ................ +6330 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6340 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +6350 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6360 01 01 01 01 01 00 01 01 01 00 00 01 00 00 00 00 ................ +6370 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6380 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 ................ +6390 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +63a0 01 01 00 01 01 01 00 01 00 00 00 00 00 01 01 01 ................ +63b0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +63c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +63d0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +63e0 01 00 01 01 01 01 00 01 00 00 01 01 01 00 01 01 ................ +63f0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6400 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +6410 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6420 01 00 01 00 00 00 01 01 01 00 01 00 00 00 01 01 ................ +6430 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6440 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6450 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6460 01 00 00 01 00 01 00 01 00 01 00 01 01 01 00 00 ................ +6470 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6480 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6490 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +64a0 01 00 00 01 00 01 01 00 00 00 00 00 01 00 00 01 ................ +64b0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +64c0 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 ................ +64d0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +64e0 01 00 01 00 00 00 00 00 01 00 00 00 00 00 00 01 ................ +64f0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6500 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +6510 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6520 01 00 01 00 00 01 01 01 01 00 00 01 01 00 00 00 ................ +6530 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6540 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +6550 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6560 01 00 01 00 00 01 01 01 01 01 00 00 00 01 00 00 ................ +6570 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6580 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6590 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +65a0 01 00 00 01 01 00 01 00 00 00 01 00 01 01 00 00 ................ +65b0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +65c0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +65d0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +65e0 00 01 01 01 01 01 00 00 00 00 01 00 01 01 00 01 ................ +65f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6600 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +6610 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6620 00 01 00 01 00 01 00 01 01 01 00 01 00 01 00 01 ................ +6630 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6640 01 01 01 01 01 01 01 01 01 01 01 01 00 00 00 01 ................ +6650 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6660 00 00 01 01 00 00 01 00 01 01 01 00 00 00 00 01 ................ +6670 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6680 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +6690 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +66a0 00 00 00 01 01 00 01 01 01 01 00 00 01 00 00 01 ................ +66b0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +66c0 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 00 ................ +66d0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +66e0 00 00 00 01 00 00 00 01 01 01 00 00 01 01 00 01 ................ +66f0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6700 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +6710 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6720 00 00 00 01 00 01 01 01 00 01 01 00 01 00 01 00 ................ +6730 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6740 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +6750 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6760 00 00 01 00 01 00 00 00 00 01 01 01 00 00 01 01 ................ +6770 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6780 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +6790 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +67a0 00 01 00 00 00 01 01 00 01 00 01 00 00 01 00 01 ................ +67b0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +67c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +67d0 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +67e0 00 01 01 00 01 01 00 01 00 01 00 00 00 00 00 00 ................ +67f0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6800 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +6810 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6820 01 00 00 01 01 00 00 01 00 01 01 01 01 00 01 00 ................ +6830 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6840 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +6850 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6860 01 01 00 00 01 00 00 00 01 01 01 01 00 01 00 00 ................ +6870 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6880 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +6890 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +68a0 01 01 01 00 01 00 01 01 00 01 01 00 01 01 01 01 ................ +68b0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +68c0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +68d0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +68e0 01 01 01 01 00 01 01 01 01 00 00 01 00 01 01 00 ................ +68f0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6900 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +6910 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6920 01 01 01 00 01 00 00 00 00 01 01 01 00 00 00 00 ................ +6930 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6940 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +6950 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6960 01 00 01 01 01 01 01 00 01 00 01 01 01 01 01 01 ................ +6970 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6980 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +6990 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +69a0 01 00 00 00 01 00 00 01 01 01 00 01 01 01 00 00 ................ +69b0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +69c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +69d0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +69e0 00 01 00 01 01 00 00 01 00 01 00 01 00 00 01 00 ................ +69f0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6a00 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 00 ................ +6a10 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6a20 00 00 01 01 01 01 00 00 01 00 01 01 00 00 00 01 ................ +6a30 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6a40 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +6a50 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6a60 00 00 01 01 01 00 01 00 01 00 00 00 01 01 01 01 ................ +6a70 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6a80 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +6a90 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6aa0 00 01 00 00 01 01 00 00 01 01 01 01 00 01 01 01 ................ +6ab0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6ac0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +6ad0 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6ae0 00 01 01 00 01 01 00 01 00 01 00 00 01 00 01 00 ................ +6af0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6b00 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +6b10 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6b20 01 00 00 01 00 01 00 00 01 01 00 01 00 00 01 00 ................ +6b30 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6b40 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 ................ +6b50 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6b60 01 00 01 01 01 01 00 01 01 01 00 01 01 00 01 01 ................ +6b70 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6b80 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 00 ................ +6b90 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6ba0 01 01 01 00 00 01 00 00 01 00 00 01 01 00 01 00 ................ +6bb0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6bc0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +6bd0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6be0 01 01 01 01 01 01 00 00 01 00 00 00 01 01 00 01 ................ +6bf0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6c00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 00 ................ +6c10 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6c20 00 00 00 00 00 01 01 01 01 01 00 01 00 00 01 00 ................ +6c30 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6c40 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +6c50 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6c60 00 00 00 00 00 01 00 01 01 01 00 01 01 01 00 00 ................ +6c70 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6c80 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +6c90 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6ca0 01 01 01 01 01 00 01 00 01 00 00 01 00 00 01 01 ................ +6cb0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6cc0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +6cd0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6ce0 01 01 01 00 01 01 01 00 01 00 00 01 01 01 00 00 ................ +6cf0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6d00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 01 ................ +6d10 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6d20 01 01 01 00 00 01 01 00 01 01 00 01 00 00 00 01 ................ +6d30 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6d40 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +6d50 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6d60 01 01 01 00 01 01 01 00 01 01 00 01 00 01 01 00 ................ +6d70 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6d80 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +6d90 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6da0 00 00 00 00 00 01 01 00 00 01 00 00 00 01 00 00 ................ +6db0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6dc0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6dd0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6de0 00 00 01 00 00 01 01 01 00 01 01 01 01 00 01 01 ................ +6df0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6e00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 ................ +6e10 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6e20 00 01 00 00 01 00 00 01 00 00 00 00 01 00 00 01 ................ +6e30 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6e40 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +6e50 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6e60 00 01 01 00 00 01 01 01 01 01 00 00 01 00 00 01 ................ +6e70 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6e80 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 ................ +6e90 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6ea0 01 00 00 00 00 00 00 01 01 00 00 00 01 01 00 00 ................ +6eb0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +6ec0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +6ed0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6ee0 01 00 00 01 00 00 01 01 00 00 01 00 00 00 01 01 ................ +6ef0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6f00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 00 00 ................ +6f10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6f20 01 00 00 01 01 00 01 01 00 00 01 01 00 00 01 01 ................ +6f30 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6f40 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +6f50 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6f60 01 00 00 01 01 00 00 00 01 01 00 01 01 00 00 00 ................ +6f70 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6f80 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +6f90 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6fa0 01 00 00 00 01 01 00 00 01 01 00 00 01 01 01 00 ................ +6fb0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6fc0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +6fd0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +6fe0 00 01 01 01 01 01 00 01 00 00 00 00 00 00 01 00 ................ +6ff0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7000 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 00 ................ +7010 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7020 00 01 01 01 00 00 00 00 01 00 01 01 00 01 01 00 ................ +7030 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +7050 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7060 00 01 01 00 01 00 01 01 01 00 00 01 00 01 01 01 ................ +7070 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7080 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +7090 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +70a0 00 01 01 00 01 01 01 00 01 00 00 01 00 01 00 00 ................ +70b0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +70c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +70d0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +70e0 00 01 01 01 00 01 01 00 00 01 00 00 01 01 01 00 ................ +70f0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7100 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +7110 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7120 00 01 01 01 01 01 00 01 01 00 00 01 00 00 01 01 ................ +7130 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7140 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +7150 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7160 01 00 00 00 00 00 00 01 00 01 00 01 00 00 01 01 ................ +7170 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7180 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +7190 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +71a0 01 00 00 00 00 00 00 00 00 00 01 00 00 01 01 00 ................ +71b0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +71c0 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 01 ................ +71d0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +71e0 00 01 01 01 00 01 01 00 00 00 01 01 01 00 00 00 ................ +71f0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7200 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 ................ +7210 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7220 00 01 01 00 00 00 01 01 00 01 00 01 01 00 01 00 ................ +7230 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7240 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7250 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7260 00 01 00 00 00 00 01 01 01 01 00 01 00 00 00 00 ................ +7270 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7280 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +7290 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +72a0 00 00 00 01 01 00 01 01 00 00 00 01 00 01 01 01 ................ +72b0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +72c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +72d0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +72e0 01 01 01 00 01 00 01 00 01 01 01 00 01 01 01 00 ................ +72f0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7300 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 00 ................ +7310 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7320 01 00 01 01 01 01 00 01 01 00 00 01 01 01 00 00 ................ +7330 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7340 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 00 ................ +7350 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7360 01 00 00 01 01 00 01 01 00 00 00 01 00 01 00 01 ................ +7370 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7380 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 ................ +7390 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +73a0 01 00 00 00 00 01 01 01 01 01 00 00 01 00 00 00 ................ +73b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +73c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +73d0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +73e0 01 00 00 00 00 00 01 01 00 00 01 00 01 01 00 01 ................ +73f0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7400 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7410 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7420 01 00 00 00 00 01 01 00 01 01 00 01 00 00 01 00 ................ +7430 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7440 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 01 ................ +7450 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7460 01 00 00 00 01 01 01 00 00 01 01 01 01 01 01 01 ................ +7470 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7480 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +7490 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +74a0 01 00 00 01 00 00 00 00 00 00 00 00 00 00 01 00 ................ +74b0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +74c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +74d0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +74e0 01 00 00 00 00 01 01 01 01 00 01 01 00 00 01 01 ................ +74f0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7500 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +7510 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7520 00 01 01 01 00 00 01 00 00 00 01 01 01 01 00 01 ................ +7530 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7540 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +7550 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7560 00 01 00 01 01 00 00 01 00 00 01 01 00 00 01 00 ................ +7570 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7580 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +7590 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +75a0 00 01 00 00 00 01 00 01 00 00 01 00 00 00 01 01 ................ +75b0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +75c0 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 ................ +75d0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +75e0 00 00 01 01 01 00 00 01 00 01 00 00 00 01 00 00 ................ +75f0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7600 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +7610 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7620 00 00 01 01 01 00 01 01 01 00 00 00 00 01 00 01 ................ +7630 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7640 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +7650 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7660 00 01 00 00 01 00 00 00 00 01 00 01 00 00 01 01 ................ +7670 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7680 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 ................ +7690 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +76a0 00 01 00 01 01 01 01 01 00 01 01 00 01 00 01 00 ................ +76b0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +76c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +76d0 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +76e0 00 01 01 01 01 01 00 00 01 01 01 00 01 00 01 00 ................ +76f0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7700 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +7710 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7720 01 00 00 01 01 01 00 00 01 01 01 01 00 01 01 00 ................ +7730 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7740 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +7750 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7760 01 00 01 01 01 01 00 00 01 00 00 01 00 01 00 01 ................ +7770 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7780 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 ................ +7790 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +77a0 01 01 00 01 01 00 01 00 00 01 01 01 01 00 01 00 ................ +77b0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +77c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +77d0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +77e0 01 01 01 01 00 01 00 00 01 01 00 01 00 01 00 00 ................ +77f0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7800 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +7810 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7820 00 00 00 00 00 01 00 01 01 01 00 01 01 01 00 01 ................ +7830 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7840 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +7850 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7860 00 00 00 00 00 01 01 00 01 01 01 01 00 01 01 00 ................ +7870 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7880 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +7890 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +78a0 01 01 01 01 01 01 01 01 01 00 00 00 01 01 00 01 ................ +78b0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +78c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +78d0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +78e0 01 01 01 01 00 01 00 01 01 00 00 01 00 01 00 01 ................ +78f0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7900 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +7910 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7920 01 01 01 01 00 01 00 01 00 00 00 01 00 00 00 01 ................ +7930 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7940 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +7950 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7960 00 00 00 00 00 00 01 01 01 00 01 00 01 01 01 01 ................ +7970 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7980 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +7990 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +79a0 00 00 00 01 01 01 01 00 00 01 00 00 00 00 01 00 ................ +79b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +79c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +79d0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +79e0 00 00 01 01 00 01 01 01 01 00 01 00 01 00 00 00 ................ +79f0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7a00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 ................ +7a10 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7a20 00 01 00 00 00 01 00 01 00 01 00 00 00 01 01 01 ................ +7a30 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7a40 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +7a50 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7a60 00 01 00 00 00 01 00 00 00 00 01 00 01 00 00 01 ................ +7a70 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7a80 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +7a90 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7aa0 00 00 01 01 01 00 01 01 01 00 00 00 01 01 01 01 ................ +7ab0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7ac0 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 ................ +7ad0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7ae0 00 00 01 00 01 01 01 01 01 00 00 00 01 01 01 01 ................ +7af0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7b00 01 01 01 01 01 01 01 01 01 01 01 01 00 00 01 01 ................ +7b10 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7b20 00 00 01 00 00 00 01 00 01 01 01 00 00 00 00 00 ................ +7b30 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7b40 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 ................ +7b50 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7b60 00 00 00 01 00 01 00 00 00 00 01 00 01 01 00 00 ................ +7b70 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7b80 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 ................ +7b90 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7ba0 00 00 00 00 00 01 00 01 01 01 01 00 00 01 00 01 ................ +7bb0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7bc0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +7bd0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7be0 01 01 01 01 00 01 00 00 01 01 00 00 00 01 01 01 ................ +7bf0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7c00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +7c10 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7c20 01 01 01 00 00 01 01 01 00 01 00 01 00 01 00 00 ................ +7c30 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7c40 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +7c50 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7c60 01 01 01 00 00 00 01 00 00 01 00 00 00 01 00 01 ................ +7c70 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7c80 01 01 01 01 01 01 01 01 01 01 01 00 01 01 01 00 ................ +7c90 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7ca0 01 01 01 00 00 01 00 01 00 00 01 01 01 01 00 00 ................ +7cb0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7cc0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +7cd0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7ce0 01 01 01 00 01 01 00 01 01 00 01 00 01 01 01 00 ................ +7cf0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7d00 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 01 ................ +7d10 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7d20 01 01 01 01 01 00 00 00 01 01 00 01 01 01 01 00 ................ +7d30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7d40 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +7d50 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7d60 00 00 00 00 00 01 00 00 01 01 00 00 00 00 00 00 ................ +7d70 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7d80 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +7d90 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7da0 00 00 00 00 01 01 00 01 01 00 00 01 01 01 00 01 ................ +7db0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7dc0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +7dd0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7de0 00 00 00 00 01 01 00 00 01 00 00 00 01 01 01 01 ................ +7df0 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7e00 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 00 ................ +7e10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7e20 00 00 00 00 00 01 00 00 00 00 01 01 00 00 01 01 ................ +7e30 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7e40 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +7e50 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7e60 01 01 01 01 00 00 01 01 01 01 01 01 01 00 00 01 ................ +7e70 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7e80 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +7e90 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7ea0 01 01 01 00 00 01 00 01 01 00 01 00 00 00 00 00 ................ +7eb0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7ec0 01 01 01 01 01 01 01 01 01 01 01 00 01 01 01 01 ................ +7ed0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7ee0 01 01 00 01 01 01 00 00 01 01 00 00 01 01 01 00 ................ +7ef0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7f00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 ................ +7f10 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7f20 01 01 00 01 01 00 01 01 01 01 00 01 00 01 01 00 ................ +7f30 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7f40 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 01 ................ +7f50 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7f60 01 01 01 00 00 01 00 01 01 00 00 00 01 01 00 01 ................ +7f70 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7f80 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +7f90 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +7fa0 01 01 01 01 01 00 00 00 01 01 00 00 01 01 00 00 ................ +7fb0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7fc0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +7fd0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +7fe0 00 00 00 01 00 00 00 01 00 01 00 00 01 01 00 00 ................ +7ff0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8000 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +8010 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8020 00 00 01 00 00 00 01 01 00 00 00 01 01 00 01 00 ................ +8030 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +8050 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8060 00 00 01 00 01 00 01 00 01 00 01 00 00 00 01 01 ................ +8070 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +8080 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 00 ................ +8090 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +80a0 00 00 01 00 01 00 00 01 00 00 00 00 00 01 00 01 ................ +80b0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +80c0 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 01 ................ +80d0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +80e0 00 00 01 00 00 01 00 01 01 00 00 00 00 01 00 01 ................ +80f0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8100 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +8110 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8120 00 00 01 00 00 00 00 01 00 00 01 00 00 00 00 01 ................ +8130 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +8140 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 01 ................ +8150 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8160 00 00 01 00 00 00 00 01 00 01 01 01 01 01 00 01 ................ +8170 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8180 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +8190 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +81a0 00 00 01 00 00 00 00 01 01 01 00 00 01 00 01 00 ................ +81b0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +81c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +81d0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +81e0 00 00 01 00 00 00 00 01 01 00 00 01 00 00 01 01 ................ +81f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8200 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +8210 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8220 00 00 01 00 00 00 00 01 01 00 01 01 00 00 01 01 ................ +8230 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +8240 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 00 ................ +8250 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8260 00 00 01 00 00 00 01 01 00 00 00 01 01 01 01 00 ................ +8270 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8280 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +8290 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +82a0 00 00 01 00 00 00 01 01 00 01 01 00 00 00 01 01 ................ +82b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +82c0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +82d0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +82e0 00 00 01 00 00 01 01 01 01 01 01 00 00 00 00 01 ................ +82f0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +8300 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +8310 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8320 00 00 01 01 00 00 00 00 01 00 00 01 00 00 01 00 ................ +8330 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8340 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +8350 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8360 00 01 00 00 00 00 00 00 00 01 00 01 01 00 01 00 ................ +8370 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8380 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +8390 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +83a0 00 01 00 01 00 00 00 00 01 01 01 01 00 00 00 00 ................ +83b0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +83c0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +83d0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +83e0 00 01 00 01 01 00 00 00 01 00 01 00 01 01 01 01 ................ +83f0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +8400 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 01 ................ +8410 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8420 00 01 00 01 00 01 01 01 00 00 01 00 01 00 01 01 ................ +8430 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8440 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 01 ................ +8450 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8460 00 01 00 00 01 00 01 01 00 00 00 01 01 00 01 01 ................ +8470 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +8480 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 ................ +8490 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +84a0 00 00 01 01 01 00 01 01 00 00 00 01 01 00 01 00 ................ +84b0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +84c0 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 ................ +84d0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +84e0 00 00 01 00 01 00 01 01 00 01 01 00 01 01 01 00 ................ +84f0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +8500 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 01 ................ +8510 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8520 00 00 01 00 00 01 01 00 00 00 01 00 00 00 00 00 ................ +8530 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8540 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +8550 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8560 00 00 01 00 01 00 01 00 00 00 00 00 01 01 01 01 ................ +8570 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8580 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8590 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +85a0 00 00 01 01 01 00 00 01 01 01 01 01 01 01 01 00 ................ +85b0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +85c0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +85d0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +85e0 00 01 00 01 00 00 01 00 00 01 00 01 01 01 00 01 ................ +85f0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8600 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +8610 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8620 00 01 01 00 01 01 01 00 00 00 01 01 01 01 01 01 ................ +8630 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8640 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +8650 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8660 01 00 00 00 01 00 01 01 00 01 00 00 01 00 00 01 ................ +8670 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8680 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8690 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +86a0 01 00 01 00 01 00 00 01 01 01 00 00 01 01 00 00 ................ +86b0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +86c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +86d0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +86e0 01 01 00 00 01 00 01 00 01 00 01 01 01 00 01 01 ................ +86f0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8700 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 00 ................ +8710 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8720 01 01 01 00 01 00 01 00 00 01 01 01 00 00 01 01 ................ +8730 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +8740 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 00 ................ +8750 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8760 01 01 01 01 01 01 01 01 01 01 00 01 01 00 00 01 ................ +8770 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8780 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +8790 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +87a0 00 00 00 00 00 01 00 01 00 01 01 00 01 01 01 01 ................ +87b0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +87c0 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 ................ +87d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +87e0 01 01 01 01 01 00 00 00 00 01 01 00 00 00 00 00 ................ +87f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8800 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +8810 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8820 01 01 01 00 00 00 00 01 01 00 01 00 00 01 01 01 ................ +8830 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +8840 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +8850 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8860 01 01 00 00 01 01 00 01 00 01 01 00 00 01 01 01 ................ +8870 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8880 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8890 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +88a0 01 01 00 00 00 00 01 00 01 01 00 01 01 01 00 01 ................ +88b0 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +88c0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +88d0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +88e0 01 01 00 00 00 01 01 01 00 00 01 01 00 00 00 01 ................ +88f0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8900 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +8910 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8920 01 01 00 01 00 01 01 00 00 01 01 01 00 00 01 00 ................ +8930 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8940 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +8950 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8960 01 01 01 00 00 01 00 00 00 01 00 01 01 01 01 01 ................ +8970 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +8980 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +8990 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +89a0 01 01 01 00 01 00 01 00 01 01 00 00 00 01 00 01 ................ +89b0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +89c0 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 ................ +89d0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +89e0 01 01 01 00 00 01 00 00 00 01 01 01 01 01 01 01 ................ +89f0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +8a00 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +8a10 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8a20 01 01 00 01 01 00 00 01 00 01 01 00 01 00 01 01 ................ +8a30 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +8a40 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +8a50 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8a60 01 01 00 00 00 01 00 01 01 00 01 01 01 01 01 00 ................ +8a70 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8a80 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +8a90 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8aa0 01 00 01 00 01 01 00 00 01 01 01 01 00 01 00 00 ................ +8ab0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +8ac0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +8ad0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8ae0 01 00 00 01 00 00 00 00 00 00 00 00 01 00 01 01 ................ +8af0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +8b00 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 ................ +8b10 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8b20 00 01 01 01 00 00 01 01 00 01 00 00 01 01 00 00 ................ +8b30 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +8b40 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 ................ +8b50 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8b60 00 01 00 01 00 01 00 01 00 01 01 01 00 00 00 00 ................ +8b70 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +8b80 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +8b90 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8ba0 00 00 01 01 01 00 01 01 00 01 00 01 00 01 00 00 ................ +8bb0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +8bc0 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 ................ +8bd0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8be0 00 00 01 00 00 01 01 01 01 01 01 01 01 00 01 00 ................ +8bf0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8c00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 ................ +8c10 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8c20 00 00 00 01 01 01 01 00 01 00 01 01 00 00 00 00 ................ +8c30 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8c40 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +8c50 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8c60 00 00 01 00 00 00 01 00 00 01 01 01 00 01 00 01 ................ +8c70 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +8c80 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 ................ +8c90 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8ca0 00 00 01 01 00 00 00 00 00 01 01 01 01 01 01 00 ................ +8cb0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8cc0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +8cd0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8ce0 00 01 00 00 01 00 00 00 00 01 01 00 00 01 00 00 ................ +8cf0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8d00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +8d10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8d20 00 01 01 00 00 00 00 01 00 01 00 00 01 00 01 00 ................ +8d30 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8d40 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 ................ +8d50 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8d60 00 01 01 01 00 01 01 01 01 00 01 01 00 00 01 01 ................ +8d70 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8d80 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +8d90 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8da0 01 00 00 00 01 00 00 00 00 00 01 00 01 00 01 00 ................ +8db0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8dc0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +8dd0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8de0 01 00 00 00 01 00 01 00 00 00 01 00 00 00 01 00 ................ +8df0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +8e00 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +8e10 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8e20 01 00 00 00 00 00 01 00 00 00 00 00 00 00 01 01 ................ +8e30 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +8e40 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 01 ................ +8e50 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8e60 00 01 01 00 01 00 01 01 01 01 00 00 01 01 00 01 ................ +8e70 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8e80 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 ................ +8e90 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8ea0 00 01 00 00 01 01 01 01 01 01 01 00 01 00 00 01 ................ +8eb0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +8ec0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +8ed0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8ee0 00 00 01 01 01 00 00 01 01 01 00 01 00 01 00 01 ................ +8ef0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8f00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +8f10 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8f20 00 00 01 00 01 00 01 01 00 00 00 00 00 00 00 01 ................ +8f30 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +8f40 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 01 ................ +8f50 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8f60 00 00 01 00 00 01 00 00 01 01 00 00 01 01 00 00 ................ +8f70 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +8f80 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 00 ................ +8f90 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8fa0 00 00 01 00 00 01 01 00 00 01 00 00 01 01 01 00 ................ +8fb0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8fc0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +8fd0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +8fe0 00 00 01 00 01 00 01 00 00 01 00 00 00 00 01 01 ................ +8ff0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9000 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +9010 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9020 00 00 01 01 00 00 01 01 00 01 01 00 01 00 01 01 ................ +9030 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9040 01 01 01 01 01 01 01 01 01 01 01 00 01 01 01 00 ................ +9050 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9060 00 00 01 01 01 00 01 01 01 00 01 01 00 00 00 01 ................ +9070 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9080 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +9090 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +90a0 00 01 00 00 00 00 00 00 01 00 01 01 01 00 01 00 ................ +90b0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +90c0 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 00 ................ +90d0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +90e0 00 00 01 01 01 01 01 01 01 01 00 00 00 01 00 00 ................ +90f0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9100 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +9110 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9120 00 00 01 01 00 01 00 01 00 01 01 01 00 00 00 00 ................ +9130 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9140 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 00 ................ +9150 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9160 00 00 01 00 00 00 00 00 00 01 00 00 01 00 00 01 ................ +9170 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9180 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 ................ +9190 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +91a0 00 00 00 00 00 01 00 01 01 01 01 00 00 01 00 01 ................ +91b0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +91c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +91d0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +91e0 01 01 01 00 01 00 00 01 01 01 01 00 00 00 00 00 ................ +91f0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9200 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 ................ +9210 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9220 01 01 00 00 01 01 01 01 00 01 00 00 01 00 00 01 ................ +9230 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9240 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +9250 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9260 01 00 01 01 00 01 01 01 01 00 00 00 00 00 00 01 ................ +9270 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9280 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +9290 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +92a0 01 00 01 00 00 01 00 00 00 01 01 00 01 01 01 00 ................ +92b0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +92c0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +92d0 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +92e0 01 00 00 01 01 00 00 01 01 00 01 00 01 01 00 01 ................ +92f0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +9310 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9320 01 00 00 01 00 01 00 00 00 00 01 01 01 00 00 00 ................ +9330 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9340 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +9350 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9360 01 00 00 01 00 00 00 01 00 00 00 00 00 00 01 01 ................ +9370 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9380 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +9390 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +93a0 01 00 00 00 00 01 01 01 01 00 01 00 00 01 00 01 ................ +93b0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +93c0 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 00 ................ +93d0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +93e0 00 01 01 01 01 00 00 00 01 00 01 00 01 01 00 01 ................ +93f0 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9400 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +9410 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9420 00 01 01 00 01 00 00 01 01 00 01 01 01 00 01 00 ................ +9430 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9440 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +9450 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9460 00 01 01 00 00 00 00 00 01 00 00 00 00 01 00 01 ................ +9470 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9480 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +9490 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +94a0 00 01 01 00 00 00 00 00 00 01 00 00 01 00 00 01 ................ +94b0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +94c0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +94d0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +94e0 00 01 01 00 00 01 01 00 00 00 01 00 01 01 00 01 ................ +94f0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9500 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +9510 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9520 00 01 01 01 00 00 00 00 00 00 01 01 00 00 00 00 ................ +9530 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9540 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +9550 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9560 00 01 01 01 01 00 01 01 00 00 00 00 01 00 01 00 ................ +9570 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9580 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +9590 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +95a0 01 00 00 00 00 01 01 01 01 01 00 01 00 01 01 01 ................ +95b0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +95c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +95d0 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +95e0 01 00 00 01 00 01 00 00 01 00 01 01 00 01 01 00 ................ +95f0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9600 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +9610 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9620 01 00 01 00 00 00 00 01 00 00 01 00 01 01 01 01 ................ +9630 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9640 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +9650 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9660 01 00 01 00 00 01 01 00 01 01 00 00 00 00 00 00 ................ +9670 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9680 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 ................ +9690 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +96a0 01 00 00 01 01 00 01 01 01 01 01 00 00 01 01 01 ................ +96b0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +96c0 01 01 01 01 01 01 01 01 01 01 01 01 00 00 01 01 ................ +96d0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +96e0 00 01 01 01 01 00 01 01 01 00 01 01 00 01 00 01 ................ +96f0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9700 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +9710 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9720 00 01 00 00 01 00 01 01 01 00 00 00 01 01 01 00 ................ +9730 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9740 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 ................ +9750 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9760 00 00 00 01 00 00 00 01 01 01 01 00 01 00 01 01 ................ +9770 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9780 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +9790 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 00 ................ +97a0 01 01 00 01 01 01 01 00 01 01 00 00 00 01 00 00 ................ +97b0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +97c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +97d0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 00 ................ +97e0 01 00 01 01 01 01 01 01 01 00 00 00 00 00 01 00 ................ +97f0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9800 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +9810 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 00 ................ +9820 01 00 01 01 01 00 00 01 00 01 01 01 00 01 01 00 ................ +9830 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9840 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +9850 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 00 ................ +9860 01 01 00 00 01 00 00 00 01 01 01 00 01 00 00 00 ................ +9870 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9880 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9890 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 00 ................ +98a0 01 01 01 00 00 00 00 01 00 01 01 01 01 01 00 01 ................ +98b0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +98c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +98d0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 00 ................ +98e0 01 01 01 01 01 00 01 00 01 00 00 00 01 00 00 01 ................ +98f0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9900 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +9910 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9920 00 00 00 00 01 01 00 01 01 00 00 01 00 00 01 01 ................ +9930 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9940 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 01 ................ +9950 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9960 00 00 00 01 00 01 01 00 01 01 01 00 01 01 01 01 ................ +9970 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9980 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +9990 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +99a0 00 00 00 01 01 00 00 01 00 00 00 00 01 01 01 00 ................ +99b0 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +99c0 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 00 ................ +99d0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +99e0 00 00 00 01 00 00 01 00 01 00 00 01 01 00 00 01 ................ +99f0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9a00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 ................ +9a10 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9a20 00 00 00 00 01 00 01 01 00 01 01 01 01 01 00 01 ................ +9a30 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9a40 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +9a50 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9a60 00 00 00 00 00 00 01 01 01 01 00 00 00 00 01 00 ................ +9a70 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9a80 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +9a90 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 00 ................ +9aa0 01 01 01 01 01 01 00 00 01 01 00 01 00 01 01 00 ................ +9ab0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9ac0 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 ................ +9ad0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 00 ................ +9ae0 01 01 01 01 01 00 01 01 01 01 00 01 01 01 00 00 ................ +9af0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9b00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +9b10 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9b20 00 00 00 00 00 01 01 01 01 00 00 01 00 00 00 01 ................ +9b30 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9b40 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 01 ................ +9b50 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9b60 00 00 01 00 00 00 00 00 00 00 01 00 01 01 01 00 ................ +9b70 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9b80 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +9b90 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9ba0 00 01 00 00 00 00 01 01 00 01 01 00 00 00 00 01 ................ +9bb0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9bc0 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 00 ................ +9bd0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9be0 00 01 01 00 01 00 00 01 01 01 01 00 00 01 01 01 ................ +9bf0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9c00 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 01 ................ +9c10 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9c20 01 00 00 00 01 01 00 01 00 01 01 01 00 01 00 01 ................ +9c30 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9c40 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +9c50 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9c60 01 00 01 00 00 01 01 00 01 01 01 01 01 00 01 01 ................ +9c70 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9c80 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +9c90 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9ca0 01 00 01 01 00 01 00 01 00 01 01 00 01 00 01 01 ................ +9cb0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9cc0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +9cd0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9ce0 01 00 01 01 01 01 00 00 01 00 00 01 00 01 00 00 ................ +9cf0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9d00 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +9d10 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9d20 01 00 01 01 01 01 01 01 01 01 01 00 00 00 00 01 ................ +9d30 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9d40 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +9d50 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9d60 01 01 00 00 00 01 01 00 00 00 01 01 01 00 01 00 ................ +9d70 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9d80 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +9d90 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9da0 01 01 00 01 00 00 01 00 00 01 00 01 01 01 01 01 ................ +9db0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9dc0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +9dd0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9de0 01 01 01 00 00 01 00 01 00 00 01 01 00 00 01 01 ................ +9df0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9e00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +9e10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9e20 00 00 00 00 00 00 00 01 00 00 01 00 00 01 01 01 ................ +9e30 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9e40 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 01 ................ +9e50 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9e60 00 00 01 00 00 00 01 01 00 00 01 00 00 01 01 00 ................ +9e70 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9e80 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +9e90 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9ea0 00 01 00 00 00 00 01 01 00 01 01 00 00 00 00 01 ................ +9eb0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9ec0 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 00 ................ +9ed0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9ee0 00 01 00 01 01 01 00 01 01 00 00 00 01 00 01 00 ................ +9ef0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9f00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +9f10 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9f20 00 01 01 00 01 01 00 01 01 00 00 01 00 00 01 01 ................ +9f30 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +9f40 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 01 ................ +9f50 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9f60 00 01 01 01 00 01 00 01 00 00 01 01 00 01 00 01 ................ +9f70 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9f80 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +9f90 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9fa0 00 01 01 01 00 00 01 01 01 00 00 00 01 00 00 01 ................ +9fb0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9fc0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +9fd0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +9fe0 00 01 01 00 01 00 00 01 01 01 01 00 00 01 01 00 ................ +9ff0 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +a000 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +a010 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a020 00 01 00 01 01 00 01 00 00 01 01 00 00 00 00 00 ................ +a030 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a040 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 01 ................ +a050 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a060 00 01 00 00 00 01 00 01 01 01 00 01 01 00 01 01 ................ +a070 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +a080 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 00 ................ +a090 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a0a0 00 00 01 01 00 00 01 00 00 01 00 00 01 00 01 01 ................ +a0b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a0c0 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 00 ................ +a0d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a0e0 00 00 01 00 00 01 00 01 01 00 01 01 01 01 00 00 ................ +a0f0 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +a100 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +a110 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a120 00 00 01 00 00 01 00 00 01 01 01 00 00 01 01 00 ................ +a130 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a140 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +a150 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a160 00 00 01 00 01 01 00 00 00 01 01 00 01 01 00 01 ................ +a170 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a180 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +a190 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a1a0 00 00 01 01 01 00 01 01 01 00 01 01 01 01 01 00 ................ +a1b0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +a1c0 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 01 ................ +a1d0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a1e0 00 01 00 00 01 01 00 00 01 01 00 01 01 01 00 01 ................ +a1f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a200 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +a210 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a220 00 01 00 01 01 01 00 00 00 00 01 00 00 00 00 01 ................ +a230 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a240 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +a250 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a260 00 01 00 01 01 01 01 00 00 01 01 00 00 00 00 01 ................ +a270 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +a280 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +a290 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a2a0 00 01 00 00 01 00 01 00 00 01 00 01 00 01 00 01 ................ +a2b0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +a2c0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +a2d0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a2e0 00 00 00 01 01 01 00 01 00 00 00 01 01 00 01 01 ................ +a2f0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a300 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 ................ +a310 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +a320 01 01 01 00 00 00 01 00 01 00 01 01 01 01 01 01 ................ +a330 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +a340 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +a350 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +a360 01 00 01 00 01 01 00 00 01 01 00 01 01 01 00 01 ................ +a370 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a380 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +a390 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +a3a0 01 00 00 00 01 00 00 00 01 00 00 00 00 01 00 00 ................ +a3b0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +a3c0 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 00 ................ +a3d0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +a3e0 00 01 01 01 01 01 00 01 01 00 00 00 01 00 01 01 ................ +a3f0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a400 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +a410 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +a420 01 00 00 00 01 01 00 00 00 00 00 00 01 00 01 00 ................ +a430 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a440 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +a450 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +a460 01 00 01 00 01 01 01 00 00 01 00 00 00 00 00 00 ................ +a470 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +a480 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +a490 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +a4a0 01 01 00 01 01 00 01 00 00 01 00 00 00 01 01 00 ................ +a4b0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a4c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +a4d0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a4e0 00 00 00 00 00 01 01 00 01 00 00 01 00 00 01 01 ................ +a4f0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +a500 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +a510 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a520 00 00 01 00 01 01 00 01 00 00 00 00 01 00 01 01 ................ +a530 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a540 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +a550 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a560 00 01 00 00 01 01 00 00 00 00 01 01 01 01 01 00 ................ +a570 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a580 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +a590 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a5a0 00 01 01 00 00 00 01 00 00 00 00 00 01 01 01 00 ................ +a5b0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +a5c0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +a5d0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a5e0 00 01 01 00 00 01 01 00 00 01 01 00 01 01 01 01 ................ +a5f0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a600 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +a610 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a620 00 01 00 01 01 00 01 00 01 00 00 01 01 01 00 00 ................ +a630 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a640 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +a650 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a660 00 00 01 01 01 01 01 01 01 00 01 00 01 01 01 00 ................ +a670 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a680 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +a690 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a6a0 00 00 00 01 01 01 00 00 01 01 00 01 01 01 01 00 ................ +a6b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a6c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +a6d0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +a6e0 01 01 01 01 01 00 01 01 00 01 00 01 00 00 00 01 ................ +a6f0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +a700 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +a710 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +a720 01 01 01 00 01 00 01 01 00 00 01 00 01 00 00 00 ................ +a730 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a740 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +a750 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +a760 01 01 01 01 00 00 00 01 01 00 00 01 01 00 01 00 ................ +a770 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a780 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +a790 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a7a0 00 00 00 00 01 00 01 01 00 01 01 00 00 00 01 01 ................ +a7b0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a7c0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +a7d0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a7e0 00 00 01 00 01 01 00 01 00 01 00 00 01 00 00 01 ................ +a7f0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a800 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a810 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a820 00 01 00 00 01 00 01 00 01 01 00 00 00 00 01 00 ................ +a830 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a840 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +a850 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a860 00 01 00 01 01 01 00 01 00 01 00 00 01 00 00 00 ................ +a870 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +a880 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +a890 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a8a0 00 01 01 00 00 01 00 01 00 01 01 01 00 00 01 00 ................ +a8b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a8c0 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 ................ +a8d0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a8e0 00 01 01 00 00 00 01 01 00 00 00 00 01 00 00 01 ................ +a8f0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +a900 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +a910 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a920 00 01 00 01 01 00 01 00 01 00 00 01 00 00 00 00 ................ +a930 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +a940 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 ................ +a950 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a960 00 01 00 01 00 00 01 01 00 01 01 01 00 01 00 01 ................ +a970 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a980 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +a990 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a9a0 00 01 00 00 01 00 01 01 00 00 01 01 01 01 00 01 ................ +a9b0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +a9c0 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 ................ +a9d0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +a9e0 00 01 00 00 01 00 00 00 01 01 01 01 00 01 01 00 ................ +a9f0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +aa00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +aa10 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +aa20 00 01 00 00 01 01 01 00 00 01 00 01 00 01 01 01 ................ +aa30 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +aa40 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +aa50 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +aa60 00 01 00 01 01 01 01 00 01 01 01 00 00 00 00 01 ................ +aa70 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +aa80 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +aa90 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +aaa0 00 01 01 01 00 00 01 00 01 01 01 01 01 00 01 01 ................ +aab0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +aac0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +aad0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +aae0 01 00 00 00 01 00 00 01 01 01 00 00 01 00 01 00 ................ +aaf0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ab00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +ab10 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ab20 01 00 01 00 00 00 00 01 00 01 01 00 01 00 01 01 ................ +ab30 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ab40 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 ................ +ab50 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ab60 01 00 01 01 01 00 00 00 01 01 00 01 00 00 00 01 ................ +ab70 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ab80 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +ab90 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +aba0 01 01 00 00 01 01 00 00 01 01 01 01 00 00 01 00 ................ +abb0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +abc0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +abd0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +abe0 01 01 00 01 00 01 00 01 00 00 01 01 00 01 01 00 ................ +abf0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ac00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +ac10 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ac20 01 01 00 01 00 01 01 00 00 00 00 00 01 01 01 00 ................ +ac30 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +ac40 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 ................ +ac50 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ac60 01 01 00 01 00 00 01 00 01 01 01 01 00 00 00 00 ................ +ac70 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ac80 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 ................ +ac90 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +aca0 01 01 00 01 00 00 00 01 00 00 01 00 00 00 00 00 ................ +acb0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +acc0 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 ................ +acd0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ace0 01 01 00 01 00 00 01 01 00 00 00 01 01 00 00 01 ................ +acf0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ad00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +ad10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ad20 01 01 00 01 00 01 01 01 00 01 00 00 00 01 00 01 ................ +ad30 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +ad40 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 00 ................ +ad50 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ad60 01 01 00 01 01 00 01 00 01 01 01 00 01 01 00 00 ................ +ad70 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ad80 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +ad90 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ada0 01 01 00 01 01 00 00 01 01 01 01 01 01 00 00 00 ................ +adb0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +adc0 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 00 ................ +add0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ade0 01 01 00 00 01 01 01 01 00 01 01 00 00 00 00 01 ................ +adf0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ae00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ae10 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ae20 01 00 01 01 01 01 00 00 00 00 01 00 00 00 00 01 ................ +ae30 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +ae40 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +ae50 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ae60 01 00 00 01 01 01 01 01 00 00 00 01 00 01 01 00 ................ +ae70 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ae80 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +ae90 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +aea0 00 01 01 01 01 00 01 01 00 00 01 01 00 01 01 01 ................ +aeb0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +aec0 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 ................ +aed0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +aee0 00 01 00 01 00 01 00 00 01 01 00 00 00 01 00 00 ................ +aef0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +af00 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 01 ................ +af10 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +af20 00 00 01 01 00 00 00 00 00 00 01 00 00 00 00 01 ................ +af30 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +af40 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 ................ +af50 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +af60 00 00 00 01 00 01 00 01 00 01 00 00 01 01 01 00 ................ +af70 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +af80 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +af90 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +afa0 00 00 00 00 00 01 00 01 01 01 01 00 00 00 00 01 ................ +afb0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +afc0 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 00 ................ +afd0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +afe0 01 01 01 01 01 01 01 00 01 01 00 01 00 01 01 00 ................ +aff0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b000 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +b010 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b020 01 01 01 01 01 00 00 01 01 01 01 00 00 01 00 00 ................ +b030 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b040 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +b050 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b060 01 01 01 01 00 01 00 01 00 01 01 01 00 01 00 01 ................ +b070 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b080 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +b090 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b0a0 01 01 01 00 01 01 00 00 00 01 00 00 01 00 00 00 ................ +b0b0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b0c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +b0d0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b0e0 01 01 01 00 00 00 00 01 01 01 00 00 00 00 00 01 ................ +b0f0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b100 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 ................ +b110 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b120 01 01 00 01 00 01 01 00 00 01 01 00 01 01 01 01 ................ +b130 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b140 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 ................ +b150 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b160 01 01 00 00 01 01 00 01 00 01 00 00 00 01 00 01 ................ +b170 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b180 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +b190 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b1a0 01 01 00 00 00 01 00 01 00 00 01 00 00 01 01 01 ................ +b1b0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b1c0 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 ................ +b1d0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b1e0 01 00 01 01 00 01 00 00 00 00 00 01 01 01 00 00 ................ +b1f0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b200 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +b210 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b220 01 00 00 01 01 01 00 01 00 00 00 01 00 01 00 00 ................ +b230 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b240 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +b250 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b260 01 00 00 00 00 00 00 00 01 01 01 01 00 01 00 01 ................ +b270 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b280 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 01 ................ +b290 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b2a0 00 01 01 00 00 01 01 00 00 00 00 00 01 00 01 00 ................ +b2b0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b2c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +b2d0 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b2e0 00 01 00 01 00 00 01 00 00 01 00 00 00 00 01 01 ................ +b2f0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b300 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +b310 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b320 00 01 00 00 01 00 00 01 00 00 00 01 00 00 00 01 ................ +b330 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b340 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +b350 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b360 00 01 00 00 01 01 00 00 01 00 00 01 00 01 01 01 ................ +b370 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b380 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b390 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b3a0 00 01 00 01 01 00 00 01 00 01 00 01 00 00 00 01 ................ +b3b0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b3c0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +b3d0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b3e0 00 01 01 00 01 00 00 00 00 00 00 00 01 01 00 01 ................ +b3f0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b400 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +b410 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b420 00 01 01 01 00 01 01 01 00 00 01 01 00 00 00 00 ................ +b430 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b440 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +b450 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b460 01 00 00 00 00 01 00 00 00 00 00 01 00 00 01 00 ................ +b470 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b480 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +b490 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b4a0 01 00 00 00 01 01 01 00 01 01 01 01 00 01 00 00 ................ +b4b0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b4c0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +b4d0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b4e0 01 00 00 01 00 01 01 00 01 01 00 00 00 01 01 00 ................ +b4f0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b500 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b510 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b520 01 00 00 01 01 01 00 01 01 00 01 01 00 01 00 01 ................ +b530 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b540 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +b550 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b560 01 00 01 00 00 00 00 01 00 01 01 00 00 01 00 01 ................ +b570 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b580 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 ................ +b590 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b5a0 01 00 01 00 00 00 01 00 01 01 00 01 01 00 01 01 ................ +b5b0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b5c0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +b5d0 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b5e0 01 00 01 00 00 00 00 00 00 00 01 00 01 01 01 01 ................ +b5f0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b600 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +b610 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b620 01 00 00 01 01 00 01 00 01 00 01 01 01 00 01 00 ................ +b630 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b640 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +b650 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b660 01 00 00 01 01 01 00 01 00 01 01 00 00 00 00 01 ................ +b670 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b680 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 ................ +b690 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b6a0 01 00 01 00 01 00 01 00 01 00 01 00 00 01 00 00 ................ +b6b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b6c0 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 ................ +b6d0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b6e0 01 00 01 01 01 01 00 01 01 00 01 00 00 01 01 00 ................ +b6f0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b700 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +b710 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b720 01 01 00 00 01 00 00 01 01 00 00 00 01 00 01 01 ................ +b730 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b740 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 01 ................ +b750 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b760 01 01 00 00 01 00 01 00 01 01 01 00 01 00 00 00 ................ +b770 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b780 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +b790 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b7a0 01 01 00 00 00 00 00 00 00 00 01 00 01 01 01 00 ................ +b7b0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b7c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +b7d0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b7e0 01 00 01 00 01 01 01 01 01 00 01 00 00 01 01 00 ................ +b7f0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b800 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 ................ +b810 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b820 01 00 00 01 01 01 00 01 00 01 01 01 01 00 01 00 ................ +b830 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b840 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b850 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b860 01 00 00 00 01 01 00 01 00 01 00 00 01 00 01 01 ................ +b870 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b880 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +b890 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b8a0 01 00 00 00 00 01 00 01 00 00 00 00 00 00 00 01 ................ +b8b0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b8c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +b8d0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b8e0 01 00 00 00 00 00 01 01 00 01 00 00 00 00 00 00 ................ +b8f0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b900 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +b910 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b920 01 00 00 00 01 00 00 00 01 00 01 01 00 01 00 01 ................ +b930 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b940 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 ................ +b950 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b960 01 00 00 00 01 01 00 01 01 01 00 01 00 01 01 01 ................ +b970 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b980 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +b990 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b9a0 01 00 00 01 00 00 01 01 00 00 01 01 00 00 01 01 ................ +b9b0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +b9c0 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 00 ................ +b9d0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +b9e0 01 00 00 01 00 01 01 00 01 00 01 01 00 00 01 01 ................ +b9f0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +ba00 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 01 ................ +ba10 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +ba20 01 00 00 01 01 01 00 01 01 00 00 00 00 01 00 01 ................ +ba30 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ba40 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +ba50 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +ba60 01 00 01 00 00 01 01 01 01 01 00 00 00 01 01 00 ................ +ba70 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ba80 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +ba90 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +baa0 01 00 01 01 00 00 01 01 01 00 01 01 00 00 01 00 ................ +bab0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +bac0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +bad0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +bae0 01 00 01 01 01 00 00 01 00 01 00 00 00 01 01 01 ................ +baf0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +bb00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +bb10 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +bb20 01 00 01 01 00 00 01 00 00 00 01 01 01 00 00 00 ................ +bb30 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +bb40 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 ................ +bb50 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +bb60 01 00 01 00 00 00 01 00 01 01 00 01 01 00 01 01 ................ +bb70 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +bb80 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +bb90 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +bba0 01 00 00 01 00 01 01 00 00 01 00 01 01 00 00 01 ................ +bbb0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +bbc0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +bbd0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +bbe0 01 00 00 01 00 00 00 00 01 00 00 01 00 01 00 01 ................ +bbf0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +bc00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +bc10 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +bc20 01 00 00 01 00 01 00 01 00 01 00 01 01 00 00 00 ................ +bc30 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +bc40 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 00 ................ +bc50 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +bc60 01 00 01 00 00 01 01 01 01 00 01 00 00 00 01 00 ................ +bc70 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +bc80 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +bc90 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +bca0 01 01 00 00 00 00 01 01 00 00 00 01 01 00 00 00 ................ +bcb0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +bcc0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +bcd0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +bce0 01 01 01 00 00 01 00 01 00 01 01 01 01 01 00 00 ................ +bcf0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +bd00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +bd10 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +bd20 00 00 00 00 00 01 00 01 01 01 01 00 01 00 01 00 ................ +bd30 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +bd40 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +bd50 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +bd60 00 00 01 00 00 01 00 01 01 01 00 01 00 01 00 01 ................ +bd70 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +bd80 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 ................ +bd90 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +bda0 00 01 00 00 00 00 00 00 01 00 00 01 00 00 00 01 ................ +bdb0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +bdc0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +bdd0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +bde0 00 01 00 01 00 00 00 00 01 00 00 00 01 00 01 01 ................ +bdf0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +be00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 ................ +be10 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +be20 00 01 00 01 00 01 01 01 01 01 00 00 00 00 00 00 ................ +be30 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +be40 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +be50 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +be60 00 01 00 01 01 00 00 00 00 00 01 00 01 01 00 00 ................ +be70 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +be80 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +be90 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +bea0 00 01 00 01 00 01 00 00 01 00 01 00 01 00 00 01 ................ +beb0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +bec0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +bed0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +bee0 00 01 00 01 00 00 00 00 00 01 01 01 01 00 00 01 ................ +bef0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +bf00 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +bf10 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +bf20 00 01 00 00 01 00 00 01 01 01 00 01 00 00 00 00 ................ +bf30 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +bf40 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +bf50 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +bf60 00 01 00 00 00 00 00 00 01 01 01 00 01 01 00 00 ................ +bf70 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +bf80 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +bf90 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +bfa0 00 00 01 01 01 00 01 00 00 01 01 01 00 00 00 01 ................ +bfb0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +bfc0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +bfd0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +bfe0 00 00 01 01 00 00 01 01 01 01 01 00 00 01 01 01 ................ +bff0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c000 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +c010 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c020 00 00 01 01 00 00 00 01 01 00 01 00 00 00 00 01 ................ +c030 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +c050 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c060 00 00 01 01 00 00 01 00 01 00 01 00 01 00 01 00 ................ +c070 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c080 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +c090 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c0a0 00 00 01 01 00 01 01 01 00 00 00 01 00 01 01 01 ................ +c0b0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c0c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +c0d0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c0e0 00 00 01 01 01 01 00 01 00 01 00 00 01 01 01 00 ................ +c0f0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +c100 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +c110 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c120 00 00 01 01 01 01 01 00 00 00 00 00 01 01 00 00 ................ +c130 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c140 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +c150 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c160 00 00 01 01 00 01 00 00 01 00 01 01 00 01 01 00 ................ +c170 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c180 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +c190 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c1a0 00 00 01 00 00 00 00 01 00 01 00 01 00 00 01 00 ................ +c1b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c1c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +c1d0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c1e0 00 00 00 00 01 00 00 00 01 00 01 01 01 01 01 01 ................ +c1f0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c200 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +c210 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +c220 01 01 01 01 00 00 01 01 01 01 01 01 01 01 00 01 ................ +c230 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +c240 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 ................ +c250 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +c260 01 01 01 00 01 01 00 01 01 01 00 01 01 00 00 01 ................ +c270 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c280 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 ................ +c290 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +c2a0 01 01 01 01 00 01 01 00 00 01 01 01 00 00 01 00 ................ +c2b0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +c2c0 01 01 01 01 01 01 01 01 01 01 01 01 00 00 01 00 ................ +c2d0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c2e0 00 00 00 00 01 00 01 00 00 01 01 01 00 01 00 01 ................ +c2f0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c300 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 ................ +c310 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c320 00 00 01 00 00 01 00 01 00 01 00 00 00 01 00 00 ................ +c330 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +c340 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 00 ................ +c350 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c360 00 01 00 00 00 00 01 01 01 00 00 01 01 00 00 01 ................ +c370 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c380 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c390 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c3a0 00 01 01 00 00 01 00 00 00 01 00 01 00 01 00 00 ................ +c3b0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c3c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c3d0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c3e0 01 00 00 00 00 01 00 00 01 00 00 01 00 00 01 00 ................ +c3f0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c400 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +c410 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c420 01 00 00 01 01 01 01 01 01 00 01 01 00 01 01 00 ................ +c430 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c440 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c450 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c460 01 00 01 00 01 01 00 00 01 01 00 01 00 00 01 00 ................ +c470 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c480 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +c490 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c4a0 01 00 01 00 01 00 01 00 00 00 00 00 00 00 01 01 ................ +c4b0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c4c0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +c4d0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c4e0 01 00 00 01 00 00 01 01 01 00 01 01 01 00 01 00 ................ +c4f0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c500 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +c510 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c520 00 01 01 00 01 01 00 01 00 01 01 00 00 01 00 01 ................ +c530 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c540 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +c550 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c560 00 01 00 00 00 00 01 00 01 00 01 01 01 01 01 01 ................ +c570 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c580 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c590 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c5a0 00 00 00 01 01 01 01 00 01 01 01 00 00 01 01 01 ................ +c5b0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c5c0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +c5d0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c5e0 00 00 00 00 01 01 00 00 01 01 00 00 00 01 01 01 ................ +c5f0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c600 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c610 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c620 00 00 00 01 00 00 00 00 00 01 01 01 00 00 01 01 ................ +c630 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +c640 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +c650 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c660 00 00 01 00 00 01 01 00 00 00 00 01 01 00 00 01 ................ +c670 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c680 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +c690 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c6a0 00 01 00 00 00 00 01 01 00 00 00 01 01 00 01 01 ................ +c6b0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c6c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +c6d0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c6e0 00 01 00 01 01 00 00 01 00 01 00 00 00 01 00 01 ................ +c6f0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c700 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 ................ +c710 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c720 00 01 00 01 01 01 00 00 01 00 00 00 01 01 00 01 ................ +c730 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c740 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +c750 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c760 00 01 00 00 01 01 01 00 00 00 00 00 01 01 01 01 ................ +c770 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c780 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +c790 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c7a0 00 00 01 01 00 01 01 01 00 00 00 01 00 00 00 00 ................ +c7b0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c7c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +c7d0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c7e0 00 00 00 01 01 01 01 01 01 01 01 00 00 01 01 00 ................ +c7f0 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +c800 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +c810 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c820 00 00 00 00 01 01 01 01 00 01 01 01 00 00 01 01 ................ +c830 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c840 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +c850 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c860 00 00 00 00 00 01 01 00 01 01 01 00 00 01 01 00 ................ +c870 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +c880 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +c890 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c8a0 00 00 00 00 00 00 01 01 00 01 00 00 01 00 01 01 ................ +c8b0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c8c0 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 00 ................ +c8d0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c8e0 00 00 00 00 00 01 01 01 01 00 00 00 00 01 00 01 ................ +c8f0 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +c900 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 01 ................ +c910 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c920 00 00 00 01 00 00 00 01 00 01 00 01 01 00 01 00 ................ +c930 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c940 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +c950 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c960 00 00 01 00 00 01 00 00 00 00 01 00 00 00 01 00 ................ +c970 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c980 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 ................ +c990 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c9a0 00 01 00 00 00 00 00 01 00 01 01 01 00 00 00 00 ................ +c9b0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c9c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +c9d0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +c9e0 00 01 01 00 00 00 01 01 00 00 01 00 00 01 00 00 ................ +c9f0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +ca00 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +ca10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ca20 01 00 00 00 00 00 00 00 01 01 00 00 01 01 01 01 ................ +ca30 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +ca40 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +ca50 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ca60 01 00 00 01 00 00 00 01 00 00 00 01 00 01 01 01 ................ +ca70 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ca80 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 ................ +ca90 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +caa0 01 00 00 01 00 00 01 01 00 00 01 00 00 01 01 01 ................ +cab0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cac0 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 01 ................ +cad0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cae0 01 00 00 01 00 00 00 01 01 00 00 01 00 00 00 01 ................ +caf0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cb00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +cb10 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cb20 01 00 00 00 01 01 01 01 01 00 01 01 00 00 01 00 ................ +cb30 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cb40 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +cb50 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cb60 01 00 00 01 00 00 00 00 01 00 00 00 01 00 01 00 ................ +cb70 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cb80 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cb90 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cba0 01 00 00 01 00 00 01 00 01 00 01 01 01 01 00 00 ................ +cbb0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +cbc0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +cbd0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cbe0 01 00 00 01 00 01 00 00 01 01 00 01 00 00 00 00 ................ +cbf0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cc00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +cc10 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cc20 01 00 00 01 01 01 00 00 01 01 00 01 00 00 01 00 ................ +cc30 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cc40 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +cc50 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cc60 01 00 01 00 01 00 00 00 00 00 01 01 01 00 01 01 ................ +cc70 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cc80 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 ................ +cc90 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cca0 01 00 01 01 00 01 00 00 00 01 01 00 01 00 00 00 ................ +ccb0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ccc0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +ccd0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cce0 01 00 01 01 01 00 01 01 01 00 00 01 01 00 01 00 ................ +ccf0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cd00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cd10 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cd20 01 00 01 01 01 00 00 01 00 00 00 00 00 00 01 01 ................ +cd30 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cd40 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +cd50 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cd60 01 00 01 00 01 01 01 00 01 00 01 00 00 00 01 01 ................ +cd70 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +cd80 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 01 ................ +cd90 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cda0 01 00 01 00 00 00 00 00 01 00 01 00 00 01 00 00 ................ +cdb0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cdc0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cdd0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cde0 01 00 00 00 01 01 01 00 00 01 00 01 00 01 00 01 ................ +cdf0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +ce00 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 ................ +ce10 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ce20 00 01 01 01 01 01 00 00 01 01 00 00 00 00 00 00 ................ +ce30 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ce40 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +ce50 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ce60 00 01 01 00 01 00 01 01 00 00 01 01 00 00 01 01 ................ +ce70 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +ce80 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +ce90 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cea0 00 01 00 01 01 01 00 01 01 00 00 00 00 01 00 01 ................ +ceb0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cec0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +ced0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cee0 00 01 00 01 00 00 01 00 00 00 00 01 01 00 00 00 ................ +cef0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cf00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cf10 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cf20 00 01 00 00 00 01 01 00 01 00 01 01 00 01 00 00 ................ +cf30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cf40 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 ................ +cf50 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cf60 00 00 01 01 00 01 01 00 01 01 01 00 01 01 01 01 ................ +cf70 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cf80 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cf90 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cfa0 00 00 01 00 00 01 00 01 00 00 00 00 00 01 00 01 ................ +cfb0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cfc0 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 00 ................ +cfd0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +cfe0 00 00 00 01 00 00 01 00 01 01 01 01 01 00 00 00 ................ +cff0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d000 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 00 ................ +d010 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d020 01 01 01 01 01 01 01 00 00 01 00 01 01 00 00 00 ................ +d030 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +d050 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d060 01 01 01 00 00 00 00 00 01 01 01 00 01 00 01 01 ................ +d070 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d080 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 01 ................ +d090 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d0a0 01 00 01 01 01 01 00 00 00 00 01 00 00 01 01 00 ................ +d0b0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d0c0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +d0d0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d0e0 01 00 00 01 00 00 00 01 01 01 01 01 00 01 01 00 ................ +d0f0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d100 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 00 ................ +d110 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d120 00 01 01 00 01 01 00 01 00 00 01 01 00 01 01 00 ................ +d130 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d140 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 ................ +d150 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d160 00 01 00 01 00 01 00 01 01 00 01 00 01 01 00 01 ................ +d170 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d180 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 ................ +d190 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d1a0 00 01 00 01 00 00 01 00 00 00 01 00 01 01 01 00 ................ +d1b0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d1c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d1d0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d1e0 00 01 00 01 01 01 01 01 01 00 01 01 00 00 00 01 ................ +d1f0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d200 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +d210 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d220 00 01 01 01 01 00 00 00 01 01 01 00 01 00 00 01 ................ +d230 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d240 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 00 ................ +d250 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d260 01 00 00 01 00 01 00 01 00 01 01 00 01 01 00 01 ................ +d270 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d280 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 00 ................ +d290 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d2a0 01 00 01 00 01 01 00 01 01 00 00 01 00 01 00 01 ................ +d2b0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d2c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +d2d0 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d2e0 01 00 01 01 01 00 00 01 01 00 01 01 01 00 01 01 ................ +d2f0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d300 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +d310 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d320 01 00 01 01 01 00 01 00 01 01 00 01 01 00 00 00 ................ +d330 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d340 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +d350 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d360 01 00 01 00 01 01 01 01 00 00 01 01 01 01 00 00 ................ +d370 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d380 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 ................ +d390 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d3a0 01 00 00 01 01 01 00 00 00 01 01 00 00 00 01 00 ................ +d3b0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d3c0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +d3d0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d3e0 01 00 00 00 00 01 00 01 00 01 01 00 00 01 01 00 ................ +d3f0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d400 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +d410 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d420 00 01 01 01 00 00 00 01 01 01 01 01 00 00 00 00 ................ +d430 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d440 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +d450 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d460 00 01 01 00 00 00 01 01 01 01 00 00 00 01 01 01 ................ +d470 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d480 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +d490 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d4a0 00 01 00 01 01 01 00 00 01 01 01 01 00 01 01 01 ................ +d4b0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d4c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +d4d0 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d4e0 00 01 01 00 00 00 00 01 01 00 00 00 00 01 01 01 ................ +d4f0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d500 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +d510 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d520 00 01 01 01 00 00 01 01 01 01 01 01 01 00 01 01 ................ +d530 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d540 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +d550 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d560 01 00 00 01 00 01 00 00 00 00 01 01 00 01 00 00 ................ +d570 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d580 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +d590 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d5a0 01 00 01 01 01 01 00 01 00 00 00 00 00 01 01 01 ................ +d5b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d5c0 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 01 ................ +d5d0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d5e0 01 01 00 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +d5f0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d600 01 01 01 01 01 01 01 01 01 01 01 01 00 00 00 00 ................ +d610 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d620 01 01 01 01 00 00 00 00 01 00 01 01 00 00 00 00 ................ +d630 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d640 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +d650 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d660 01 01 01 00 01 00 00 00 01 00 01 00 00 01 01 01 ................ +d670 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d680 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +d690 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d6a0 01 01 00 00 01 00 00 01 01 00 00 00 01 00 01 00 ................ +d6b0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d6c0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +d6d0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d6e0 01 00 01 00 00 00 01 01 01 00 01 01 00 00 01 00 ................ +d6f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d700 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 00 ................ +d710 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d720 01 00 00 00 00 00 01 00 01 00 01 01 01 00 01 00 ................ +d730 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d740 01 01 01 01 01 01 01 01 01 01 01 01 00 00 01 00 ................ +d750 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d760 00 01 01 01 00 00 00 00 01 00 01 01 01 01 00 00 ................ +d770 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d780 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +d790 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d7a0 00 01 01 01 00 00 00 00 00 01 01 00 00 00 00 00 ................ +d7b0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d7c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +d7d0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d7e0 00 01 01 01 01 01 01 01 01 01 01 01 00 00 00 01 ................ +d7f0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d800 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +d810 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d820 01 00 00 01 01 00 01 01 01 00 01 01 01 00 00 01 ................ +d830 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d840 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +d850 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d860 01 00 01 01 01 01 00 00 00 01 01 00 01 01 01 00 ................ +d870 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d880 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 ................ +d890 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d8a0 01 01 01 00 00 00 01 00 01 01 00 00 00 00 01 00 ................ +d8b0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d8c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +d8d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d8e0 00 00 00 00 00 01 01 01 01 01 00 00 00 00 00 00 ................ +d8f0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d900 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 ................ +d910 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d920 00 00 01 00 01 00 00 00 00 01 01 00 01 01 00 00 ................ +d930 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d940 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +d950 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d960 00 00 01 01 01 00 00 01 01 01 01 01 01 01 00 00 ................ +d970 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +d980 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 ................ +d990 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d9a0 00 00 01 01 01 00 01 01 00 01 00 00 01 01 00 01 ................ +d9b0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d9c0 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 00 ................ +d9d0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +d9e0 00 00 01 01 00 00 00 01 01 00 00 00 00 00 00 01 ................ +d9f0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +da00 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 ................ +da10 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +da20 00 00 01 00 00 01 01 01 01 01 01 00 00 01 00 00 ................ +da30 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +da40 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +da50 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +da60 00 00 01 00 01 00 00 01 01 00 00 01 00 01 00 00 ................ +da70 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +da80 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +da90 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +daa0 00 00 01 01 01 00 01 00 00 01 01 00 00 01 00 01 ................ +dab0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +dac0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +dad0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +dae0 00 01 00 01 01 00 00 00 00 00 00 00 00 01 01 00 ................ +daf0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +db00 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +db10 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +db20 00 01 01 01 01 00 01 00 00 00 01 00 01 01 01 01 ................ +db30 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +db40 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +db50 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +db60 01 00 00 01 00 01 01 01 00 01 00 01 01 01 00 01 ................ +db70 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +db80 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +db90 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +dba0 01 00 01 00 00 01 00 01 01 00 00 01 01 01 01 00 ................ +dbb0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +dbc0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +dbd0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +dbe0 01 00 01 00 00 01 00 01 00 00 00 01 01 01 01 01 ................ +dbf0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +dc00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 ................ +dc10 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +dc20 01 00 00 01 01 00 00 01 00 01 01 01 01 00 00 00 ................ +dc30 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +dc40 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +dc50 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +dc60 01 00 00 00 00 00 00 00 00 00 00 01 01 00 00 01 ................ +dc70 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +dc80 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +dc90 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +dca0 00 01 00 01 01 01 01 01 00 00 00 00 01 00 00 00 ................ +dcb0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +dcc0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +dcd0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +dce0 00 00 01 01 01 01 00 01 01 01 00 01 00 00 01 01 ................ +dcf0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +dd00 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +dd10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +dd20 00 00 01 00 00 01 01 00 00 01 01 00 00 00 01 01 ................ +dd30 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +dd40 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 00 ................ +dd50 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +dd60 00 00 00 01 01 00 01 00 00 01 00 00 00 00 00 00 ................ +dd70 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +dd80 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +dd90 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +dda0 00 00 00 01 01 01 00 00 01 00 00 01 01 00 00 00 ................ +ddb0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ddc0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +ddd0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +dde0 00 00 01 00 00 00 01 00 01 01 01 00 00 01 01 01 ................ +ddf0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +de00 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 ................ +de10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +de20 00 00 01 00 01 00 01 00 00 00 01 01 00 00 01 01 ................ +de30 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +de40 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +de50 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +de60 00 00 01 01 00 00 00 00 00 01 00 00 00 01 01 01 ................ +de70 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +de80 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 00 ................ +de90 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +dea0 00 00 01 01 00 01 00 00 01 00 00 01 00 00 00 00 ................ +deb0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +dec0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ded0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +dee0 00 00 01 01 00 01 00 00 01 01 00 00 01 01 01 00 ................ +def0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +df00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +df10 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +df20 00 00 01 00 01 01 01 00 01 00 01 00 01 00 00 01 ................ +df30 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +df40 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +df50 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +df60 00 00 00 01 01 01 01 00 01 01 00 00 01 01 00 00 ................ +df70 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +df80 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +df90 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +dfa0 00 00 00 00 00 00 01 00 00 00 00 00 00 01 01 00 ................ +dfb0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +dfc0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +dfd0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +dfe0 01 01 00 01 01 00 00 01 00 00 00 01 01 01 00 01 ................ +dff0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e000 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +e010 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e020 01 00 01 00 01 00 01 00 00 00 01 01 00 01 01 01 ................ +e030 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +e050 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e060 01 00 00 00 00 00 00 00 00 01 01 01 01 01 00 01 ................ +e070 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e080 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +e090 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e0a0 00 01 01 00 00 01 00 00 00 01 01 01 00 01 01 00 ................ +e0b0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e0c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +e0d0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e0e0 00 01 00 01 01 01 00 01 00 00 00 01 00 01 01 00 ................ +e0f0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e100 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +e110 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e120 00 01 01 00 01 00 00 00 00 01 01 01 00 00 01 01 ................ +e130 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e140 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 ................ +e150 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e160 01 00 00 00 00 00 00 00 00 01 01 00 01 00 01 00 ................ +e170 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e180 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 ................ +e190 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e1a0 01 00 00 01 01 01 01 01 01 00 01 01 01 01 00 00 ................ +e1b0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e1c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +e1d0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e1e0 01 00 01 01 01 01 01 00 00 01 00 01 01 00 01 00 ................ +e1f0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e200 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +e210 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e220 01 01 00 01 01 00 00 01 01 01 01 00 00 00 00 00 ................ +e230 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e240 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 ................ +e250 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e260 01 01 01 00 01 01 00 00 01 01 00 00 00 00 01 01 ................ +e270 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e280 01 01 01 01 01 01 01 01 01 01 01 01 00 00 01 01 ................ +e290 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e2a0 01 01 01 01 00 01 00 00 01 00 00 00 01 01 00 01 ................ +e2b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e2c0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +e2d0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e2e0 01 01 01 01 00 01 00 01 00 01 00 01 01 00 00 00 ................ +e2f0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e300 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 00 ................ +e310 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e320 01 01 01 01 00 01 00 00 00 01 00 01 01 00 01 01 ................ +e330 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e340 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +e350 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e360 01 01 01 01 00 00 01 01 00 01 00 01 01 00 01 01 ................ +e370 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e380 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +e390 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e3a0 01 01 01 00 01 01 00 00 01 01 00 00 01 01 01 00 ................ +e3b0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e3c0 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 00 ................ +e3d0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e3e0 01 01 01 00 00 00 00 00 01 00 00 01 01 00 00 01 ................ +e3f0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e400 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +e410 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e420 01 01 00 00 01 01 01 01 01 01 00 01 01 00 00 00 ................ +e430 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e440 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +e450 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e460 01 01 00 00 00 01 01 00 00 00 00 01 00 00 00 01 ................ +e470 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e480 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +e490 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e4a0 01 01 00 00 01 00 00 01 01 00 00 00 01 01 01 01 ................ +e4b0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e4c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +e4d0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e4e0 01 01 00 01 01 00 01 00 01 00 01 00 00 01 00 01 ................ +e4f0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e500 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +e510 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e520 01 01 01 01 00 00 01 01 00 01 00 01 00 00 00 01 ................ +e530 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e540 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 00 ................ +e550 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e560 00 00 00 00 01 00 01 00 00 01 01 00 00 00 00 01 ................ +e570 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e580 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +e590 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e5a0 00 00 00 01 00 01 00 01 01 01 01 01 00 00 00 00 ................ +e5b0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e5c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +e5d0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e5e0 00 00 00 01 00 01 00 01 01 01 01 01 01 01 00 01 ................ +e5f0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e600 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +e610 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e620 00 00 00 01 00 00 01 00 01 01 01 01 00 01 00 00 ................ +e630 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e640 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 ................ +e650 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e660 00 00 00 01 00 01 00 01 01 00 01 01 01 00 01 01 ................ +e670 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e680 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 00 ................ +e690 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e6a0 00 00 01 00 00 00 01 00 01 00 00 01 00 00 01 01 ................ +e6b0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e6c0 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 00 ................ +e6d0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e6e0 00 00 01 01 00 01 00 00 01 00 01 00 01 00 00 00 ................ +e6f0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e700 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 01 ................ +e710 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e720 00 01 00 00 00 00 01 00 00 00 00 00 01 01 01 00 ................ +e730 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e740 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +e750 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e760 00 01 00 00 00 01 01 01 01 00 00 00 01 01 01 01 ................ +e770 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e780 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +e790 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e7a0 00 01 00 00 00 01 00 01 01 01 00 00 01 01 00 01 ................ +e7b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e7c0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +e7d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e7e0 00 01 00 00 00 00 00 00 01 00 00 00 00 00 01 01 ................ +e7f0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e800 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +e810 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e820 00 00 01 01 01 01 01 01 00 01 01 01 01 01 01 00 ................ +e830 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e840 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +e850 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e860 00 01 00 00 00 00 00 01 01 00 01 00 00 01 01 01 ................ +e870 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e880 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +e890 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e8a0 00 01 00 00 00 01 01 01 00 00 01 00 00 01 00 00 ................ +e8b0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e8c0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +e8d0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e8e0 00 01 00 00 01 00 00 01 00 00 00 01 01 01 01 01 ................ +e8f0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e900 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +e910 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e920 00 01 00 00 00 01 00 01 00 01 01 01 00 00 01 00 ................ +e930 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +e940 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +e950 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e960 00 01 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +e970 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e980 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +e990 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e9a0 00 00 01 01 01 01 01 01 00 01 01 01 01 01 00 01 ................ +e9b0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e9c0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +e9d0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +e9e0 00 01 00 00 00 01 00 00 00 00 01 00 01 00 01 01 ................ +e9f0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ea00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +ea10 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ea20 00 01 00 00 01 01 00 01 01 01 00 00 00 00 01 00 ................ +ea30 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ea40 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +ea50 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ea60 00 01 00 01 00 01 00 00 01 00 00 01 01 01 00 01 ................ +ea70 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ea80 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +ea90 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +eaa0 00 01 00 01 00 01 00 00 01 01 00 00 01 01 01 01 ................ +eab0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +eac0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +ead0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +eae0 00 01 00 00 01 00 01 01 00 00 00 00 00 00 01 01 ................ +eaf0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +eb00 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +eb10 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +eb20 00 00 01 01 01 00 01 00 01 01 00 00 00 01 00 01 ................ +eb30 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +eb40 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 00 ................ +eb50 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +eb60 00 00 01 00 00 00 01 00 01 00 00 01 01 01 00 01 ................ +eb70 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +eb80 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 01 ................ +eb90 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +eba0 00 00 00 00 00 00 00 00 00 01 01 00 01 00 00 00 ................ +ebb0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ebc0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +ebd0 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +ebe0 01 01 00 01 01 00 00 00 00 01 01 01 01 00 00 01 ................ +ebf0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ec00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +ec10 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +ec20 01 00 01 01 00 00 01 01 01 01 01 00 01 00 00 01 ................ +ec30 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ec40 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +ec50 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +ec60 01 00 00 01 01 01 00 01 01 00 00 00 01 00 01 01 ................ +ec70 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ec80 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +ec90 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +eca0 01 00 00 01 00 00 01 01 00 01 00 01 00 01 00 00 ................ +ecb0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ecc0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +ecd0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +ece0 01 00 00 01 00 01 00 00 00 01 00 01 00 00 01 00 ................ +ecf0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ed00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +ed10 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +ed20 01 00 00 01 00 01 01 01 00 01 01 01 00 00 00 01 ................ +ed30 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +ed40 01 01 01 01 01 01 01 01 01 01 01 01 00 00 01 00 ................ +ed50 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +ed60 01 00 00 01 01 00 00 00 00 01 00 01 01 00 01 01 ................ +ed70 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ed80 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +ed90 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +eda0 01 00 00 01 00 00 01 00 00 01 00 01 00 01 00 00 ................ +edb0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +edc0 01 01 01 01 01 01 01 01 01 01 01 01 00 00 00 01 ................ +edd0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +ede0 01 00 00 00 00 00 01 00 01 01 00 01 00 01 00 00 ................ +edf0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ee00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +ee10 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +ee20 00 01 01 00 01 01 01 01 01 01 01 00 00 00 00 01 ................ +ee30 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +ee40 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +ee50 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +ee60 00 01 00 01 01 01 00 00 00 01 01 01 01 00 00 01 ................ +ee70 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ee80 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +ee90 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +eea0 00 01 00 00 01 00 01 01 01 01 01 01 00 01 01 01 ................ +eeb0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +eec0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ................ +eed0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +eee0 00 00 01 01 01 00 01 00 00 00 00 00 00 00 01 01 ................ +eef0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ef00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ef10 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +ef20 00 00 01 00 01 00 01 00 00 00 00 00 01 00 01 00 ................ +ef30 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ef40 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +ef50 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +ef60 00 00 00 01 01 01 00 01 01 01 00 01 01 00 00 00 ................ +ef70 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +ef80 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 00 ................ +ef90 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +efa0 00 00 00 01 00 01 01 00 00 00 01 01 00 01 01 00 ................ +efb0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +efc0 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 00 ................ +efd0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +efe0 00 00 00 01 00 01 00 00 01 01 00 01 00 00 01 00 ................ +eff0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f000 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 01 ................ +f010 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f020 00 00 00 01 01 00 00 01 00 01 00 01 00 00 00 01 ................ +f030 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f040 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +f050 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f060 00 00 01 00 00 01 00 01 00 00 00 00 00 01 01 01 ................ +f070 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f080 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 01 ................ +f090 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f0a0 00 00 01 01 01 00 01 00 00 01 01 00 00 01 00 00 ................ +f0b0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f0c0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +f0d0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f0e0 00 01 00 01 00 01 00 01 01 01 01 00 00 01 00 01 ................ +f0f0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f100 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +f110 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f120 00 01 01 01 00 01 01 00 01 01 00 00 00 00 01 01 ................ +f130 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f140 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 ................ +f150 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f160 01 00 00 01 00 00 01 01 01 01 00 00 01 00 00 00 ................ +f170 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f180 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +f190 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f1a0 01 00 01 00 01 00 00 01 00 01 01 01 00 01 01 01 ................ +f1b0 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f1c0 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 ................ +f1d0 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f1e0 01 00 01 01 00 00 01 01 01 00 01 00 00 00 01 01 ................ +f1f0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f200 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +f210 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f220 01 00 01 01 00 01 00 01 00 00 00 00 00 00 01 00 ................ +f230 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f240 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +f250 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f260 01 00 01 01 00 00 01 01 01 00 00 00 01 01 01 01 ................ +f270 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f280 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +f290 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f2a0 01 00 01 01 00 00 00 00 01 01 01 01 01 00 01 00 ................ +f2b0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f2c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +f2d0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f2e0 01 00 01 00 01 01 01 01 01 01 00 01 01 01 00 00 ................ +f2f0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f310 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f320 01 00 01 00 01 00 01 01 01 00 01 01 00 01 00 00 ................ +f330 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f340 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +f350 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f360 01 00 01 00 00 01 01 00 00 00 00 01 00 00 00 01 ................ +f370 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f380 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +f390 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f3a0 01 00 01 00 00 00 01 01 00 00 01 01 01 00 00 01 ................ +f3b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f3c0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +f3d0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f3e0 01 00 01 00 01 00 01 00 01 01 00 01 00 00 00 00 ................ +f3f0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f400 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +f410 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f420 01 01 00 00 00 00 00 01 00 01 00 01 01 00 01 01 ................ +f430 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f440 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 00 ................ +f450 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f460 01 01 01 00 00 00 00 00 01 01 01 00 01 01 00 01 ................ +f470 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f480 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 01 ................ +f490 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f4a0 01 01 01 01 01 00 00 01 00 00 00 00 00 00 00 01 ................ +f4b0 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f4c0 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 01 ................ +f4d0 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f4e0 01 01 01 01 01 01 00 00 01 00 01 01 01 00 00 00 ................ +f4f0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f500 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 01 ................ +f510 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f520 01 01 01 00 01 01 00 00 00 01 01 00 00 01 01 00 ................ +f530 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f540 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +f550 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f560 01 01 00 01 00 00 01 01 00 01 00 01 01 01 01 01 ................ +f570 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f580 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +f590 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f5a0 01 01 00 00 00 00 00 00 00 00 01 00 01 01 00 01 ................ +f5b0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f5c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +f5d0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f5e0 01 00 01 01 01 00 00 00 00 01 00 01 00 00 01 00 ................ +f5f0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f600 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 01 ................ +f610 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f620 01 00 01 01 01 01 01 00 00 00 01 01 00 01 01 01 ................ +f630 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f640 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 ................ +f650 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f660 01 01 00 00 01 01 00 00 00 01 01 00 01 01 00 00 ................ +f670 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f680 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +f690 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f6a0 01 01 00 01 01 01 00 00 00 00 00 01 01 00 01 00 ................ +f6b0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f6c0 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 00 ................ +f6d0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f6e0 01 01 01 00 01 00 01 00 01 01 00 01 01 00 00 00 ................ +f6f0 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f700 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +f710 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f720 01 01 01 01 01 00 00 00 00 01 00 01 01 00 00 00 ................ +f730 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f740 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +f750 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f760 00 00 00 00 01 00 00 00 00 01 01 01 01 01 00 00 ................ +f770 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f780 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 ................ +f790 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f7a0 00 00 00 01 00 01 01 01 00 00 01 00 01 01 00 01 ................ +f7b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f7c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f7d0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f7e0 00 00 00 01 01 01 00 01 00 00 00 01 00 00 01 01 ................ +f7f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f800 00 00 00 00 00 00 00 00 00 00 00 00 01 01 00 01 ................ +f810 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f820 00 00 00 01 00 00 01 01 01 00 00 00 00 01 01 01 ................ +f830 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f840 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +f850 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f860 00 00 00 00 00 00 00 00 01 01 00 00 01 01 00 01 ................ +f870 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f880 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +f890 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f8a0 01 01 01 00 01 00 01 01 01 01 00 01 01 01 01 00 ................ +f8b0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f8c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f8d0 01 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f8e0 01 01 01 00 00 00 00 01 01 00 01 01 01 00 00 00 ................ +f8f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f900 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 00 ................ +f910 00 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f920 01 01 01 00 00 01 00 01 01 00 01 01 00 00 01 00 ................ +f930 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f940 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 01 ................ +f950 00 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f960 01 01 01 01 00 01 01 01 01 01 01 01 00 00 00 01 ................ +f970 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f980 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 01 ................ +f990 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f9a0 00 00 00 01 00 01 01 01 01 00 01 01 01 01 00 00 ................ +f9b0 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +f9c0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +f9d0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +f9e0 00 00 01 01 01 01 01 01 00 00 00 01 00 01 01 01 ................ +f9f0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fa00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fa10 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fa20 00 01 01 00 01 00 01 00 00 01 00 01 00 01 00 01 ................ +fa30 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +fa40 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +fa50 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fa60 01 00 00 01 00 00 01 00 01 00 00 01 00 01 00 00 ................ +fa70 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fa80 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 01 ................ +fa90 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +faa0 01 00 01 00 01 01 01 00 01 01 01 00 00 01 01 01 ................ +fab0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fac0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +fad0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fae0 01 00 01 01 01 00 00 01 00 00 00 00 01 00 01 00 ................ +faf0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fb00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 01 ................ +fb10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fb20 01 00 01 01 00 00 00 00 00 01 01 01 01 00 01 00 ................ +fb30 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +fb40 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +fb50 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fb60 01 00 00 01 01 01 00 00 01 00 01 01 01 00 00 00 ................ +fb70 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fb80 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fb90 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fba0 01 00 00 00 00 01 01 01 00 01 01 01 00 01 01 01 ................ +fbb0 00 01 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +fbc0 01 01 01 01 01 01 01 01 01 01 01 01 00 01 01 00 ................ +fbd0 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fbe0 00 01 01 01 00 01 00 00 01 01 00 01 01 01 01 00 ................ +fbf0 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +fc00 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +fc10 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fc20 00 01 01 00 01 00 00 01 01 01 01 00 00 00 00 01 ................ +fc30 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +fc40 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ................ +fc50 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fc60 00 01 01 00 00 01 01 01 00 00 00 01 01 00 01 01 ................ +fc70 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fc80 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +fc90 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fca0 00 01 01 00 01 00 01 00 01 00 00 01 00 00 00 00 ................ +fcb0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fcc0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 ................ +fcd0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fce0 00 01 01 01 00 00 01 01 01 01 01 01 00 01 00 01 ................ +fcf0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fd00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 ................ +fd10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fd20 01 00 00 00 00 00 01 01 00 01 00 00 01 00 00 00 ................ +fd30 01 00 01 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +fd40 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 01 ................ +fd50 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fd60 01 00 00 01 00 01 01 00 01 01 00 01 00 00 01 00 ................ +fd70 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fd80 00 00 00 00 00 00 00 00 00 00 00 01 00 00 01 01 ................ +fd90 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fda0 01 00 01 00 00 01 00 01 00 00 00 00 01 01 01 00 ................ +fdb0 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fdc0 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 ................ +fdd0 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fde0 01 00 01 00 00 01 00 00 00 00 01 00 00 01 00 01 ................ +fdf0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fe00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 01 ................ +fe10 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fe20 01 00 00 01 00 01 00 01 00 01 01 01 01 01 00 01 ................ +fe30 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +fe40 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +fe50 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fe60 00 01 01 01 01 01 00 01 01 01 00 01 01 01 01 00 ................ +fe70 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +fe80 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 ................ +fe90 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fea0 00 01 01 00 00 00 00 00 01 00 00 01 00 00 01 00 ................ +feb0 01 01 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +fec0 01 01 01 01 01 01 01 01 01 01 01 01 00 01 00 00 ................ +fed0 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +fee0 00 01 00 00 00 01 01 00 00 00 00 00 01 01 00 00 ................ +fef0 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ff00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01 ................ +ff10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ff20 00 00 01 01 00 00 00 00 01 01 01 01 00 01 00 00 ................ +ff30 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ff40 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................ +ff50 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ff60 00 00 01 00 00 01 01 01 01 00 00 00 01 00 00 01 ................ +ff70 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ff80 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 01 ................ +ff90 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ffa0 00 00 01 00 01 01 00 00 00 00 01 00 01 00 01 01 ................ +ffb0 01 00 00 00 00 00 00 00 00 00 00 01 01 01 01 01 ................ +ffc0 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00 ................ +ffd0 01 01 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ +ffe0 00 00 01 01 01 01 01 00 00 00 00 00 01 01 00 00 ................ +fff0 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 ............... + +No. Time Source Destination Protocol Length Info + 2258 1.012072 host 1.1.6 USB 27 URB_BULK in + +Frame 2258: 27 bytes on wire (216 bits), 27 bytes captured (216 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 15:10:24.685098000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 13:10:24.685098000 UTC + Epoch Arrival Time: 1750684224.685098000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000039000 seconds] + [Time delta from previous displayed frame: 0.000039000 seconds] + [Time since reference or first frame: 1.012072000 seconds] + Frame Number: 2258 + Frame Length: 27 bytes (216 bits) + Capture Length: 27 bytes (216 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.6] + USBPcap pseudoheader length: 27 + IRP ID: 0xffff92071af7c010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: URB_BULK (0x03) + Packet Data Length: 0 + [Response in: 2901] + [bInterfaceClass: Vendor Specific (0xff)] + +0000 1b 00 10 c0 f7 1a 07 92 ff ff 00 00 00 00 09 00 ................ +0010 00 01 00 01 00 86 03 00 00 00 00 ........... diff --git a/reverse_eng_dataset/24bit_48k_LINE_SILENCE__PLAYBACK440_SINE.txt b/reverse_eng_dataset/24bit_48k_LINE_SILENCE__PLAYBACK440_SINE.txt new file mode 100644 index 0000000..fe8111f --- /dev/null +++ b/reverse_eng_dataset/24bit_48k_LINE_SILENCE__PLAYBACK440_SINE.txt @@ -0,0 +1,4372 @@ +No. Time Source Destination Protocol Length Info + 9020 5.411471 1.1.6 host USB 131099 URB_BULK in + +Frame 9020: 131099 bytes on wire (1048792 bits), 65535 bytes captured (524280 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.321475000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.321475000 UTC + Epoch Arrival Time: 1750682866.321475000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000654000 seconds] + [Time delta from previous displayed frame: 0.000654000 seconds] + [Time since reference or first frame: 5.411471000 seconds] + Frame Number: 9020 + Frame Length: 131099 bytes (1048792 bits) + Capture Length: 65535 bytes (524280 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.6] + [Destination: host] + USBPcap pseudoheader length: 27 + IRP ID: 0xffff92071af7c560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: URB_BULK (0x03) + Packet Data Length: 131072 + [Request in: 8404] + [Time from request: 0.298232000 seconds] + [bInterfaceClass: Vendor Specific (0xff)] +Leftover Capture Data […]: 000000000000000000000000000000000000000101010001000000000000000000000000000000000000000000000000000000000001010000000000000000000101010101010101010101010101010101010001000001000000000000000000000000000000000000 + +No. Time Source Destination Protocol Length Info + 9021 5.411537 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 9021: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.321541000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.321541000 UTC + Epoch Arrival Time: 1750682866.321541000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000066000 seconds] + [Time delta from previous displayed frame: 0.000066000 seconds] + [Time since reference or first frame: 5.411537000 seconds] + Frame Number: 9021 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720df8010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 9062] + Isochronous transfer start frame: 1525713 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 9024 5.412631 1.1.2 host USB 519 URB_ISOCHRONOUS out + +Frame 9024: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.322635000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.322635000 UTC + Epoch Arrival Time: 1750682866.322635000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000319000 seconds] + [Time delta from previous displayed frame: 0.001094000 seconds] + [Time since reference or first frame: 5.412631000 seconds] + Frame Number: 9024 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b65a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 8992] + [Time from request: 0.013772000 seconds] + Isochronous transfer start frame: 1525694 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + +No. Time Source Destination Protocol Length Info + 9025 5.412734 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 9025: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.322738000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.322738000 UTC + Epoch Arrival Time: 1750682866.322738000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000103000 seconds] + [Time delta from previous displayed frame: 0.000103000 seconds] + [Time since reference or first frame: 5.412734000 seconds] + Frame Number: 9025 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 8982] + [Time from request: 0.017784000 seconds] + Isochronous transfer start frame: 1525697 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 9026 5.412995 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 9026: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.322999000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.322999000 UTC + Epoch Arrival Time: 1750682866.322999000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000261000 seconds] + [Time delta from previous displayed frame: 0.000261000 seconds] + [Time since reference or first frame: 5.412995000 seconds] + Frame Number: 9026 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 9067] + Isochronous transfer start frame: 1525715 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 9027 5.413024 host 1.1.2 USB 3399 URB_ISOCHRONOUS out + +Frame 9027: 3399 bytes on wire (27192 bits), 3399 bytes captured (27192 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.323028000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.323028000 UTC + Epoch Arrival Time: 1750682866.323028000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000029000 seconds] + [Time delta from previous displayed frame: 0.000029000 seconds] + [Time since reference or first frame: 5.413024000 seconds] + Frame Number: 9027 + Frame Length: 3399 bytes (27192 bits) + Capture Length: 3399 bytes (27192 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b65a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2880 + [Response in: 9059] + Isochronous transfer start frame: 1525709 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ea3334823434000000000000ddba3a62ba3a000000000000300f41530f41000000000000002d47282d47000000000000c50d4def0d4d000000000000a5ad52edad52000000000000 +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1f0758f7065800000000000060165d10165d0000000000004cd56114d6610000000000008342664c426600000000000072576a89576a00000000000074136e43136e000000000000 +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3b7171347171000000000000fb6e74b36e740000000000006109775b09770000000000001a3f79273f79000000000000970d7b860d7b0000000000007d737c49737c000000000000 +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 74707d7b707d000000000000e6017e6b027e0000000000008e297e6b297e000000000000ece47d4ce57d00000000000043367d5e367d000000000000fa1c7cf31c7c000000000000 +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 719a7ac29a7a000000000000d2af78a3af78000000000000b25e76f45e76000000000000d4a873bea873000000000000c690707e91700000000000004d1a6d94196d000000000000 +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 7c4569904569000000000000a018659818650000000000000495607a956000000000000003c05b08c05b000000000000999c56f79c56000000000000883051ec3051000000000000 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d07e4bab7e4b0000000000005f8d45928d450000000000000d613f40613f0000000000007bfe3818ff38000000000000cb6b32bc6b32000000000000b9ae2b81ae2b000000000000 +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8acb2425cc24000000000000a0ca1d19ca1d000000000000ccae164faf1600000000000028810f1d810f000000000000ab45088b4508000000000000100301880301000000000000 +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 37c0f910c0f90000000000008b82f20682f2000000000000d04febb04feb000000000000492ee4082fe4000000000000cc25dd7e25dd0000000000001d3ad6693ad6000000000000 +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5672cf1d72cf000000000000f8d2c87cd3c8000000000000d563c27b63c2000000000000be27bcd127bc000000000000ae25b6ae25b6000000000000cf62b0c562b0000000000000 +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 94e2aac9e2aa00000000000017aca53baca500000000000050c0a0fac0a000000000000032279c15279c000000000000d9e19719e29700000000000051f5936ef593000000000000 +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b56490c5649000000000000071328df0328d00000000000042628a05628a000000000000def4874ff587000000000000d2ee8565ee850000000000001b4f84d44f84000000000000 +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 261983201983000000000000d74c82524d82000000000000f7eb8180eb8100000000000026f5816df5810000000000004d6a82706a820000000000007b4983814983000000000000 +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3c92845692840000000000008044866f4486000000000000c15d88e55d88000000000000c0dc8a3cdc8a00000000000028bf8d35bf8d000000000000cf0191de0191000000000000 +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: cea39433a39400000000000052a0987ca098000000000000bbf49c65f49c0000000000000b9da1749da1000000000000bc95a64b95a6000000000000f1d9ab0adaab000000000000 +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b365b16965b10000000000008834b7f334b70000000000006840bd9f40bd0000000000000286c33886c30000000000004bfec9b8fdc900000000000012a4d08ea4d0000000000000 +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: bd72d72572d70000000000003963de7e63de0000000000007770e54c70e5000000000000f293ec5394ec0000000000006dc8f398c8f3000000000000f706fb0107fb000000000000 +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a04902c24902000000000000c08a09dc8a090000000000002ec3102bc31000000000000068ed178fed170000000000007c031fa3031f0000000000004aff2549ff25000000000000 +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 79da2ce6da2c0000000000002d9033d18f3300000000000090193ac6193a000000000000b97140907140000000000000a4924623934600000000000032794cce784c000000000000 +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 591d523b1d520000000000007f7c57b57c5700000000000075915c2a915c000000000000055761d25761000000000000e8ca65baca6500000000000082e769ffe769000000000000 +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1eab6deaaa6d000000000000d210714711710000000000006a1774c116740000000000006eba7615bb7600000000000047f9783af97800000000000047d17a5bd17a000000000000 +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1e417cfb407c00000000000002477d9c477d00000000000000e37d19e37d00000000000006147e2c147e00000000000001da7d27da7d0000000000006b357da3357d000000000000 +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 06267c00267c00000000000085ad7a54ad7a000000000000eecc785dcc780000000000006c85767f85760000000000003bd97398d973000000000000e8ca700ccb70000000000000 +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 345e6d845e6d000000000000a59469b494690000000000004a7165277165000000000000acf76065f7600000000000008c2b5c9f2b5c0000000000002d1157b61057000000000000 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5fac5167ac5100000000000057024c9a024c000000000000ac1746c517460000000000008ef13f50f13f000000000000d594395d9539000000000000750733000733000000000000 +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: de4d2cf54d2c000000000000086f25e56e250000000000009d6f1e48701e0000000000008f5617a95617000000000000bc2910632a100000000000002eef08e9ee08000000000000 +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 84ac0115ad01000000000000ac68fa0f68fa000000000000f228f3c829f30000000000009df4ebabf4eb00000000000085d1e490d1e40000000000002cc5ddfac4dd000000000000 +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f2d5d6e3d5d6000000000000060ad0a509d0000000000000e965c9f065c900000000000016f1c20af1c20000000000007fafbc23afbc0000000000006da7b652a7b6000000000000 +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 17ddb02fddb00000000000003856ab3756ab000000000000b617a6ae17a60000000000008324a13625a100000000000029839cba829c0000000000006d3598053698000000000000 +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6e4094904094000000000000c1a690eda6900000000000000c6c8d3e6c8d00000000000021928ac5918a000000000000b91b88fd1b88000000000000d10b86d30b86000000000000 +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3d6384fc62840000000000005023838e23830000000000009f4d82514e820000000000006ce281c5e28100000000000001e381cfe281000000000000e94d82164e82000000000000 +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: fe2383b32383000000000000a06384c96384000000000000c10c869f0c86000000000000401c88961c8800000000000031938ab8928a0000000000006d6c8df36c8d000000000000 +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e3a7908ca7900000000000001f41940d419400000000000015369896369800000000000026839c3f839c0000000000004424a17a24a1000000000000ff16a6ca16a6000000000000 +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: cf54ab1555ab0000000000005adbb057dbb000000000000092a4b606a4b6000000000000c4abbc12acbc0000000000009eecc22aecc20000000000002761c90a61c9000000000000 +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0904d01604d00000000000005ecfd661cfd6000000000000fbbddd42bedd00000000000015c9e42ec9e4000000000000ebebeba8ebeb000000000000221ff3221ff3000000000000 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2c5efab25dfa0000000000005ea001c0a001000000000000fce208e4e208000000000000351c10b11c100000000000007849175649170000000000004c611e97611e000000000000 +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5c60256e6025000000000000703f2c4b3f2c00000000000083f83281f8320000000000005487390a873900000000000054e33ff8e33f000000000000160b469e0a46000000000000 +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c2f54b53f64b0000000000005aa151c4a0510000000000003d0657ca065700000000000010225c03225c00000000000047ef601aef600000000000002f6a655a6a65000000000000 +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b58e69398f69000000000000a75a6d755a6d00000000000032c9709bc8700000000000008fd7736ad77300000000000008847692837600000000000045cb78c1cb78000000000000 +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a5ac7af0ab7a00000000000006257caa257c0000000000007b347dd4347d00000000000037da7dbcd97d0000000000004e147eb3147e00000000000080e47d0de47d000000000000 + +No. Time Source Destination Protocol Length Info + 9028 5.413206 host 1.1.6 USB 27 URB_BULK in + +Frame 9028: 27 bytes on wire (216 bits), 27 bytes captured (216 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.323210000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.323210000 UTC + Epoch Arrival Time: 1750682866.323210000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000182000 seconds] + [Time delta from previous displayed frame: 0.000182000 seconds] + [Time since reference or first frame: 5.413206000 seconds] + Frame Number: 9028 + Frame Length: 27 bytes (216 bits) + Capture Length: 27 bytes (216 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.6] + USBPcap pseudoheader length: 27 + IRP ID: 0xffff92071af7c560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: URB_BULK (0x03) + Packet Data Length: 0 + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 9031 5.414720 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 9031: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.324724000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.324724000 UTC + Epoch Arrival Time: 1750682866.324724000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000983000 seconds] + [Time delta from previous displayed frame: 0.001514000 seconds] + [Time since reference or first frame: 5.414720000 seconds] + Frame Number: 9031 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 8986] + [Time from request: 0.017904000 seconds] + Isochronous transfer start frame: 1525699 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 9032 5.415009 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 9032: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.325013000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.325013000 UTC + Epoch Arrival Time: 1750682866.325013000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000289000 seconds] + [Time delta from previous displayed frame: 0.000289000 seconds] + [Time since reference or first frame: 5.415009000 seconds] + Frame Number: 9032 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 9072] + Isochronous transfer start frame: 1525717 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 9035 5.416721 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 9035: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.326725000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.326725000 UTC + Epoch Arrival Time: 1750682866.326725000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000974000 seconds] + [Time delta from previous displayed frame: 0.001712000 seconds] + [Time since reference or first frame: 5.416721000 seconds] + Frame Number: 9035 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff92072203f560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 8991] + [Time from request: 0.017892000 seconds] + Isochronous transfer start frame: 1525701 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 9036 5.416839 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 9036: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.326843000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.326843000 UTC + Epoch Arrival Time: 1750682866.326843000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000118000 seconds] + [Time delta from previous displayed frame: 0.000118000 seconds] + [Time since reference or first frame: 5.416839000 seconds] + Frame Number: 9036 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff92072203f560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 9077] + Isochronous transfer start frame: 1525719 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 9037 5.417598 1.1.2 host USB 519 URB_ISOCHRONOUS out + +Frame 9037: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.327602000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.327602000 UTC + Epoch Arrival Time: 1750682866.327602000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000759000 seconds] + [Time delta from previous displayed frame: 0.000759000 seconds] + [Time since reference or first frame: 5.417598000 seconds] + Frame Number: 9037 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b6050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 9002] + [Time from request: 0.014754000 seconds] + Isochronous transfer start frame: 1525699 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + +No. Time Source Destination Protocol Length Info + 9040 5.418766 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 9040: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.328770000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.328770000 UTC + Epoch Arrival Time: 1750682866.328770000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001014000 seconds] + [Time delta from previous displayed frame: 0.001168000 seconds] + [Time since reference or first frame: 5.418766000 seconds] + Frame Number: 9040 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff92072203f010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 8996] + [Time from request: 0.017807000 seconds] + Isochronous transfer start frame: 1525703 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 9041 5.418901 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 9041: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.328905000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.328905000 UTC + Epoch Arrival Time: 1750682866.328905000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000135000 seconds] + [Time delta from previous displayed frame: 0.000135000 seconds] + [Time since reference or first frame: 5.418901000 seconds] + Frame Number: 9041 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff92072203f010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 9081] + Isochronous transfer start frame: 1525721 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 9042 5.418924 host 1.1.2 USB 3399 URB_ISOCHRONOUS out + +Frame 9042: 3399 bytes on wire (27192 bits), 3399 bytes captured (27192 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.328928000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.328928000 UTC + Epoch Arrival Time: 1750682866.328928000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000023000 seconds] + [Time delta from previous displayed frame: 0.000023000 seconds] + [Time since reference or first frame: 5.418924000 seconds] + Frame Number: 9042 + Frame Length: 3399 bytes (27192 bits) + Capture Length: 3399 bytes (27192 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b6050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2880 + [Response in: 9071] + Isochronous transfer start frame: 1525714 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ad487df2487d00000000000037447cfe427c00000000000055d47a0ad57a000000000000c1fc7890fc78000000000000fbbe76efbe76000000000000361c742d1c74000000000000 +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: dd1671c916710000000000002cb26dafb26d000000000000f6f069e2f06900000000000094d565f1d565000000000000b96361a063610000000000000a9f5ce99e5c000000000000 +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6e8b57538b570000000000008c2d52a02d52000000000000c0894c2b894c000000000000a8a4467da446000000000000ce8340c583400000000000001b2b3a4a2b3a000000000000 +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e2a133b7a13300000000000069ec2c8dec2c000000000000951026941026000000000000de131f6d141f00000000000044fd17fefc17000000000000d7d11005d210000000000000 +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 299809c39709000000000000eb55020f56020000000000009a11fb7e11fb000000000000c4d1f375d1f3000000000000ce9bec169cec000000000000dd76e5ca76e5000000000000 +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5168dee967de0000000000006076d7e275d7000000000000d8a5d067a6d0000000000000dffec9c1fec9000000000000c384c3d284c3000000000000fe3ebd013fbd000000000000 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e130b72c31b70000000000000161b10561b1000000000000dbd3ab69d4ab000000000000238ea6378ea6000000000000c894a17995a1000000000000f2ea9c23eb9c000000000000 +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d295980896980000000000005a9894939894000000000000adf6908df690000000000000aeb28dccb28d000000000000dfcf8a2ed08a000000000000c55088385088000000000000 +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 7d3786f43686000000000000448584df84840000000000008e3b83de3b83000000000000105c823b5c820000000000009ae78139e78100000000000048de8133de81000000000000 +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c93e82e23e820000000000001b0c83250c830000000000007541847141840000000000005de18513e185000000000000aee7871fe887000000000000f7548ae4548a000000000000 +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8c258d27268d000000000000805890c157900000000000008fe89351e993000000000000ead597e6d597000000000000c51a9cda1a9c0000000000006bb5a060b5a0000000000000 +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e99fa529a0a500000000000086d7aa9ed7aa0000000000003557b0a557b0000000000000051bb6681ab6000000000000e71cbc321dbc0000000000006658c23c58c2000000000000 +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 52c8c83bc8c80000000000006d67cf3667cf000000000000202fd61c2fd6000000000000391bdd041bdd0000000000009923e45d24e4000000000000c144ebc544eb000000000000 +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d176f20177f20000000000005ab5f9a5b4f90000000000004af700f5f700000000000000283a08f03908000000000000cb740fc7740f00000000000036a316ffa216000000000000 +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 98bd1dbfbd1d00000000000047bf2444bf24000000000000dfa02b16a12b0000000000009c5e32575e320000000000004ff03820f03800000000000016523f68523f000000000000 +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ac7e45797e45000000000000576f4b856f4b000000000000c12051692051000000000000f78b566f8c5600000000000084ae5b43af5b000000000000068460bb8360000000000000 +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0b06654306650000000000007f3369593369000000000000c6066dc2066d000000000000e07d70227e70000000000000069573619573000000000000bb4a76944a76000000000000 +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 819b78e49a7800000000000006867afc857a000000000000f9077cc4077c00000000000000217d3d217d00000000000004d07d05d07d00000000000085147e01157e000000000000 +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 16ee7d75ed7d000000000000805c7df05c7d0000000000007f607c63607c00000000000017fb7ae7fb7a0000000000008b2d79992c7900000000000078f876b0f876000000000000 +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 7f5e74445e74000000000000046271b76171000000000000b8066e95066e000000000000434d6a034d6a000000000000c93966e5396600000000000078cf619bcf61000000000000 +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 18125d11125d0000000000007d0558750558000000000000b2ad521bae5200000000000087104d47104d000000000000463047be3047000000000000c01541e51441000000000000 +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2cc13a05c23a0000000000008b3c34103c34000000000000348a2df98a2d00000000000064b2261cb22600000000000032b81f4eb81f000000000000a8a31895a318000000000000 +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 777911b0791100000000000023410af9400a000000000000f9fe0279ff020000000000008abafb7ebafb000000000000a779f4287af40000000000001743edb142ed000000000000 +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 711ce6f41be6000000000000cf0adfee0adf0000000000009815d82715d80000000000004242d1b742d1000000000000db96ca2896ca000000000000aa18c4bd18c4000000000000 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 53cdbd21cdbd0000000000004dbab723bab7000000000000c3e3b112e4b10000000000002351ac0251ac0000000000007804a7fb03a7000000000000c003a2b203a2000000000000 +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b8529d59529d0000000000003af5989bf59800000000000014f09421f094000000000000f844915a4591000000000000e1f88dd9f88d000000000000930c8bcb0c8b000000000000 +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 898488ed8488000000000000776186a161860000000000000ea68459a684000000000000b45283f75283000000000000406a82396a820000000000006eeb81f4eb81000000000000 +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4ad881cdd7810000000000001430821330820000000000009df282b1f282000000000000ce1e84fb1e84000000000000fab485a4b4850000000000009bb28733b287000000000000 +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 66168a82168a00000000000003de8c5dde8c000000000000a90790fd07900000000000003f90936f9093000000000000d774974f759700000000000066b29b73b29b000000000000 +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f244a0db44a0000000000000c128a5c928a50000000000009159aa7659aa00000000000029d3af23d3af000000000000ff90b5a690b5000000000000528dbb908dbb000000000000 +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8cc4c1f2c3c1000000000000882fc8be2fc8000000000000d5cace96cace0000000000004a8fd5658fd5000000000000ae77dcf977dc000000000000167fe3e57ee3000000000000 +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 7a9dea369dea00000000000003cff100cff1000000000000970bf99b0bf9000000000000964e009d4e00000000000000ed90076b9107000000000000becd0e30cd0e000000000000 +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6dfc1504fd15000000000000dd191d4f191d0000000000004d1d24bf1d2400000000000008032b02032b0000000000005cc331fbc3310000000000007f5a38a85938000000000000 +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9cc03ee0c03e000000000000f3f144acf14400000000000089e84ad7e84a0000000000007c9f50c79f50000000000000981256df11560000000000009e3b5bd83b5b000000000000 +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c917606117600000000000003ba26438a264000000000000dfd668b4d66800000000000017b36c73b26c000000000000773270b33270000000000000c75273de5273000000000000 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f91076c81076000000000000116b78716b78000000000000d25e7a035f7a00000000000031eb7bcfea7b000000000000b40d7dce0d7d00000000000069c67d36c67d000000000000 +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0b147e3b147e0000000000006af77d98f77d000000000000266f7d186f7d000000000000247d7c7f7d7c000000000000c4207bd1207b0000000000007e5c798c5c79000000000000 +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: cf3077e9307700000000000035a07496a074000000000000c5ac71a4ac710000000000004b596e55596e00000000000049a96ab1a86a0000000000009e9d66d39d66000000000000 +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f73a62e33a62000000000000e3845dfe845d000000000000187f581f7f580000000000006a2e53742e5300000000000081964d8d964d00000000000063bd471bbd47000000000000 +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 68a64166a6410000000000001c583b21583b000000000000d3d634b4d634000000000000ed282ebe282e0000000000001f53272d5327000000000000895c20135c20000000000000 + +No. Time Source Destination Protocol Length Info + 9043 5.420724 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 9043: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.330728000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.330728000 UTC + Epoch Arrival Time: 1750682866.330728000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001800000 seconds] + [Time delta from previous displayed frame: 0.001800000 seconds] + [Time since reference or first frame: 5.420724000 seconds] + Frame Number: 9043 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720b96560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 9001] + [Time from request: 0.017903000 seconds] + Isochronous transfer start frame: 1525705 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 9044 5.420938 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 9044: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.330942000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.330942000 UTC + Epoch Arrival Time: 1750682866.330942000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000214000 seconds] + [Time delta from previous displayed frame: 0.000214000 seconds] + [Time since reference or first frame: 5.420938000 seconds] + Frame Number: 9044 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720b96560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 9086] + Isochronous transfer start frame: 1525723 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 9047 5.422601 1.1.2 host USB 519 URB_ISOCHRONOUS out + +Frame 9047: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.332605000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.332605000 UTC + Epoch Arrival Time: 1750682866.332605000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000851000 seconds] + [Time delta from previous displayed frame: 0.001663000 seconds] + [Time since reference or first frame: 5.422601000 seconds] + Frame Number: 9047 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff92072024f5a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 9016] + [Time from request: 0.013697000 seconds] + Isochronous transfer start frame: 1525704 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + +No. Time Source Destination Protocol Length Info + 9048 5.422719 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 9048: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.332723000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.332723000 UTC + Epoch Arrival Time: 1750682866.332723000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000118000 seconds] + [Time delta from previous displayed frame: 0.000118000 seconds] + [Time since reference or first frame: 5.422719000 seconds] + Frame Number: 9048 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720b96010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 9006] + [Time from request: 0.017731000 seconds] + Isochronous transfer start frame: 1525707 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 9049 5.422842 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 9049: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.332846000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.332846000 UTC + Epoch Arrival Time: 1750682866.332846000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000123000 seconds] + [Time delta from previous displayed frame: 0.000123000 seconds] + [Time since reference or first frame: 5.422842000 seconds] + Frame Number: 9049 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720b96010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 9091] + Isochronous transfer start frame: 1525725 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 9050 5.422874 host 1.1.2 USB 3399 URB_ISOCHRONOUS out + +Frame 9050: 3399 bytes on wire (27192 bits), 3399 bytes captured (27192 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.332878000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.332878000 UTC + Epoch Arrival Time: 1750682866.332878000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000032000 seconds] + [Time delta from previous displayed frame: 0.000032000 seconds] + [Time since reference or first frame: 5.422874000 seconds] + Frame Number: 9050 + Frame Length: 3399 bytes (27192 bits) + Capture Length: 3399 bytes (27192 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff92072024f5a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2880 + [Response in: 9083] + Isochronous transfer start frame: 1525719 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e14919db491900000000000052211230211200000000000091e90a9ee90a00000000000099a8032ea803000000000000a563fca063fc0000000000005822f55d22f5000000000000 +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0aeaedbde9ed00000000000041c1e667c1e600000000000032aedfcaaddf00000000000095b5d8f3b5d80000000000003cdfd127dfd1000000000000e62fcb0b30cb000000000000 +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 06adc4d5acc4000000000000e15cbecd5cbe0000000000003444b87344b8000000000000e468b2da68b2000000000000e5ceacb0ceac000000000000d17ba7237ca7000000000000 +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1d74a2e373a20000000000008bbb9d99bb9d000000000000f655995c56990000000000009248951c4895000000000000b39591ce959100000000000026408e37408e000000000000 +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 864b8b414c8b000000000000b8ba8802ba88000000000000c68d86ec8d86000000000000e0c884fbc8840000000000001b6c834a6c830000000000008f79822e7982000000000000 +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 71f1811cf181000000000000f9d381e5d38100000000000035228272228200000000000007db829fda82000000000000a7fd83bbfd83000000000000118a85fa8985000000000000 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3c7e87a37e870000000000001ed9899dd889000000000000ca978c3b988c000000000000a1b88fbab88f000000000000353993563893000000000000f21497621597000000000000 +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0d4b9b764a9b00000000000081d59fe0d59f0000000000005fb2a46bb2a4000000000000eddba94ddca90000000000009f4fafa74faf000000000000fe06b53d07b5000000000000 +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 31feba90feba0000000000009930c12d30c10000000000002f97c74497c70000000000006a2ece3e2ece00000000000054efd48fefd400000000000016d5db30d5db000000000000 +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 81d9e2c8d9e20000000000009af6e9c0f6e90000000000003e26f18c26f10000000000008862f87c62f800000000000041a5ffaea5ff00000000000047e80627e806000000000000 +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b0250e6d250e0000000000008556156e561500000000000014751c72751c0000000000009d7b230e7c2300000000000072642a5a642a000000000000e928319d2931000000000000 +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b6c33777c337000000000000112f3e232f3e000000000000fa6444e46544000000000000c2614a8e614a000000000000bc1e50191f500000000000003598551c9855000000000000 +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 24c85ae5c85a00000000000065ab5fbfab5f000000000000aa3d64ec3d64000000000000e17a680b7b68000000000000235f6cbf5e6c0000000000003ce76f90e76f000000000000 +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5d10733c107300000000000021d87503d875000000000000283b78273b7800000000000016387a69387a0000000000009fcd7b7dcd7b0000000000007dfa7c3cfa7c000000000000 +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ebbc7d6cbc7d000000000000b4137e0b147e000000000000f4007e65007e00000000000002827d59827d00000000000055997cf4987c0000000000001e467b3d467b000000000000 +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 178b79208b790000000000005768777b6877000000000000cbdf7440e0740000000000002ff57174f571000000000000d8a86ed8a86e0000000000008aff6aa3ff6a000000000000 +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 41fa6676fa6600000000000004a06250a0620000000000009af15d7af15d00000000000050f358b1f358000000000000f9a853e2a853000000000000fa174e8d184e000000000000 +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 7244485e4448000000000000473342f1334200000000000040ea3b04ea3b000000000000d06d350d6e35000000000000e7c32e0ac42e000000000000d1f12769f227000000000000 +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: defd202dfe2000000000000051ee1913ee19000000000000afc7120ec8120000000000007b910b79910b000000000000fb5004445104000000000000390dfd230dfd000000000000 +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6dcbf57ecbf50000000000006f92ee3a92ee0000000000006068e77768e7000000000000c652e0e752e00000000000007058d9cc58d9000000000000d87ed2157fd2000000000000 +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c1cbcb31cccb000000000000df45c5af45c50000000000003af0beb3f0be00000000000065d3b881d3b80000000000004ef2b236f2b20000000000008152adcb52ad000000000000 +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 94f8a72af9a700000000000083eaa243eaa2000000000000db299e742a9e000000000000b4bd9925be9900000000000058a89586a895000000000000adec9122ed91000000000000 +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 298f8e558f8e00000000000040918b9e918b000000000000f9f688fdf688000000000000f1c08626c186000000000000c6f284a2f284000000000000368c83538c83000000000000 +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f58f82c88f820000000000006ffd814cfd810000000000003dd681bdd681000000000000811a82db1a820000000000003cc982b9c9820000000000001ee383d2e283000000000000 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3b65853165850000000000007450872b508700000000000086a1895ba189000000000000bc568c06578c000000000000d06e8f116f8f00000000000011e69209e692000000000000 +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 15ba967aba960000000000003de79a3ee79a000000000000a16a9f6c6a9f000000000000893fa42340a40000000000006162a98362a90000000000000ecfae91cfae000000000000 +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8180b45880b4000000000000dd71ba2772ba0000000000007f9ec0629ec0000000000000e000c71701c7000000000000b093cd9693cd0000000000003451d4f350d4000000000000 +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: af33dbcc33db000000000000fd34e25935e20000000000007250e99450e9000000000000a57ef06b7ef000000000000034baf714baf700000000000016fcfe39fcfe000000000000 +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 713f06903f06000000000000957d0dc07d0d0000000000008aaf14deaf140000000000008ed01b61d01b0000000000000fda22e1d922000000000000d6c429e6c429000000000000 +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 608d30648d30000000000000042c37562c37000000000000eb9b3d1a9c3d0000000000006fd74302d843000000000000afd94977d949000000000000f39c4fe59c4f000000000000 +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8e1c553e1c5500000000000032545a1d545a000000000000983e5fb93e5f00000000000099d863cbd863000000000000271d68491d68000000000000190a6ced096c000000000000 +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 289b6f079b6f000000000000dccc72bacc720000000000003b9e75c19d75000000000000260a78b30a7800000000000065117a50117a0000000000009bb07bb1b07b000000000000 +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: afe67ce3e67c000000000000fab27da6b27d00000000000004147e9f147e000000000000aa0a7edf0a7e00000000000008967d6a967d00000000000025b67ceab67c000000000000 +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e96d7bad6d7b000000000000d3bb79adbb79000000000000a6a27784a277000000000000872375c223750000000000004341727c417200000000000039fe6ea1fe6e000000000000 +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 625c6b805c6b000000000000e35f67586067000000000000af0b63ba0b63000000000000ca625e65635e000000000000da6a59976a590000000000004226547d2654000000000000 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 939a4e6e9a4e00000000000014cc4881cc4800000000000001c0429abf42000000000000b37a3c777a3c0000000000007d02366d02360000000000004f5c2f5d5c2f000000000000 +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d48d28b48d28000000000000109d213b9d21000000000000ff8f1ae38f1a000000000000bd6b135d6c130000000000008b370c17380c0000000000008cf90498f904000000000000 +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9cb6fd49b6fd000000000000d875f63876f60000000000004e3deffc3cef000000000000a112e87113e8000000000000e3fce031fce0000000000000b600da3a01da000000000000 +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4b25d39d25d30000000000001c70cc1370cc000000000000bce6c5fae6c5000000000000c68ebf628ebf000000000000a56cb9da6cb90000000000003887b36587b3000000000000 +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: afe2adbbe2ad000000000000c883a87c83a8000000000000026fa3c66ea3000000000000baa89e9da89e0000000000003e359a3d359a0000000000003e1896781896000000000000 + +No. Time Source Destination Protocol Length Info + 9053 5.424721 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 9053: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.334725000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.334725000 UTC + Epoch Arrival Time: 1750682866.334725000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000974000 seconds] + [Time delta from previous displayed frame: 0.001847000 seconds] + [Time since reference or first frame: 5.424721000 seconds] + Frame Number: 9053 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720bdb050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 9010] + [Time from request: 0.017908000 seconds] + Isochronous transfer start frame: 1525709 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 9054 5.424937 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 9054: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.334941000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.334941000 UTC + Epoch Arrival Time: 1750682866.334941000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000216000 seconds] + [Time delta from previous displayed frame: 0.000216000 seconds] + [Time since reference or first frame: 5.424937000 seconds] + Frame Number: 9054 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720bdb050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1525727 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 9057 5.426721 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 9057: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.336725000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.336725000 UTC + Epoch Arrival Time: 1750682866.336725000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000971000 seconds] + [Time delta from previous displayed frame: 0.001784000 seconds] + [Time since reference or first frame: 5.426721000 seconds] + Frame Number: 9057 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920719bd6560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 9015] + [Time from request: 0.017845000 seconds] + Isochronous transfer start frame: 1525711 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 9058 5.426833 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 9058: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.336837000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.336837000 UTC + Epoch Arrival Time: 1750682866.336837000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000112000 seconds] + [Time delta from previous displayed frame: 0.000112000 seconds] + [Time since reference or first frame: 5.426833000 seconds] + Frame Number: 9058 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920719bd6560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1525729 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 9059 5.427606 1.1.2 host USB 519 URB_ISOCHRONOUS out + +Frame 9059: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.337610000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.337610000 UTC + Epoch Arrival Time: 1750682866.337610000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000773000 seconds] + [Time delta from previous displayed frame: 0.000773000 seconds] + [Time since reference or first frame: 5.427606000 seconds] + Frame Number: 9059 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b65a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 9027] + [Time from request: 0.014582000 seconds] + Isochronous transfer start frame: 1525709 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + +No. Time Source Destination Protocol Length Info + 9062 5.428722 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 9062: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.338726000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.338726000 UTC + Epoch Arrival Time: 1750682866.338726000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000974000 seconds] + [Time delta from previous displayed frame: 0.001116000 seconds] + [Time since reference or first frame: 5.428722000 seconds] + Frame Number: 9062 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720df8010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 9021] + [Time from request: 0.017185000 seconds] + Isochronous transfer start frame: 1525713 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 9063 5.428831 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 9063: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.338835000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.338835000 UTC + Epoch Arrival Time: 1750682866.338835000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000109000 seconds] + [Time delta from previous displayed frame: 0.000109000 seconds] + [Time since reference or first frame: 5.428831000 seconds] + Frame Number: 9063 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720df8010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1525731 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 9064 5.428858 host 1.1.2 USB 3399 URB_ISOCHRONOUS out + +Frame 9064: 3399 bytes on wire (27192 bits), 3399 bytes captured (27192 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.338862000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.338862000 UTC + Epoch Arrival Time: 1750682866.338862000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000027000 seconds] + [Time delta from previous displayed frame: 0.000027000 seconds] + [Time since reference or first frame: 5.428858000 seconds] + Frame Number: 9064 + Frame Length: 3399 bytes (27192 bits) + Capture Length: 3399 bytes (27192 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b65a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2880 + Isochronous transfer start frame: 1525724 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2c5592fd5492000000000000efee8e47ef8e00000000000020e98bd8e88b000000000000234589494589000000000000a60687c20687000000000000352e85c12e85000000000000 +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e7be83b8be830000000000005cb8823ab8820000000000009c1c82ae1c82000000000000b8eb81daeb81000000000000ca2582a6258200000000000050ca8259ca82000000000000 +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d3d9833ada830000000000004e5285135285000000000000b03287fb3287000000000000867a897a7a890000000000000f268c21268c000000000000c8348f84348f000000000000 +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0ca1922ba1920000000000005c6b96126b96000000000000838e9a568e9a00000000000000089f18089f0000000000001cd4a309d4a300000000000049eea8e5eea8000000000000 +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0953aef952ae000000000000d1fcb343fdb3000000000000fde7b985e7b9000000000000e10dc0d40dc00000000000006e6ac6ec6ac600000000000096f8cc30f8cc000000000000 +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 44b1d3d3b1d3000000000000cd90dabc90da000000000000ab8fe16e8fe100000000000046a8e876a8e8000000000000a4d5ef6cd5ef0000000000004410f78110f7000000000000 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: bc52fe9752fe000000000000a49605de9605000000000000c6d50c5ed60c000000000000c10a14a90a14000000000000ee2d1be32d1b000000000000933a225c3a22000000000000 +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 82292984292900000000000032f62f1ff62f000000000000049936889936000000000000730e3d010f3d000000000000e34f43195043000000000000565849555849000000000000 +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 28224f3d224f000000000000d9a854f8a85400000000000059e8597de85900000000000043da5e62da5e000000000000c37c63af7c6300000000000035ca67fac967000000000000 +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 92bf6ba9bf6b000000000000de586f3c596f000000000000e39372f99372000000000000896d75516e75000000000000dfe377c8e377000000000000c8f37986f479000000000000 +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3e9d7b2d9c7b000000000000b3dc7cc9dc7c00000000000045b27de1b17d000000000000a31d7e6c1d7e000000000000041d7e3f1d7e00000000000061b27d13b27d000000000000 +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2cdc7cabdc7c000000000000a79c7b699c7b000000000000bbf3794bf479000000000000a8e37780e3770000000000007f6d75816d750000000000009f9372a09372000000000000 +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6d586fad586f0000000000005abf6b2ebf6b000000000000c9c9674dca670000000000002e7d63577d6300000000000059db5eabdb5e000000000000d2e959b4e959000000000000 +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 79ab545eab54000000000000dc244f7d254f000000000000425c49425c490000000000003254431054430000000000008a133dc7133d000000000000569f364b9f36000000000000 +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a9fc2f55fc2f000000000000de3029ab3029000000000000f34222e542220000000000005d371b18371b000000000000471414e4141400000000000099e10ce2e00c000000000000 +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 55a205e8a205000000000000bc5ffe2c5ffe000000000000d31df71c1ef7000000000000bae3ef54e3ef0000000000005ab7e86ab7e8000000000000ce9ee1099fe1000000000000 +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ec9fdaae9fda000000000000dcc0d372c1d3000000000000f807cd7c07cd0000000000007279c6ea79c6000000000000391cc0781cc000000000000099f5b9d2f5b9000000000000 +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 200ab41b0ab4000000000000e15eae795fae000000000000e6f9a8d4f9a8000000000000e0dda35fdea3000000000000b0109f62109f0000000000005f959a11969a000000000000 +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1c71968070960000000000000fa59225a692000000000000bb378fd4368f0000000000007f288c50298c0000000000008f7c89597c89000000000000b73487df3487000000000000 +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a85385b95385000000000000e4da83f2da830000000000004ecb823fcb820000000000001a268216268200000000000071eb8185eb810000000000008b1b82ed1b82000000000000 +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: adb7826ab78200000000000027bc8362bc83000000000000482c85b82b85000000000000980287c40287000000000000304189cf4089000000000000b3e38be1e38b000000000000 +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 7ee98e6fe98e000000000000894d92914d920000000000008a0e96b70e96000000000000312a9a7f2a9a0000000000001d9c9eb69b9e0000000000001661a31a61a3000000000000 +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5b74a85974a8000000000000a5d2ad5ed2ad0000000000002d76b30476b3000000000000745bb9535bb90000000000002f7cbf6e7cbf00000000000051d4c5bbd3c5000000000000 +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d65dcccd5dcc0000000000008213d32313d3000000000000f8eed93befd900000000000073ebe059ebe00000000000002402e86a02e8000000000000be2defdc2def000000000000 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5e67f61968f600000000000007aafd7ba9fd00000000000006ee04f6ed04000000000000412e0c7d2d0c000000000000b66313bd6313000000000000b8881a81881a000000000000 +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8697216197210000000000006e8928f6892800000000000043592f69592f000000000000a50036ff00360000000000008a7a3c6d7a3c0000000000008dc04290c042000000000000 +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4ece48d2ce48000000000000ea9d4e6e9e4e000000000000972b54682b54000000000000307159f57059000000000000c46a5e426b5e0000000000005b1463911463000000000000 +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 7d696792696700000000000090676b81676b000000000000d7086f82096f000000000000634d72314d72000000000000502f75c12f750000000000000daf770faf77000000000000 +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8ec87981c879000000000000cb7a7bd77a7b00000000000017c47c71c47c0000000000008ca37d79a37d00000000000086187e3b187e00000000000052227e23227e000000000000 +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d8c07d1dc17d0000000000009cf47c5bf47c00000000000068be7b90be7b000000000000181f7a601f7a0000000000000d187857187800000000000068ab759bab75000000000000 +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 40da7253da720000000000007aa86f4ba86f0000000000002a176c2a176c000000000000a72a68ab2a680000000000005ae563ede4630000000000005c4b5f644b5f000000000000 +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4d605a85605a0000000000000d29550b2955000000000000eca84f27a94f000000000000fae54981e54900000000000040e343aee3430000000000002ea83d82a73d000000000000 +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ac37374e38370000000000004b99302499300000000000002fd12909d1290000000000002be5222ae52200000000000098dc1b9bdc1b0000000000009fbb142bbb14000000000000 +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 19890d41890d000000000000974b06cd4b060000000000004e08ffab08ff000000000000c8c6f7b9c6f7000000000000348bf0738bf0000000000000cf5de9455de9000000000000 +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9e42e2b542e20000000000007141db9b41db0000000000004c5fd42f5fd400000000000036a2cd4ca2cd000000000000b80fc7da0fc70000000000002baec03aaec0000000000000 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f681ba5182ba000000000000f990b41091b4000000000000e5dfae58e0ae0000000000000074a91574a90000000000006c51a41251a4000000000000ce7c9f1a7d9f000000000000 +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b0f99acff99a000000000000a3cd968bcd9600000000000066f99270f99200000000000003838fa1828f000000000000a36a8c996b8c00000000000018b6894fb589000000000000 +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8c64879b6587000000000000e47a851d7a8500000000000067f78382f88300000000000053df8226df82000000000000d62f82ee2f82000000000000dceb81d2eb81000000000000 +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 141282cd118200000000000084a382c7a382000000000000639f83529f830000000000001005853e058500000000000071d28605d3860000000000002a0889cb0789000000000000 +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 25a18b75a18b0000000000007a9e8eb19e8e0000000000005df99125f991000000000000f0b29513b39500000000000025c699c6c599000000000000aa309e54319e000000000000 + +No. Time Source Destination Protocol Length Info + 9067 5.430720 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 9067: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.340724000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.340724000 UTC + Epoch Arrival Time: 1750682866.340724000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000976000 seconds] + [Time delta from previous displayed frame: 0.001862000 seconds] + [Time since reference or first frame: 5.430720000 seconds] + Frame Number: 9067 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 9026] + [Time from request: 0.017725000 seconds] + Isochronous transfer start frame: 1525715 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 9068 5.430916 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 9068: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.340920000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.340920000 UTC + Epoch Arrival Time: 1750682866.340920000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000196000 seconds] + [Time delta from previous displayed frame: 0.000196000 seconds] + [Time since reference or first frame: 5.430916000 seconds] + Frame Number: 9068 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1525733 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 9071 5.432599 1.1.2 host USB 519 URB_ISOCHRONOUS out + +Frame 9071: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.342603000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.342603000 UTC + Epoch Arrival Time: 1750682866.342603000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000856000 seconds] + [Time delta from previous displayed frame: 0.001683000 seconds] + [Time since reference or first frame: 5.432599000 seconds] + Frame Number: 9071 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b6050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 9042] + [Time from request: 0.013675000 seconds] + Isochronous transfer start frame: 1525714 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + +No. Time Source Destination Protocol Length Info + 9072 5.432718 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 9072: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.342722000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.342722000 UTC + Epoch Arrival Time: 1750682866.342722000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000119000 seconds] + [Time delta from previous displayed frame: 0.000119000 seconds] + [Time since reference or first frame: 5.432718000 seconds] + Frame Number: 9072 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 9032] + [Time from request: 0.017709000 seconds] + Isochronous transfer start frame: 1525717 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 9073 5.432823 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 9073: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.342827000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.342827000 UTC + Epoch Arrival Time: 1750682866.342827000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000105000 seconds] + [Time delta from previous displayed frame: 0.000105000 seconds] + [Time since reference or first frame: 5.432823000 seconds] + Frame Number: 9073 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1525735 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 9074 5.432845 host 1.1.2 USB 3399 URB_ISOCHRONOUS out + +Frame 9074: 3399 bytes on wire (27192 bits), 3399 bytes captured (27192 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.342849000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.342849000 UTC + Epoch Arrival Time: 1750682866.342849000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000022000 seconds] + [Time delta from previous displayed frame: 0.000022000 seconds] + [Time since reference or first frame: 5.432845000 seconds] + Frame Number: 9074 + Frame Length: 3399 bytes (27192 bits) + Capture Length: 3399 bytes (27192 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b6050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2880 + Isochronous transfer start frame: 1525729 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 00eea220eda200000000000077faa7dbfaa70000000000000652ad9551ad00000000000082efb26cefb200000000000033cfb8deceb800000000000095eabe8feabe000000000000 +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d23dc5dc3dc500000000000061c3cbc5c2cb000000000000b974d24475d20000000000009b4dd9674dd90000000000003b47e07447e00000000000003a5ce7c65be7000000000000 +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2b86eecf85ee000000000000cdbef5b2bef50000000000009000fd8b00fd000000000000cc4404ef440400000000000001860b6c850b00000000000024bc12a0bc12000000000000 +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d2e319f2e319000000000000daf420e1f420000000000000d0e927f5e92700000000000077bd2ecabc2e000000000000b46835e7683500000000000038e73b79e63b000000000000 +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2d3242703242000000000000ef4548374548000000000000ca1a4e3e1b4e000000000000b8ae53c7ae5300000000000046fb583cfb5800000000000003fc5d39fc5d000000000000 +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5cad6270ad620000000000003f0a67b70a670000000000009b0f6bc00f6b000000000000d0ba6ef5ba6e000000000000e60672fe067200000000000051f3743ff374000000000000 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d57a77b87a770000000000000d9f79ac9e79000000000000c1597bb9597b00000000000034ad7c1aad7c00000000000023967d27967d00000000000018147e8b147e000000000000 +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e4277eea277e0000000000005bd07d59d07d000000000000c70d7dba0d7d0000000000003ce17b08e17b000000000000624b7a314b7a000000000000b04d78ec4d78000000000000 +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 22ea7504ea750000000000002e22732f22730000000000007ff86ff5f86f000000000000fe6f6cf76f6c000000000000528b68268b680000000000005a4e641c4e64000000000000 +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 81bb5fbdbb5f0000000000004dd85abcd75a000000000000e4a65546a755000000000000df2d50562d50000000000000d66f4a04704a0000000000002273440e7344000000000000 +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a93c3e623c3e00000000000076d03779d037000000000000ee35312e363100000000000013712aed702a0000000000001f8923d488230000000000005c811c79811c000000000000 +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2b6315606315000000000000d2310e89310e0000000000000cf50634f50600000000000070b1ff99b1ff000000000000506ff8616ff80000000000005733f17a33f1000000000000 +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b503ead403ea000000000000f0e6e200e7e2000000000000f0e2dba7e2db00000000000075fdd47afdd4000000000000953cceba3cce00000000000058a6c744a6c7000000000000 +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 7c3fc1573fc1000000000000d20ebb5a0ebb0000000000005e17b50718b5000000000000b760af8e60af0000000000004beea934eea900000000000097c4a429c4a4000000000000 +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b3e89f61e89f000000000000185e9bc85d9b000000000000352997b228970000000000000d4d93984d9300000000000027ce8f6ecd8f0000000000006cad8c85ad8c000000000000 +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 82ef89d7ee89000000000000229587d59487000000000000fca085ada085000000000000d514848b1584000000000000a4f2825ff282000000000000993982b13982000000000000 +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1eec8111ec81000000000000a108820f0982000000000000119182c39082000000000000a48283848283000000000000bbde84edde840000000000003da386f2a286000000000000 +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: fdce8813cf880000000000009f5f8b5e5f8b000000000000fa528e1d538e00000000000056a69136a691000000000000165795e95695000000000000e46199cf6199000000000000 +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: fdc49dc1c49d0000000000000b7ba23e7ba20000000000005480a75780a700000000000024d1ac50d1ac0000000000002469b21b69b2000000000000c042b89242b8000000000000 +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 7a59be3159be0000000000007aa7c4efa7c40000000000000629cbe128cb000000000000e4d6d12ad7d10000000000003aacd873acd800000000000044a3df6ca3df000000000000 +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 30b6e641b6e6000000000000f1dded01deed000000000000bd15f57016f50000000000004957fc0d57fc000000000000fe9b03ff9b0300000000000004dd0a46dd0a000000000000 +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3e1512911512000000000000773e19803e19000000000000905120c55120000000000000084a27b749270000000000005e202e8e202e000000000000f9cf34b6cf34000000000000 +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 56523bb4523b00000000000045a241dca2410000000000004cbb479dbb4700000000000005974dfe964d000000000000923053f13053000000000000d78358a68358000000000000 +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f68b5dcc8b5d000000000000a744626c446200000000000072a966caa96600000000000009b76a51b76a000000000000f2696e156a6e000000000000b3bf717bbf71000000000000 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 56b47433b474000000000000874577cf4577000000000000f67179ff71790000000000007a377b51377b00000000000013947cc3937c0000000000006c867d47867d000000000000 +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 450f7ef80e7e0000000000006b2c7e402c7e00000000000022de7d34de7d0000000000007e257d3b257d00000000000092027c27027c00000000000016767ace757a000000000000 +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d481781982780000000000001b2776c52776000000000000cb6873a868730000000000008b4770ba4770000000000000c8c76cccc76c0000000000002eeb68ecea68000000000000 +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b3b564e1b564000000000000b82a60b32a60000000000000294e5b4f4e5b0000000000004b24567a2456000000000000eeb050aab05000000000000048f94ac4f94a000000000000 +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3a0245fd014500000000000003d03e40d03e0000000000007c69384769380000000000005fd2315cd231000000000000a4102bbd102b0000000000002b2b24772b24000000000000 +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e0261dea261d000000000000ca0916d9091600000000000007da0e0eda0e000000000000969d07fb9d07000000000000e65a00385b000000000000004918f95118f9000000000000 +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: addaf1fbdaf10000000000003aaaeafba9ea000000000000c58ae3c78ae30000000000005884dcd084dc000000000000c19bd5af9bd50000000000007ed7ce8bd7ce000000000000 +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 343dc8553cc800000000000063d1c1f5d1c1000000000000d09abbd49abb000000000000949eb5f09eb50000000000001fe1af3ae1af0000000000006a68aa9068aa000000000000 +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8537a54a37a50000000000000255a09854a000000000000021c29b53c29b000000000000cf859787859700000000000003a19335a193000000000000521990051990000000000000 +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b7ef8cffef8c000000000000fa288a36288a000000000000ecc48768c58700000000000013c885eec7850000000000001832843532840000000000003a0683260683000000000000 +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 684382914382000000000000cbeb8149ec810000000000006dff8173ff810000000000009e7d82087e820000000000001167835167830000000000000eba8460b984000000000000 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f77486427586000000000000c19788449788000000000000a01f8b12208b0000000000003f0b8ebf0a8e0000000000007e5691ad5691000000000000cc00959f0095000000000000 +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 270599470599000000000000fa5f9daf5f9d0000000000005d0ea2730ea20000000000008f0ca76f0ca70000000000005656ac4556ac00000000000092e7b19ce7b1000000000000 +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ccbab715bbb7000000000000a3ccbd6cccbd0000000000005a15c48c15c40000000000001092cac791ca000000000000e03bd1fa3bd1000000000000830dd8720dd8000000000000 +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: aa01df8101df0000000000000611e65f11e6000000000000fe37edab37ed000000000000ad6df4f36df400000000000096aefb51aefb000000000000bff20244f202000000000000 +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 34340af6330a000000000000946d110b6d11000000000000e79618459718000000000000b5ac1fb2ac1f0000000000008ea626aaa626000000000000bb802d3a802d000000000000 + +No. Time Source Destination Protocol Length Info + 9077 5.434745 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 9077: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.344749000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.344749000 UTC + Epoch Arrival Time: 1750682866.344749000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001000000 seconds] + [Time delta from previous displayed frame: 0.001900000 seconds] + [Time since reference or first frame: 5.434745000 seconds] + Frame Number: 9077 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff92072203f560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 9036] + [Time from request: 0.017906000 seconds] + Isochronous transfer start frame: 1525719 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 9078 5.434956 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 9078: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.344960000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.344960000 UTC + Epoch Arrival Time: 1750682866.344960000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000211000 seconds] + [Time delta from previous displayed frame: 0.000211000 seconds] + [Time since reference or first frame: 5.434956000 seconds] + Frame Number: 9078 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff92072203f560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1525737 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 9081 5.436725 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 9081: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.346729000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.346729000 UTC + Epoch Arrival Time: 1750682866.346729000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000967000 seconds] + [Time delta from previous displayed frame: 0.001769000 seconds] + [Time since reference or first frame: 5.436725000 seconds] + Frame Number: 9081 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff92072203f010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 9041] + [Time from request: 0.017824000 seconds] + Isochronous transfer start frame: 1525721 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 9082 5.436840 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 9082: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.346844000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.346844000 UTC + Epoch Arrival Time: 1750682866.346844000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000115000 seconds] + [Time delta from previous displayed frame: 0.000115000 seconds] + [Time since reference or first frame: 5.436840000 seconds] + Frame Number: 9082 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff92072203f010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1525739 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 9083 5.437601 1.1.2 host USB 519 URB_ISOCHRONOUS out + +Frame 9083: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.347605000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.347605000 UTC + Epoch Arrival Time: 1750682866.347605000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000761000 seconds] + [Time delta from previous displayed frame: 0.000761000 seconds] + [Time since reference or first frame: 5.437601000 seconds] + Frame Number: 9083 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff92072024f5a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 9050] + [Time from request: 0.014727000 seconds] + Isochronous transfer start frame: 1525719 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + +No. Time Source Destination Protocol Length Info + 9086 5.438722 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 9086: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.348726000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.348726000 UTC + Epoch Arrival Time: 1750682866.348726000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000963000 seconds] + [Time delta from previous displayed frame: 0.001121000 seconds] + [Time since reference or first frame: 5.438722000 seconds] + Frame Number: 9086 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720b96560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 9044] + [Time from request: 0.017784000 seconds] + Isochronous transfer start frame: 1525723 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 9087 5.438822 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 9087: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.348826000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.348826000 UTC + Epoch Arrival Time: 1750682866.348826000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000100000 seconds] + [Time delta from previous displayed frame: 0.000100000 seconds] + [Time since reference or first frame: 5.438822000 seconds] + Frame Number: 9087 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720b96560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1525741 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 9088 5.438845 host 1.1.2 USB 3399 URB_ISOCHRONOUS out + +Frame 9088: 3399 bytes on wire (27192 bits), 3399 bytes captured (27192 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.348849000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.348849000 UTC + Epoch Arrival Time: 1750682866.348849000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000023000 seconds] + [Time delta from previous displayed frame: 0.000023000 seconds] + [Time since reference or first frame: 5.438845000 seconds] + Frame Number: 9088 + Frame Length: 3399 bytes (27192 bits) + Capture Length: 3399 bytes (27192 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff92072024f5a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2880 + Isochronous transfer start frame: 1525734 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 51333459333400000000000045ba3aacb93a000000000000e00e41b70e41000000000000132c470f2c47000000000000910d4d940d4d00000000000070ad52ccac52000000000000 +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: dd06584d075800000000000061155d39155d00000000000039d56129d561000000000000be41669b4166000000000000c9576a4a576a0000000000007c126ef1126e000000000000 +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3d7171d170710000000000005b6e74876e74000000000000860977c80877000000000000f93e79003f79000000000000a10d7b850d7b000000000000dc737ce1737c000000000000 +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 26707d62707d00000000000076027e0d027e000000000000a9297e66297e000000000000a1e57d95e57d000000000000ba367d78367d0000000000007e1d7c3b1d7c000000000000 +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: aa9a7ad89a7a0000000000003bb07848b078000000000000ca5e761a5f76000000000000b8a9738ba973000000000000c19170729170000000000000611a6d361a6d000000000000 +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0946696046690000000000005a1965941865000000000000cd9560239660000000000000d7c05bffc05b000000000000e99d56dc9d56000000000000a131517c3151000000000000 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ac7f4bc07f4b0000000000008e8e456f8e450000000000001d623f10623f000000000000b5ff3877ff38000000000000336d32d56c3200000000000056af2bb4af2b000000000000 +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: dfcc2443cd240000000000001ecb1d68cb1d000000000000a1b01650b016000000000000dc810f0a820f000000000000a546087246080000000000000f0401970401000000000000 +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: cfc0f90dc1f90000000000001683f21583f2000000000000c450eb9450eb000000000000dd2fe4b12fe40000000000008f26ddba26dd000000000000e73ad6193bd6000000000000 +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4e73cf1a73cf00000000000036d4c88dd4c80000000000006764c23964c20000000000007a28bc8228bc000000000000c626b68926b60000000000001e63b06763b0000000000000 +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1fe4aaaee3aa000000000000f9aba505aca5000000000000e9c1a01cc2a0000000000000b3279cbe279c000000000000b7e297c4e29700000000000003f69305f693000000000000 +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9b6590496590000000000000e4328dd5338d000000000000d2628a4e628a000000000000a7f58710f68700000000000008ef857eee850000000000008f4f84a34f84000000000000 +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3f1983de1883000000000000654d82254d820000000000008feb81e9eb8100000000000076f58103f5810000000000001a6a82196a820000000000006b49833a4983000000000000 +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5c92849c92840000000000004e44865744860000000000006b5d88965d88000000000000a0dc8a71dc8a00000000000053be8d14be8d0000000000006b0191cd0191000000000000 +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 12a394daa294000000000000ad9f98ed9f98000000000000f7f39c12f49c000000000000679ca1a19ca1000000000000ac94a68f94a6000000000000a6d9ab79d9ab000000000000 +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e364b19e64b1000000000000c033b77833b7000000000000dd3fbd5440bd000000000000fa84c30885c300000000000051fdc96bfdc9000000000000a7a3d07aa3d0000000000000 +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9171d77071d7000000000000b762de7262de000000000000b96fe5986fe50000000000002993ec1d93ec000000000000cfc7f30cc8f30000000000003106fb3606fb000000000000 +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 154902344902000000000000d189091e89090000000000007ec210f8c2100000000000000aed172bec17000000000000a0021fba021f000000000000e7fe2563fe25000000000000 +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e0d92c4fda2c000000000000b98f33298f33000000000000c0183afd183a0000000000007e71402c71400000000000005092469e924600000000000057784c15784c000000000000 +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 131d52451d52000000000000b37b57fb7b57000000000000a9905cbc905c00000000000010576157576100000000000090ca6587ca650000000000007ae76979e769000000000000 +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3bab6d40ab6d000000000000da1071fa1071000000000000511774001774000000000000b1ba7692ba76000000000000ddf87869f978000000000000b9d17a91d17a000000000000 +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: fb407c0d417c00000000000092477d82477d00000000000055e37d5ae37d00000000000038147ea8147e0000000000005dda7d6fda7d0000000000001d367d11367d000000000000 +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: fd257c2c267c00000000000005ae7a2eae7a000000000000f5cc7801cd78000000000000b88576ea8576000000000000e7d97313da73000000000000b4cb70eccb70000000000000 +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 935e6df05e6d000000000000029669a995690000000000008f71652a72650000000000007af8602cf860000000000000272c5c462c5c0000000000002a1257081257000000000000 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6fad5163ad51000000000000dd034c38034c000000000000ab1846f7184600000000000093f23fc6f23f000000000000b895399495390000000000004d08331f0833000000000000 +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9c4e2cd24e2c00000000000023702522702500000000000089701ea2701e000000000000525817185817000000000000d62a10e92a1000000000000074f00840f008000000000000 +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 32ad012aad010000000000008b69fa7069fa000000000000b229f34c2af3000000000000cbf5eb96f5eb00000000000096d2e464d2e40000000000000ac6dd5cc6dd000000000000 +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0fd7d6e4d6d60000000000006d0ad0e70ad0000000000000f566c9ee66c900000000000043f1c231f1c200000000000073b0bc8fb0bc000000000000daa7b66da7b6000000000000 +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f9ddb0b7ddb00000000000000d57abde56ab0000000000005218a65f18a60000000000009025a19f25a1000000000000a5839c7b839c000000000000ed3598e43598000000000000 +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f340940c41940000000000004fa79046a790000000000000be6b8ddb6b8d000000000000f7918a2a928a000000000000cb1b88731c88000000000000cb0b86850b86000000000000 +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0663847263840000000000008a23832d2383000000000000714d82ed4d8200000000000066e281efe18100000000000061e2811ee381000000000000af4d82d74d82000000000000 +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5023836023830000000000006d63849d63840000000000004a0c86220c860000000000007d1c88591c8800000000000067928a74928a000000000000966c8dd46b8d000000000000 +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: fda690f0a690000000000000aa4094e74094000000000000a1359845359800000000000050829cb2829c000000000000c223a1e823a10000000000002a16a60a16a6000000000000 +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5b54ab5754ab0000000000001adab041dab0000000000000cca3b609a4b60000000000006eabbc02abbc000000000000aaebc2e0ebc20000000000004c60c91e60c9000000000000 +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4403d0ff02d00000000000008dced635ced60000000000000cbddd57bddd0000000000008ac8e434c8e4000000000000fceaeb4aebeb000000000000791ef3421ef3000000000000 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d15cfae35cfa000000000000a29f01d89f01000000000000c9e10868e108000000000000a41b10ee1b10000000000000f64717364817000000000000c2601e07611e000000000000 +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 545f25b05f25000000000000b13e2c983e2c000000000000f7f7322cf832000000000000dc8539d0853900000000000072e33f48e33f0000000000007e0946cf0946000000000000 +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 82f54b83f54b000000000000c59f5189a0510000000000003f0657b80557000000000000fc205c43215c00000000000004ef6000ef60000000000000da6965fb6965000000000000 +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 678e69528e69000000000000385a6d5a5a6d000000000000adc87065c870000000000000cbd67317d773000000000000b983761c8376000000000000f6ca78e5ca78000000000000 +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: eeab7a15ac7a00000000000040257cdf247c000000000000c6347dfb347d00000000000078d97d4ed97d000000000000ee147eb7147e000000000000cae37de2e37d000000000000 + +No. Time Source Destination Protocol Length Info + 9091 5.440721 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 9091: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:47:46.350725000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:47:46.350725000 UTC + Epoch Arrival Time: 1750682866.350725000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000974000 seconds] + [Time delta from previous displayed frame: 0.001876000 seconds] + [Time since reference or first frame: 5.440721000 seconds] + Frame Number: 9091 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720b96010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 9049] + [Time from request: 0.017879000 seconds] + Isochronous transfer start frame: 1525725 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 diff --git a/reverse_eng_dataset/24bit_48k_LINE_SILENCE__PLAYBACK440_SINE_FULL.txt b/reverse_eng_dataset/24bit_48k_LINE_SILENCE__PLAYBACK440_SINE_FULL.txt new file mode 100644 index 0000000..6331990 --- /dev/null +++ b/reverse_eng_dataset/24bit_48k_LINE_SILENCE__PLAYBACK440_SINE_FULL.txt @@ -0,0 +1,1612 @@ +No. Time Source Destination Protocol Length Info + 5808 3.503366 host 1.1.2 USB 3399 URB_ISOCHRONOUS out + +Frame 5808: 3399 bytes on wire (27192 bits), 3399 bytes captured (27192 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 15:16:14.022894000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 13:16:14.022894000 UTC + Epoch Arrival Time: 1750684574.022894000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000005000 seconds] + [Time delta from previous displayed frame: 0.000005000 seconds] + [Time since reference or first frame: 3.503366000 seconds] + Frame Number: 5808 + Frame Length: 3399 bytes (27192 bits) + Capture Length: 3399 bytes (27192 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff92072024f5a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2880 + [Response in: 5827] + Isochronous transfer start frame: 3233409 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: fef59b8ef69b0000000000008bb6978ab59700000000000050cd934ccd930000000000005540903540900000000000001e128d54128d00000000000041488ab0468a000000000000 +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9cdc87f1dd870000000000008ddb851cdc850000000000009a42842341840000000000000b0e83361083000000000000f14782804882000000000000d8ec81f8eb81000000000000 +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: fbf9812dfa81000000000000807382d17382000000000000a057838b578300000000000025a68497a584000000000000535b86e15b86000000000000527988c97988000000000000 +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b6fc8a30fd8a00000000000009e38d57e38d000000000000dd2b91022b91000000000000b1d094ead094000000000000f5d098fcd098000000000000b6289d37299d000000000000 +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 58d5a1f5d4a1000000000000b6d0a618d1a6000000000000c818ac0618ac000000000000aaa8b1ada7b10000000000002f79b78c78b7000000000000f086bd5a87bd000000000000 +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 15d0c3a5cec3000000000000ea48ca1849ca0000000000003df0d063f0d00000000000008fbfd743c0d700000000000080b1de66b1de000000000000b8bfe58dbfe5000000000000 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4de5ec97e3ec0000000000000f19f49418f4000000000000a057fb2058fb000000000000f59a023c9b020000000000008adc091cdc09000000000000d11311861411000000000000 +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2d3e18fc3e180000000000000e561f3e541f000000000000274f263a4f26000000000000492a2d94292d000000000000eedd334fdd3300000000000001653ad9653a000000000000 +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 48bb40f1bb400000000000008bdb4663db4600000000000065bf4cb3be4c000000000000776052e660520000000000003cbe5747bd57000000000000ebce5cd3ce5c000000000000 +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 549161fb9161000000000000c40266800166000000000000e31b6a991b6a0000000000003bdb6db2da6d000000000000853d717b3d71000000000000ca4074d73e74000000000000 +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 38de76cade760000000000003b18790719790000000000007aed7a82ec7a000000000000de577c9c577c00000000000065597d59597d000000000000ddf17da4f07d000000000000 +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b71d7e081d7e0000000000008ade7daede7d000000000000e0347d87347d00000000000008217c49217c000000000000dca27ab3a37a000000000000b7be7848be78000000000000 +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1e73768272760000000000000bc273dec173000000000000b9af7066af70000000000000f93e6d493e6d000000000000656f69f76f690000000000007648658c4865000000000000 +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: fbca60e8ca60000000000000acfa5b47fb5b00000000000000dd56b7dc56000000000000cc7551b6745100000000000096c74b6dc74b000000000000f2d945e6d945000000000000 +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c4b03f5db03f000000000000fa50391d5139000000000000e6c032cbc0320000000000002d062ca8052c00000000000099242584242500000000000037231eba231e000000000000 +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ff0817210917000000000000ccda0f1ddb0f000000000000969e08d89e08000000000000f35b018d5b010000000000009917fa1017fa0000000000006ad8f2c4d7f2000000000000 +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: cba3eba4a3eb0000000000006481e44380e40000000000000875ddf174dd000000000000b786d62386d6000000000000f8bbcf9dbbcf0000000000001e19c9cf18c9000000000000 +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1ea6c2daa5c20000000000009166bc9265bc0000000000006160b64260b6000000000000d998b02598b00000000000004513aba314ab00000000000086d8a5a9d7a5000000000000 +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c6e8a054e9a0000000000000ca499ce4499c000000000000090098b00098000000000000fb0e946f0e94000000000000f87890037a90000000000000ab418d8f418d000000000000 +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6d6c8acd6c8a000000000000b5fb8761fb8700000000000084ef85afee85000000000000a94c84884b84000000000000541083da0f83000000000000a43f821d3f82000000000000 +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6ed881f8d881000000000000a6dd81b9dd81000000000000834d82984d820000000000004e29836e2883000000000000626d84196d840000000000003f1a86851a86000000000000 +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1f3088fa2f8800000000000041aa8a5caa8a00000000000042878d1b898d00000000000055c890dec7900000000000003c65943c6694000000000000265f98415f98000000000000 +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 63b19cb7b09c000000000000f255a1c055a1000000000000e24ba6714ba6000000000000068eab368dab0000000000008c16b13e17b100000000000003e3b68ce3b6000000000000 +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: bfedbcb9edbc000000000000dc31c35931c300000000000024a8c943a8c9000000000000c44dd07e4dd00000000000009e1ad7821ad7000000000000240ade9c0ade000000000000 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3d17e58a17e5000000000000983aecf73aec0000000000005570f37b6ff30000000000009eaefa80aefa000000000000b1f201e1f101000000000000a83309903309000000000000 +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3f6d10fe6d10000000000000569917b39817000000000000b4b01e16b11e0000000000004eaf255fae25000000000000ba8c2c1c8c2c000000000000f34333bd4333000000000000 +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 06d139efcf39000000000000c629407b2b400000000000009e4f461d4f46000000000000ee374c0b384c000000000000c7df5122e0510000000000009e4257264257000000000000 +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 425a5cd95a5c000000000000af25615b2461000000000000629a65869b6500000000000060bc697abc69000000000000cf836de9836d000000000000b3ec70baed70000000000000 +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0ff9734af873000000000000cb9f76ec9f76000000000000bfe378dbe278000000000000ccbe7aa8bf7a00000000000092337c19337c000000000000633e7d6f3e7d000000000000 +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: addc7de5de7d00000000000085157e83147e00000000000027df7d46df7d000000000000f73e7db73f7d00000000000021377cf0357c000000000000d6c17ac7c17a000000000000 +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: cfe57856e678000000000000a3a2764ba37600000000000008fd73befc73000000000000f5f27060f270000000000000bf896d888a6d000000000000a0c66917c569000000000000 +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 46a465a3a565000000000000f22f61433061000000000000ee685c92675c000000000000b450576d515700000000000007ef51faef51000000000000f0494c7d494c000000000000 +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d06246426146000000000000193d40273e40000000000000d4e339bbe3390000000000005d5933b957330000000000009f9e2ce7a02c000000000000bdc32576c325000000000000 +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 88c71e4cc51e00000000000057ac1726ae170000000000000682104b81100000000000009c47097a4709000000000000a80402ad0402000000000000cabffac5c0fa000000000000 +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f180f31381f30000000000008b4cec294cec0000000000000c26e59d27e5000000000000861cdef419de000000000000d129d7c029d7000000000000a159d03a5bd0000000000000 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 05b7c91db6c90000000000009d3dc3223ec300000000000094fabc37fabc0000000000006fefb6a7efb60000000000004722b19421b10000000000008a98ab3f98ab000000000000 +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d353a60655a60000000000009d61a1dc5fa10000000000009fb79ce7b89c0000000000003b6798316898000000000000737094066e94000000000000fcce9032d090000000000000 +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8c918dcd908d000000000000edb08a38b28a000000000000103888713788000000000000e62186a422860000000000001f7384ab7484000000000000353383eb2f83000000000000 +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a052827f558200000000000050e7819ee58100000000000086e08132e081000000000000b04482924682000000000000c81883fd1683000000000000a64f84025284000000000000 +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: aaf785bef5850000000000004100882e0188000000000000bd738ad5728a000000000000b6488dcb478d0000000000000e7b90357e90000000000000d41594e71394000000000000 + +0000 07 02 a0 f5 24 20 07 92 ff ff 00 00 00 00 0a 00 ....$ .......... +0010 00 01 00 01 00 02 00 40 0b 00 00 81 56 31 00 28 .......@....V1.( +0020 00 00 00 00 00 00 00 00 00 00 00 48 00 00 00 00 ...........H.... +0030 00 00 00 48 00 00 00 48 00 00 00 00 00 00 00 90 ...H...H........ +0040 00 00 00 48 00 00 00 00 00 00 00 d8 00 00 00 48 ...H...........H +0050 00 00 00 00 00 00 00 20 01 00 00 48 00 00 00 00 ....... ...H.... +0060 00 00 00 68 01 00 00 48 00 00 00 00 00 00 00 b0 ...h...H........ +0070 01 00 00 48 00 00 00 00 00 00 00 f8 01 00 00 48 ...H...........H +0080 00 00 00 00 00 00 00 40 02 00 00 48 00 00 00 00 .......@...H.... +0090 00 00 00 88 02 00 00 48 00 00 00 00 00 00 00 d0 .......H........ +00a0 02 00 00 48 00 00 00 00 00 00 00 18 03 00 00 48 ...H...........H +00b0 00 00 00 00 00 00 00 60 03 00 00 48 00 00 00 00 .......`...H.... +00c0 00 00 00 a8 03 00 00 48 00 00 00 00 00 00 00 f0 .......H........ +00d0 03 00 00 48 00 00 00 00 00 00 00 38 04 00 00 48 ...H.......8...H +00e0 00 00 00 00 00 00 00 80 04 00 00 48 00 00 00 00 ...........H.... +00f0 00 00 00 c8 04 00 00 48 00 00 00 00 00 00 00 10 .......H........ +0100 05 00 00 48 00 00 00 00 00 00 00 58 05 00 00 48 ...H.......X...H +0110 00 00 00 00 00 00 00 a0 05 00 00 48 00 00 00 00 ...........H.... +0120 00 00 00 e8 05 00 00 48 00 00 00 00 00 00 00 30 .......H.......0 +0130 06 00 00 48 00 00 00 00 00 00 00 78 06 00 00 48 ...H.......x...H +0140 00 00 00 00 00 00 00 c0 06 00 00 48 00 00 00 00 ...........H.... +0150 00 00 00 08 07 00 00 48 00 00 00 00 00 00 00 50 .......H.......P +0160 07 00 00 48 00 00 00 00 00 00 00 98 07 00 00 48 ...H...........H +0170 00 00 00 00 00 00 00 e0 07 00 00 48 00 00 00 00 ...........H.... +0180 00 00 00 28 08 00 00 48 00 00 00 00 00 00 00 70 ...(...H.......p +0190 08 00 00 48 00 00 00 00 00 00 00 b8 08 00 00 48 ...H...........H +01a0 00 00 00 00 00 00 00 00 09 00 00 48 00 00 00 00 ...........H.... +01b0 00 00 00 48 09 00 00 48 00 00 00 00 00 00 00 90 ...H...H........ +01c0 09 00 00 48 00 00 00 00 00 00 00 d8 09 00 00 48 ...H...........H +01d0 00 00 00 00 00 00 00 20 0a 00 00 48 00 00 00 00 ....... ...H.... +01e0 00 00 00 68 0a 00 00 48 00 00 00 00 00 00 00 b0 ...h...H........ +01f0 0a 00 00 48 00 00 00 00 00 00 00 f8 0a 00 00 48 ...H...........H +0200 00 00 00 00 00 00 00 fe f5 9b 8e f6 9b 00 00 00 ................ +0210 00 00 00 8b b6 97 8a b5 97 00 00 00 00 00 00 50 ...............P +0220 cd 93 4c cd 93 00 00 00 00 00 00 55 40 90 35 40 ..L........U@.5@ +0230 90 00 00 00 00 00 00 1e 12 8d 54 12 8d 00 00 00 ..........T..... +0240 00 00 00 41 48 8a b0 46 8a 00 00 00 00 00 00 9c ...AH..F........ +0250 dc 87 f1 dd 87 00 00 00 00 00 00 8d db 85 1c dc ................ +0260 85 00 00 00 00 00 00 9a 42 84 23 41 84 00 00 00 ........B.#A.... +0270 00 00 00 0b 0e 83 36 10 83 00 00 00 00 00 00 f1 ......6......... +0280 47 82 80 48 82 00 00 00 00 00 00 d8 ec 81 f8 eb G..H............ +0290 81 00 00 00 00 00 00 fb f9 81 2d fa 81 00 00 00 ..........-..... +02a0 00 00 00 80 73 82 d1 73 82 00 00 00 00 00 00 a0 ....s..s........ +02b0 57 83 8b 57 83 00 00 00 00 00 00 25 a6 84 97 a5 W..W.......%.... +02c0 84 00 00 00 00 00 00 53 5b 86 e1 5b 86 00 00 00 .......S[..[.... +02d0 00 00 00 52 79 88 c9 79 88 00 00 00 00 00 00 b6 ...Ry..y........ +02e0 fc 8a 30 fd 8a 00 00 00 00 00 00 09 e3 8d 57 e3 ..0...........W. +02f0 8d 00 00 00 00 00 00 dd 2b 91 02 2b 91 00 00 00 ........+..+.... +0300 00 00 00 b1 d0 94 ea d0 94 00 00 00 00 00 00 f5 ................ +0310 d0 98 fc d0 98 00 00 00 00 00 00 b6 28 9d 37 29 ............(.7) +0320 9d 00 00 00 00 00 00 58 d5 a1 f5 d4 a1 00 00 00 .......X........ +0330 00 00 00 b6 d0 a6 18 d1 a6 00 00 00 00 00 00 c8 ................ +0340 18 ac 06 18 ac 00 00 00 00 00 00 aa a8 b1 ad a7 ................ +0350 b1 00 00 00 00 00 00 2f 79 b7 8c 78 b7 00 00 00 ......./y..x.... +0360 00 00 00 f0 86 bd 5a 87 bd 00 00 00 00 00 00 15 ......Z......... +0370 d0 c3 a5 ce c3 00 00 00 00 00 00 ea 48 ca 18 49 ............H..I +0380 ca 00 00 00 00 00 00 3d f0 d0 63 f0 d0 00 00 00 .......=..c..... +0390 00 00 00 8f bf d7 43 c0 d7 00 00 00 00 00 00 80 ......C......... +03a0 b1 de 66 b1 de 00 00 00 00 00 00 b8 bf e5 8d bf ..f............. +03b0 e5 00 00 00 00 00 00 4d e5 ec 97 e3 ec 00 00 00 .......M........ +03c0 00 00 00 0f 19 f4 94 18 f4 00 00 00 00 00 00 a0 ................ +03d0 57 fb 20 58 fb 00 00 00 00 00 00 f5 9a 02 3c 9b W. X..........<. +03e0 02 00 00 00 00 00 00 8a dc 09 1c dc 09 00 00 00 ................ +03f0 00 00 00 d1 13 11 86 14 11 00 00 00 00 00 00 2d ...............- +0400 3e 18 fc 3e 18 00 00 00 00 00 00 0e 56 1f 3e 54 >..>........V.>T +0410 1f 00 00 00 00 00 00 27 4f 26 3a 4f 26 00 00 00 .......'O&:O&... +0420 00 00 00 49 2a 2d 94 29 2d 00 00 00 00 00 00 ee ...I*-.)-....... +0430 dd 33 4f dd 33 00 00 00 00 00 00 01 65 3a d9 65 .3O.3.......e:.e +0440 3a 00 00 00 00 00 00 48 bb 40 f1 bb 40 00 00 00 :......H.@..@... +0450 00 00 00 8b db 46 63 db 46 00 00 00 00 00 00 65 .....Fc.F......e +0460 bf 4c b3 be 4c 00 00 00 00 00 00 77 60 52 e6 60 .L..L......w`R.` +0470 52 00 00 00 00 00 00 3c be 57 47 bd 57 00 00 00 R......<.WG.W... +0480 00 00 00 eb ce 5c d3 ce 5c 00 00 00 00 00 00 54 .....\..\......T +0490 91 61 fb 91 61 00 00 00 00 00 00 c4 02 66 80 01 .a..a........f.. +04a0 66 00 00 00 00 00 00 e3 1b 6a 99 1b 6a 00 00 00 f........j..j... +04b0 00 00 00 3b db 6d b2 da 6d 00 00 00 00 00 00 85 ...;.m..m....... +04c0 3d 71 7b 3d 71 00 00 00 00 00 00 ca 40 74 d7 3e =q{=q.......@t.> +04d0 74 00 00 00 00 00 00 38 de 76 ca de 76 00 00 00 t......8.v..v... +04e0 00 00 00 3b 18 79 07 19 79 00 00 00 00 00 00 7a ...;.y..y......z +04f0 ed 7a 82 ec 7a 00 00 00 00 00 00 de 57 7c 9c 57 .z..z.......W|.W +0500 7c 00 00 00 00 00 00 65 59 7d 59 59 7d 00 00 00 |......eY}YY}... +0510 00 00 00 dd f1 7d a4 f0 7d 00 00 00 00 00 00 b7 .....}..}....... +0520 1d 7e 08 1d 7e 00 00 00 00 00 00 8a de 7d ae de .~..~........}.. +0530 7d 00 00 00 00 00 00 e0 34 7d 87 34 7d 00 00 00 }.......4}.4}... +0540 00 00 00 08 21 7c 49 21 7c 00 00 00 00 00 00 dc ....!|I!|....... +0550 a2 7a b3 a3 7a 00 00 00 00 00 00 b7 be 78 48 be .z..z........xH. +0560 78 00 00 00 00 00 00 1e 73 76 82 72 76 00 00 00 x.......sv.rv... +0570 00 00 00 0b c2 73 de c1 73 00 00 00 00 00 00 b9 .....s..s....... +0580 af 70 66 af 70 00 00 00 00 00 00 f9 3e 6d 49 3e .pf.p.......>mI> +0590 6d 00 00 00 00 00 00 65 6f 69 f7 6f 69 00 00 00 m......eoi.oi... +05a0 00 00 00 76 48 65 8c 48 65 00 00 00 00 00 00 fb ...vHe.He....... +05b0 ca 60 e8 ca 60 00 00 00 00 00 00 ac fa 5b 47 fb .`..`........[G. +05c0 5b 00 00 00 00 00 00 00 dd 56 b7 dc 56 00 00 00 [........V..V... +05d0 00 00 00 cc 75 51 b6 74 51 00 00 00 00 00 00 96 ....uQ.tQ....... +05e0 c7 4b 6d c7 4b 00 00 00 00 00 00 f2 d9 45 e6 d9 .Km.K........E.. +05f0 45 00 00 00 00 00 00 c4 b0 3f 5d b0 3f 00 00 00 E........?].?... +0600 00 00 00 fa 50 39 1d 51 39 00 00 00 00 00 00 e6 ....P9.Q9....... +0610 c0 32 cb c0 32 00 00 00 00 00 00 2d 06 2c a8 05 .2..2......-.,.. +0620 2c 00 00 00 00 00 00 99 24 25 84 24 25 00 00 00 ,.......$%.$%... +0630 00 00 00 37 23 1e ba 23 1e 00 00 00 00 00 00 ff ...7#..#........ +0640 08 17 21 09 17 00 00 00 00 00 00 cc da 0f 1d db ..!............. +0650 0f 00 00 00 00 00 00 96 9e 08 d8 9e 08 00 00 00 ................ +0660 00 00 00 f3 5b 01 8d 5b 01 00 00 00 00 00 00 99 ....[..[........ +0670 17 fa 10 17 fa 00 00 00 00 00 00 6a d8 f2 c4 d7 ...........j.... +0680 f2 00 00 00 00 00 00 cb a3 eb a4 a3 eb 00 00 00 ................ +0690 00 00 00 64 81 e4 43 80 e4 00 00 00 00 00 00 08 ...d..C......... +06a0 75 dd f1 74 dd 00 00 00 00 00 00 b7 86 d6 23 86 u..t..........#. +06b0 d6 00 00 00 00 00 00 f8 bb cf 9d bb cf 00 00 00 ................ +06c0 00 00 00 1e 19 c9 cf 18 c9 00 00 00 00 00 00 1e ................ +06d0 a6 c2 da a5 c2 00 00 00 00 00 00 91 66 bc 92 65 ............f..e +06e0 bc 00 00 00 00 00 00 61 60 b6 42 60 b6 00 00 00 .......a`.B`.... +06f0 00 00 00 d9 98 b0 25 98 b0 00 00 00 00 00 00 45 ......%........E +0700 13 ab a3 14 ab 00 00 00 00 00 00 86 d8 a5 a9 d7 ................ +0710 a5 00 00 00 00 00 00 c6 e8 a0 54 e9 a0 00 00 00 ..........T..... +0720 00 00 00 ca 49 9c e4 49 9c 00 00 00 00 00 00 09 ....I..I........ +0730 00 98 b0 00 98 00 00 00 00 00 00 fb 0e 94 6f 0e ..............o. +0740 94 00 00 00 00 00 00 f8 78 90 03 7a 90 00 00 00 ........x..z.... +0750 00 00 00 ab 41 8d 8f 41 8d 00 00 00 00 00 00 6d ....A..A.......m +0760 6c 8a cd 6c 8a 00 00 00 00 00 00 b5 fb 87 61 fb l..l..........a. +0770 87 00 00 00 00 00 00 84 ef 85 af ee 85 00 00 00 ................ +0780 00 00 00 a9 4c 84 88 4b 84 00 00 00 00 00 00 54 ....L..K.......T +0790 10 83 da 0f 83 00 00 00 00 00 00 a4 3f 82 1d 3f ............?..? +07a0 82 00 00 00 00 00 00 6e d8 81 f8 d8 81 00 00 00 .......n........ +07b0 00 00 00 a6 dd 81 b9 dd 81 00 00 00 00 00 00 83 ................ +07c0 4d 82 98 4d 82 00 00 00 00 00 00 4e 29 83 6e 28 M..M.......N).n( +07d0 83 00 00 00 00 00 00 62 6d 84 19 6d 84 00 00 00 .......bm..m.... +07e0 00 00 00 3f 1a 86 85 1a 86 00 00 00 00 00 00 1f ...?............ +07f0 30 88 fa 2f 88 00 00 00 00 00 00 41 aa 8a 5c aa 0../.......A..\. +0800 8a 00 00 00 00 00 00 42 87 8d 1b 89 8d 00 00 00 .......B........ +0810 00 00 00 55 c8 90 de c7 90 00 00 00 00 00 00 3c ...U...........< +0820 65 94 3c 66 94 00 00 00 00 00 00 26 5f 98 41 5f e...... +0870 00 00 00 03 e3 b6 8c e3 b6 00 00 00 00 00 00 bf ................ +0880 ed bc b9 ed bc 00 00 00 00 00 00 dc 31 c3 59 31 ............1.Y1 +0890 c3 00 00 00 00 00 00 24 a8 c9 43 a8 c9 00 00 00 .......$..C..... +08a0 00 00 00 c4 4d d0 7e 4d d0 00 00 00 00 00 00 9e ....M.~M........ +08b0 1a d7 82 1a d7 00 00 00 00 00 00 24 0a de 9c 0a ...........$.... +08c0 de 00 00 00 00 00 00 3d 17 e5 8a 17 e5 00 00 00 .......=........ +08d0 00 00 00 98 3a ec f7 3a ec 00 00 00 00 00 00 55 ....:..:.......U +08e0 70 f3 7b 6f f3 00 00 00 00 00 00 9e ae fa 80 ae p.{o............ +08f0 fa 00 00 00 00 00 00 b1 f2 01 e1 f1 01 00 00 00 ................ +0900 00 00 00 a8 33 09 90 33 09 00 00 00 00 00 00 3f ....3..3.......? +0910 6d 10 fe 6d 10 00 00 00 00 00 00 56 99 17 b3 98 m..m.......V.... +0920 17 00 00 00 00 00 00 b4 b0 1e 16 b1 1e 00 00 00 ................ +0930 00 00 00 4e af 25 5f ae 25 00 00 00 00 00 00 ba ...N.%_.%....... +0940 8c 2c 1c 8c 2c 00 00 00 00 00 00 f3 43 33 bd 43 .,..,.......C3.C +0950 33 00 00 00 00 00 00 06 d1 39 ef cf 39 00 00 00 3........9..9... +0960 00 00 00 c6 29 40 7b 2b 40 00 00 00 00 00 00 9e ....)@{+@....... +0970 4f 46 1d 4f 46 00 00 00 00 00 00 ee 37 4c 0b 38 OF.OF.......7L.8 +0980 4c 00 00 00 00 00 00 c7 df 51 22 e0 51 00 00 00 L........Q".Q... +0990 00 00 00 9e 42 57 26 42 57 00 00 00 00 00 00 42 ....BW&BW......B +09a0 5a 5c d9 5a 5c 00 00 00 00 00 00 af 25 61 5b 24 Z\.Z\.......%a[$ +09b0 61 00 00 00 00 00 00 62 9a 65 86 9b 65 00 00 00 a......b.e..e... +09c0 00 00 00 60 bc 69 7a bc 69 00 00 00 00 00 00 cf ...`.iz.i....... +09d0 83 6d e9 83 6d 00 00 00 00 00 00 b3 ec 70 ba ed .m..m........p.. +09e0 70 00 00 00 00 00 00 0f f9 73 4a f8 73 00 00 00 p........sJ.s... +09f0 00 00 00 cb 9f 76 ec 9f 76 00 00 00 00 00 00 bf .....v..v....... +0a00 e3 78 db e2 78 00 00 00 00 00 00 cc be 7a a8 bf .x..x........z.. +0a10 7a 00 00 00 00 00 00 92 33 7c 19 33 7c 00 00 00 z.......3|.3|... +0a20 00 00 00 63 3e 7d 6f 3e 7d 00 00 00 00 00 00 ad ...c>}o>}....... +0a30 dc 7d e5 de 7d 00 00 00 00 00 00 85 15 7e 83 14 .}..}........~.. +0a40 7e 00 00 00 00 00 00 27 df 7d 46 df 7d 00 00 00 ~......'.}F.}... +0a50 00 00 00 f7 3e 7d b7 3f 7d 00 00 00 00 00 00 21 ....>}.?}......! +0a60 37 7c f0 35 7c 00 00 00 00 00 00 d6 c1 7a c7 c1 7|.5|........z.. +0a70 7a 00 00 00 00 00 00 cf e5 78 56 e6 78 00 00 00 z........xV.x... +0a80 00 00 00 a3 a2 76 4b a3 76 00 00 00 00 00 00 08 .....vK.v....... +0a90 fd 73 be fc 73 00 00 00 00 00 00 f5 f2 70 60 f2 .s..s........p`. +0aa0 70 00 00 00 00 00 00 bf 89 6d 88 8a 6d 00 00 00 p........m..m... +0ab0 00 00 00 a0 c6 69 17 c5 69 00 00 00 00 00 00 46 .....i..i......F +0ac0 a4 65 a3 a5 65 00 00 00 00 00 00 f2 2f 61 43 30 .e..e......./aC0 +0ad0 61 00 00 00 00 00 00 ee 68 5c 92 67 5c 00 00 00 a.......h\.g\... +0ae0 00 00 00 b4 50 57 6d 51 57 00 00 00 00 00 00 07 ....PWmQW....... +0af0 ef 51 fa ef 51 00 00 00 00 00 00 f0 49 4c 7d 49 .Q..Q.......IL}I +0b00 4c 00 00 00 00 00 00 d0 62 46 42 61 46 00 00 00 L.......bFBaF... +0b10 00 00 00 19 3d 40 27 3e 40 00 00 00 00 00 00 d4 ....=@'>@....... +0b20 e3 39 bb e3 39 00 00 00 00 00 00 5d 59 33 b9 57 .9..9......]Y3.W +0b30 33 00 00 00 00 00 00 9f 9e 2c e7 a0 2c 00 00 00 3........,..,... +0b40 00 00 00 bd c3 25 76 c3 25 00 00 00 00 00 00 88 .....%v.%....... +0b50 c7 1e 4c c5 1e 00 00 00 00 00 00 57 ac 17 26 ae ..L........W..&. +0b60 17 00 00 00 00 00 00 06 82 10 4b 81 10 00 00 00 ..........K..... +0b70 00 00 00 9c 47 09 7a 47 09 00 00 00 00 00 00 a8 ....G.zG........ +0b80 04 02 ad 04 02 00 00 00 00 00 00 ca bf fa c5 c0 ................ +0b90 fa 00 00 00 00 00 00 f1 80 f3 13 81 f3 00 00 00 ................ +0ba0 00 00 00 8b 4c ec 29 4c ec 00 00 00 00 00 00 0c ....L.)L........ +0bb0 26 e5 9d 27 e5 00 00 00 00 00 00 86 1c de f4 19 &..'............ +0bc0 de 00 00 00 00 00 00 d1 29 d7 c0 29 d7 00 00 00 ........)..).... +0bd0 00 00 00 a1 59 d0 3a 5b d0 00 00 00 00 00 00 05 ....Y.:[........ +0be0 b7 c9 1d b6 c9 00 00 00 00 00 00 9d 3d c3 22 3e ............=."> +0bf0 c3 00 00 00 00 00 00 94 fa bc 37 fa bc 00 00 00 ..........7..... +0c00 00 00 00 6f ef b6 a7 ef b6 00 00 00 00 00 00 47 ...o...........G +0c10 22 b1 94 21 b1 00 00 00 00 00 00 8a 98 ab 3f 98 "..!..........?. +0c20 ab 00 00 00 00 00 00 d3 53 a6 06 55 a6 00 00 00 ........S..U.... +0c30 00 00 00 9d 61 a1 dc 5f a1 00 00 00 00 00 00 9f ....a.._........ +0c40 b7 9c e7 b8 9c 00 00 00 00 00 00 3b 67 98 31 68 ...........;g.1h +0c50 98 00 00 00 00 00 00 73 70 94 06 6e 94 00 00 00 .......sp..n.... +0c60 00 00 00 fc ce 90 32 d0 90 00 00 00 00 00 00 8c ......2......... +0c70 91 8d cd 90 8d 00 00 00 00 00 00 ed b0 8a 38 b2 ..............8. +0c80 8a 00 00 00 00 00 00 10 38 88 71 37 88 00 00 00 ........8.q7.... +0c90 00 00 00 e6 21 86 a4 22 86 00 00 00 00 00 00 1f ....!.."........ +0ca0 73 84 ab 74 84 00 00 00 00 00 00 35 33 83 eb 2f s..t.......53../ +0cb0 83 00 00 00 00 00 00 a0 52 82 7f 55 82 00 00 00 ........R..U.... +0cc0 00 00 00 50 e7 81 9e e5 81 00 00 00 00 00 00 86 ...P............ +0cd0 e0 81 32 e0 81 00 00 00 00 00 00 b0 44 82 92 46 ..2.........D..F +0ce0 82 00 00 00 00 00 00 c8 18 83 fd 16 83 00 00 00 ................ +0cf0 00 00 00 a6 4f 84 02 52 84 00 00 00 00 00 00 aa ....O..R........ +0d00 f7 85 be f5 85 00 00 00 00 00 00 41 00 88 2e 01 ...........A.... +0d10 88 00 00 00 00 00 00 bd 73 8a d5 72 8a 00 00 00 ........s..r.... +0d20 00 00 00 b6 48 8d cb 47 8d 00 00 00 00 00 00 0e ....H..G........ +0d30 7b 90 35 7e 90 00 00 00 00 00 00 d4 15 94 e7 13 {.5~............ +0d40 94 00 00 00 00 00 00 ....... + +No. Time Source Destination Protocol Length Info + 5816 3.509428 host 1.1.2 USB 3399 URB_ISOCHRONOUS out + +Frame 5816: 3399 bytes on wire (27192 bits), 3399 bytes captured (27192 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 15:16:14.028956000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 13:16:14.028956000 UTC + Epoch Arrival Time: 1750684574.028956000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000007000 seconds] + [Time delta from previous displayed frame: 0.000007000 seconds] + [Time since reference or first frame: 3.509428000 seconds] + Frame Number: 5816 + Frame Length: 3399 bytes (27192 bits) + Capture Length: 3399 bytes (27192 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b65a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2880 + [Response in: 5833] + Isochronous transfer start frame: 3233414 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4002988c0398000000000000cd4b9cf94c9c0000000000002ceca05aeaa00000000000001cd8a5bbd8a50000000000003b15abe713ab000000000000b294b08196b0000000000000 +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c15eb6545cb60000000000006460bcd560bc000000000000859ec2ae9fc20000000000002b14c92811c9000000000000d4afcf93b2cf000000000000af7cd63b7cd6000000000000 +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1f6addd068dd000000000000e371e49a73e40000000000004895ebfb94eb0000000000009cc6f265c7f20000000000002507faa605fa000000000000594701f14801000000000000 +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b58b08578a08000000000000fcc60f85c50f000000000000f7ef161cf216000000000000c00e1e840c1e000000000000ab0b252a0c25000000000000cbeb2b12ed2b000000000000 +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: aea832f3a7320000000000008538392b3839000000000000f3983fe5973f0000000000001fc04575c14500000000000084b14b1fb04b0000000000003d5c51745d51000000000000 +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 23c556bbc656000000000000c1e75b12e65b00000000000074b560d7b660000000000000683665f73565000000000000635f697b5f69000000000000fe2e6dd02e6d000000000000 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0ca170cba17000000000000025b473c1b473000000000000f66676dd65760000000000001db1782cb27800000000000048987a0b987a000000000000f4167cf9157c000000000000 +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 99287d7a2a7d0000000000004ad67db1d47d00000000000012147e72147e00000000000097e87d01e97d00000000000046547d60537d000000000000f1527c28527c000000000000 +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6ae97acde87a0000000000007e1579311679000000000000a1dd769fdc76000000000000c73d74d33e74000000000000d73c71db3d71000000000000b5de6d9bde6d000000000000 +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1b216a97206a000000000000bc09667109660000000000007f9c61d39b6100000000000022db5cabda5c000000000000a9c957efca570000000000002470521a7052000000000000 +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b5d04c3dd04c0000000000002fec466fed46000000000000f0ce4025cf40000000000000c97b3a6d793a00000000000018f0334bf233000000000000283e2da43e2d000000000000 +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d264267c6426000000000000d9691fb1691f000000000000c95218145418000000000000b029118c2911000000000000c6f0093bf009000000000000d7ab02f4ad02000000000000 +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 206afbe269fb000000000000762bf40129f400000000000028f0ec35f3ec00000000000014cde5bfcce500000000000032bfde65bdde00000000000069c8d766c9d7000000000000 +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 7af6d0a1f7d0000000000000d150ca954eca00000000000008d1c353d2c30000000000000187bdbc89bd000000000000ce7bb74879b7000000000000cea6b1d3a5b1000000000000 +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d012acc315ac00000000000003cea689cca600000000000089d1a1e3cea1000000000000601f9d14229d00000000000026c8983cc89800000000000094c894bdc694000000000000 +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e01c910d2091000000000000c4d78dbbd78d00000000000032f48aeff08a000000000000da6a880f6c88000000000000124c86314e86000000000000359984de9684000000000000 +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f74783a948830000000000006e61822764820000000000001fed8178ea810000000000007adc8116dc810000000000001c3582ba378200000000000030028355ff82000000000000 +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0931847f308400000000000037c88577ca85000000000000fccc87e2cc87000000000000f6368a07358a00000000000032ff8c61018d000000000000f52d901e2f90000000000000 +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f7be9305bb930000000000007ba197eba39700000000000033e49b30e59b000000000000a87da0507ba00000000000000c61a58062a5000000000000be94aa1396aa000000000000 +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4f14b0c112b00000000000004fd3b510d3b500000000000056d1bbb0d2bb000000000000cf0bc2bb0bc2000000000000587ac82779c8000000000000e812cfe315cf000000000000 +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c5ddd55fdcd50000000000002fc7dc75c6dc000000000000afcbe303cee3000000000000c3eeea5feeea0000000000004020f2061ff2000000000000b55af9fc5cf9000000000000 +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3d9f004f9f0000000000000053e2074ce207000000000000281d0f311d0f000000000000ea4b16684c160000000000009b691d10681d000000000000436b24f56a24000000000000 +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e34c2b574e2b000000000000cc0e32910d320000000000008fa138eda13800000000000089043f7c063f000000000000b736451c354500000000000042294b29294b000000000000 +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: fbdb50fbdc50000000000000ff4c568d4c5600000000000010745b8f725b000000000000c349605b4b600000000000006ed164acd164000000000000140669570369000000000000 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 76da6c94da6c000000000000da54707a5670000000000000e47673797273000000000000472b76002d76000000000000ae81780e827800000000000021737a83717a000000000000 +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: cdf97b2ff97b000000000000e6157dc4167d000000000000cfcb7dfeca7d000000000000ff167e8c147e00000000000091ee7d04f37d000000000000a6667d7f667d000000000000 +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 03737cc36f7c000000000000050b7bf80e7b000000000000624779334679000000000000991777dd1577000000000000cf7f74fe8074000000000000d48771c08871000000000000 +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 16336ec4316e000000000000177e6a1b7d6a000000000000e16966e96d66000000000000910b62360762000000000000d24e5dd04d5d000000000000474158e34458000000000000 +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 7ef452a9f052000000000000de554d06564d000000000000717847fb7947000000000000c96041e5604100000000000081123b15103b000000000000348b34b28c34000000000000 +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 53db2d55dd2d000000000000350a27c90527000000000000930b20dd0d20000000000000c7f81895f9180000000000003bd41189d111000000000000ae960a1d980a000000000000 +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d95703295703000000000000c213fc7e12fc00000000000000d2f4afd1f4000000000000f097ed0c9aed000000000000e571e60072e6000000000000b660df835fdf000000000000 +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4c65d80269d80000000000005296d1eb93d100000000000064e7ca6ee6ca0000000000009063c4b065c40000000000004019befa17be000000000000c101b8f401b8000000000000 +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ad27b21229b2000000000000c291acdf92ac0000000000001c44a7a242a7000000000000cd3ca2e33da200000000000038899df9889d000000000000522999d02799000000000000 +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0c1d95cc1d95000000000000bf6c91a36e910000000000001f1f8ec51d8e0000000000000b2d8bf12c8b000000000000069f88a3a088000000000000c67a86767886000000000000 +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 44b884fab784000000000000645e83fe5f830000000000000b7382917182000000000000f0ee8162ee81000000000000d0d38140d581000000000000162882cc2882000000000000 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 02e88286e582000000000000240c84b40d84000000000000629d855d9e8500000000000066998722978700000000000046f38944f689000000000000fdb88c1db98c000000000000 +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a6e08f41de8f0000000000006b6393816293000000000000f04197324397000000000000607d9b4a7c9b000000000000d20ca0c50aa000000000000093e7a4ffeaa4000000000000 +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c018aafb17aa0000000000002291af558eaf0000000000007f45b5e848b50000000000001944bbb342bb0000000000002c79c13f77c1000000000000a0dec782e0c7000000000000 +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2978ce3379ce0000000000009c3dd5353cd5000000000000d323dcc522dc000000000000c724e39328e3000000000000e04aeac946ea0000000000006976f1c376f1000000000000 +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2bb0f83db3f80000000000009df9ffb9f6ff000000000000153907f3380700000000000004730eee750e000000000000dca61514a615000000000000aec61cc6c31c000000000000 + +0000 07 02 a0 65 9b 20 07 92 ff ff 00 00 00 00 0a 00 ...e. .......... +0010 00 01 00 01 00 02 00 40 0b 00 00 86 56 31 00 28 .......@....V1.( +0020 00 00 00 00 00 00 00 00 00 00 00 48 00 00 00 00 ...........H.... +0030 00 00 00 48 00 00 00 48 00 00 00 00 00 00 00 90 ...H...H........ +0040 00 00 00 48 00 00 00 00 00 00 00 d8 00 00 00 48 ...H...........H +0050 00 00 00 00 00 00 00 20 01 00 00 48 00 00 00 00 ....... ...H.... +0060 00 00 00 68 01 00 00 48 00 00 00 00 00 00 00 b0 ...h...H........ +0070 01 00 00 48 00 00 00 00 00 00 00 f8 01 00 00 48 ...H...........H +0080 00 00 00 00 00 00 00 40 02 00 00 48 00 00 00 00 .......@...H.... +0090 00 00 00 88 02 00 00 48 00 00 00 00 00 00 00 d0 .......H........ +00a0 02 00 00 48 00 00 00 00 00 00 00 18 03 00 00 48 ...H...........H +00b0 00 00 00 00 00 00 00 60 03 00 00 48 00 00 00 00 .......`...H.... +00c0 00 00 00 a8 03 00 00 48 00 00 00 00 00 00 00 f0 .......H........ +00d0 03 00 00 48 00 00 00 00 00 00 00 38 04 00 00 48 ...H.......8...H +00e0 00 00 00 00 00 00 00 80 04 00 00 48 00 00 00 00 ...........H.... +00f0 00 00 00 c8 04 00 00 48 00 00 00 00 00 00 00 10 .......H........ +0100 05 00 00 48 00 00 00 00 00 00 00 58 05 00 00 48 ...H.......X...H +0110 00 00 00 00 00 00 00 a0 05 00 00 48 00 00 00 00 ...........H.... +0120 00 00 00 e8 05 00 00 48 00 00 00 00 00 00 00 30 .......H.......0 +0130 06 00 00 48 00 00 00 00 00 00 00 78 06 00 00 48 ...H.......x...H +0140 00 00 00 00 00 00 00 c0 06 00 00 48 00 00 00 00 ...........H.... +0150 00 00 00 08 07 00 00 48 00 00 00 00 00 00 00 50 .......H.......P +0160 07 00 00 48 00 00 00 00 00 00 00 98 07 00 00 48 ...H...........H +0170 00 00 00 00 00 00 00 e0 07 00 00 48 00 00 00 00 ...........H.... +0180 00 00 00 28 08 00 00 48 00 00 00 00 00 00 00 70 ...(...H.......p +0190 08 00 00 48 00 00 00 00 00 00 00 b8 08 00 00 48 ...H...........H +01a0 00 00 00 00 00 00 00 00 09 00 00 48 00 00 00 00 ...........H.... +01b0 00 00 00 48 09 00 00 48 00 00 00 00 00 00 00 90 ...H...H........ +01c0 09 00 00 48 00 00 00 00 00 00 00 d8 09 00 00 48 ...H...........H +01d0 00 00 00 00 00 00 00 20 0a 00 00 48 00 00 00 00 ....... ...H.... +01e0 00 00 00 68 0a 00 00 48 00 00 00 00 00 00 00 b0 ...h...H........ +01f0 0a 00 00 48 00 00 00 00 00 00 00 f8 0a 00 00 48 ...H...........H +0200 00 00 00 00 00 00 00 40 02 98 8c 03 98 00 00 00 .......@........ +0210 00 00 00 cd 4b 9c f9 4c 9c 00 00 00 00 00 00 2c ....K..L......., +0220 ec a0 5a ea a0 00 00 00 00 00 00 1c d8 a5 bb d8 ..Z............. +0230 a5 00 00 00 00 00 00 3b 15 ab e7 13 ab 00 00 00 .......;........ +0240 00 00 00 b2 94 b0 81 96 b0 00 00 00 00 00 00 c1 ................ +0250 5e b6 54 5c b6 00 00 00 00 00 00 64 60 bc d5 60 ^.T\.......d`..` +0260 bc 00 00 00 00 00 00 85 9e c2 ae 9f c2 00 00 00 ................ +0270 00 00 00 2b 14 c9 28 11 c9 00 00 00 00 00 00 d4 ...+..(......... +0280 af cf 93 b2 cf 00 00 00 00 00 00 af 7c d6 3b 7c ............|.;| +0290 d6 00 00 00 00 00 00 1f 6a dd d0 68 dd 00 00 00 ........j..h.... +02a0 00 00 00 e3 71 e4 9a 73 e4 00 00 00 00 00 00 48 ....q..s.......H +02b0 95 eb fb 94 eb 00 00 00 00 00 00 9c c6 f2 65 c7 ..............e. +02c0 f2 00 00 00 00 00 00 25 07 fa a6 05 fa 00 00 00 .......%........ +02d0 00 00 00 59 47 01 f1 48 01 00 00 00 00 00 00 b5 ...YG..H........ +02e0 8b 08 57 8a 08 00 00 00 00 00 00 fc c6 0f 85 c5 ..W............. +02f0 0f 00 00 00 00 00 00 f7 ef 16 1c f2 16 00 00 00 ................ +0300 00 00 00 c0 0e 1e 84 0c 1e 00 00 00 00 00 00 ab ................ +0310 0b 25 2a 0c 25 00 00 00 00 00 00 cb eb 2b 12 ed .%*.%........+.. +0320 2b 00 00 00 00 00 00 ae a8 32 f3 a7 32 00 00 00 +........2..2... +0330 00 00 00 85 38 39 2b 38 39 00 00 00 00 00 00 f3 ....89+89....... +0340 98 3f e5 97 3f 00 00 00 00 00 00 1f c0 45 75 c1 .?..?........Eu. +0350 45 00 00 00 00 00 00 84 b1 4b 1f b0 4b 00 00 00 E........K..K... +0360 00 00 00 3d 5c 51 74 5d 51 00 00 00 00 00 00 23 ...=\Qt]Q......# +0370 c5 56 bb c6 56 00 00 00 00 00 00 c1 e7 5b 12 e6 .V..V........[.. +0380 5b 00 00 00 00 00 00 74 b5 60 d7 b6 60 00 00 00 [......t.`..`... +0390 00 00 00 68 36 65 f7 35 65 00 00 00 00 00 00 63 ...h6e.5e......c +03a0 5f 69 7b 5f 69 00 00 00 00 00 00 fe 2e 6d d0 2e _i{_i........m.. +03b0 6d 00 00 00 00 00 00 0c a1 70 cb a1 70 00 00 00 m........p..p... +03c0 00 00 00 25 b4 73 c1 b4 73 00 00 00 00 00 00 f6 ...%.s..s....... +03d0 66 76 dd 65 76 00 00 00 00 00 00 1d b1 78 2c b2 fv.ev........x,. +03e0 78 00 00 00 00 00 00 48 98 7a 0b 98 7a 00 00 00 x......H.z..z... +03f0 00 00 00 f4 16 7c f9 15 7c 00 00 00 00 00 00 99 .....|..|....... +0400 28 7d 7a 2a 7d 00 00 00 00 00 00 4a d6 7d b1 d4 (}z*}......J.}.. +0410 7d 00 00 00 00 00 00 12 14 7e 72 14 7e 00 00 00 }........~r.~... +0420 00 00 00 97 e8 7d 01 e9 7d 00 00 00 00 00 00 46 .....}..}......F +0430 54 7d 60 53 7d 00 00 00 00 00 00 f1 52 7c 28 52 T}`S}.......R|(R +0440 7c 00 00 00 00 00 00 6a e9 7a cd e8 7a 00 00 00 |......j.z..z... +0450 00 00 00 7e 15 79 31 16 79 00 00 00 00 00 00 a1 ...~.y1.y....... +0460 dd 76 9f dc 76 00 00 00 00 00 00 c7 3d 74 d3 3e .v..v.......=t.> +0470 74 00 00 00 00 00 00 d7 3c 71 db 3d 71 00 00 00 t.......-.>-....... +0520 64 26 7c 64 26 00 00 00 00 00 00 d9 69 1f b1 69 d&|d&.......i..i +0530 1f 00 00 00 00 00 00 c9 52 18 14 54 18 00 00 00 ........R..T.... +0540 00 00 00 b0 29 11 8c 29 11 00 00 00 00 00 00 c6 ....)..)........ +0550 f0 09 3b f0 09 00 00 00 00 00 00 d7 ab 02 f4 ad ..;............. +0560 02 00 00 00 00 00 00 20 6a fb e2 69 fb 00 00 00 ....... j..i.... +0570 00 00 00 76 2b f4 01 29 f4 00 00 00 00 00 00 28 ...v+..).......( +0580 f0 ec 35 f3 ec 00 00 00 00 00 00 14 cd e5 bf cc ..5............. +0590 e5 00 00 00 00 00 00 32 bf de 65 bd de 00 00 00 .......2..e..... +05a0 00 00 00 69 c8 d7 66 c9 d7 00 00 00 00 00 00 7a ...i..f........z +05b0 f6 d0 a1 f7 d0 00 00 00 00 00 00 d1 50 ca 95 4e ............P..N +05c0 ca 00 00 00 00 00 00 08 d1 c3 53 d2 c3 00 00 00 ..........S..... +05d0 00 00 00 01 87 bd bc 89 bd 00 00 00 00 00 00 ce ................ +05e0 7b b7 48 79 b7 00 00 00 00 00 00 ce a6 b1 d3 a5 {.Hy............ +05f0 b1 00 00 00 00 00 00 d0 12 ac c3 15 ac 00 00 00 ................ +0600 00 00 00 03 ce a6 89 cc a6 00 00 00 00 00 00 89 ................ +0610 d1 a1 e3 ce a1 00 00 00 00 00 00 60 1f 9d 14 22 ...........`..." +0620 9d 00 00 00 00 00 00 26 c8 98 3c c8 98 00 00 00 .......&..<..... +0630 00 00 00 94 c8 94 bd c6 94 00 00 00 00 00 00 e0 ................ +0640 1c 91 0d 20 91 00 00 00 00 00 00 c4 d7 8d bb d7 ... ............ +0650 8d 00 00 00 00 00 00 32 f4 8a ef f0 8a 00 00 00 .......2........ +0660 00 00 00 da 6a 88 0f 6c 88 00 00 00 00 00 00 12 ....j..l........ +0670 4c 86 31 4e 86 00 00 00 00 00 00 35 99 84 de 96 L.1N.......5.... +0680 84 00 00 00 00 00 00 f7 47 83 a9 48 83 00 00 00 ........G..H.... +0690 00 00 00 6e 61 82 27 64 82 00 00 00 00 00 00 1f ...na.'d........ +06a0 ed 81 78 ea 81 00 00 00 00 00 00 7a dc 81 16 dc ..x........z.... +06b0 81 00 00 00 00 00 00 1c 35 82 ba 37 82 00 00 00 ........5..7.... +06c0 00 00 00 30 02 83 55 ff 82 00 00 00 00 00 00 09 ...0..U......... +06d0 31 84 7f 30 84 00 00 00 00 00 00 37 c8 85 77 ca 1..0.......7..w. +06e0 85 00 00 00 00 00 00 fc cc 87 e2 cc 87 00 00 00 ................ +06f0 00 00 00 f6 36 8a 07 35 8a 00 00 00 00 00 00 32 ....6..5.......2 +0700 ff 8c 61 01 8d 00 00 00 00 00 00 f5 2d 90 1e 2f ..a.........-../ +0710 90 00 00 00 00 00 00 f7 be 93 05 bb 93 00 00 00 ................ +0720 00 00 00 7b a1 97 eb a3 97 00 00 00 00 00 00 33 ...{...........3 +0730 e4 9b 30 e5 9b 00 00 00 00 00 00 a8 7d a0 50 7b ..0.........}.P{ +0740 a0 00 00 00 00 00 00 0c 61 a5 80 62 a5 00 00 00 ........a..b.... +0750 00 00 00 be 94 aa 13 96 aa 00 00 00 00 00 00 4f ...............O +0760 14 b0 c1 12 b0 00 00 00 00 00 00 4f d3 b5 10 d3 ...........O.... +0770 b5 00 00 00 00 00 00 56 d1 bb b0 d2 bb 00 00 00 .......V........ +0780 00 00 00 cf 0b c2 bb 0b c2 00 00 00 00 00 00 58 ...............X +0790 7a c8 27 79 c8 00 00 00 00 00 00 e8 12 cf e3 15 z.'y............ +07a0 cf 00 00 00 00 00 00 c5 dd d5 5f dc d5 00 00 00 .........._..... +07b0 00 00 00 2f c7 dc 75 c6 dc 00 00 00 00 00 00 af .../..u......... +07c0 cb e3 03 ce e3 00 00 00 00 00 00 c3 ee ea 5f ee .............._. +07d0 ea 00 00 00 00 00 00 40 20 f2 06 1f f2 00 00 00 .......@ ....... +07e0 00 00 00 b5 5a f9 fc 5c f9 00 00 00 00 00 00 3d ....Z..\.......= +07f0 9f 00 4f 9f 00 00 00 00 00 00 00 53 e2 07 4c e2 ..O........S..L. +0800 07 00 00 00 00 00 00 28 1d 0f 31 1d 0f 00 00 00 .......(..1..... +0810 00 00 00 ea 4b 16 68 4c 16 00 00 00 00 00 00 9b ....K.hL........ +0820 69 1d 10 68 1d 00 00 00 00 00 00 43 6b 24 f5 6a i..h.......Ck$.j +0830 24 00 00 00 00 00 00 e3 4c 2b 57 4e 2b 00 00 00 $.......L+WN+... +0840 00 00 00 cc 0e 32 91 0d 32 00 00 00 00 00 00 8f .....2..2....... +0850 a1 38 ed a1 38 00 00 00 00 00 00 89 04 3f 7c 06 .8..8........?|. +0860 3f 00 00 00 00 00 00 b7 36 45 1c 35 45 00 00 00 ?.......6E.5E... +0870 00 00 00 42 29 4b 29 29 4b 00 00 00 00 00 00 fb ...B)K))K....... +0880 db 50 fb dc 50 00 00 00 00 00 00 ff 4c 56 8d 4c .P..P.......LV.L +0890 56 00 00 00 00 00 00 10 74 5b 8f 72 5b 00 00 00 V.......t[.r[... +08a0 00 00 00 c3 49 60 5b 4b 60 00 00 00 00 00 00 6e ....I`[K`......n +08b0 d1 64 ac d1 64 00 00 00 00 00 00 14 06 69 57 03 .d..d........iW. +08c0 69 00 00 00 00 00 00 76 da 6c 94 da 6c 00 00 00 i......v.l..l... +08d0 00 00 00 da 54 70 7a 56 70 00 00 00 00 00 00 e4 ....TpzVp....... +08e0 76 73 79 72 73 00 00 00 00 00 00 47 2b 76 00 2d vsyrs......G+v.- +08f0 76 00 00 00 00 00 00 ae 81 78 0e 82 78 00 00 00 v........x..x... +0900 00 00 00 21 73 7a 83 71 7a 00 00 00 00 00 00 cd ...!sz.qz....... +0910 f9 7b 2f f9 7b 00 00 00 00 00 00 e6 15 7d c4 16 .{/.{........}.. +0920 7d 00 00 00 00 00 00 cf cb 7d fe ca 7d 00 00 00 }........}..}... +0930 00 00 00 ff 16 7e 8c 14 7e 00 00 00 00 00 00 91 .....~..~....... +0940 ee 7d 04 f3 7d 00 00 00 00 00 00 a6 66 7d 7f 66 .}..}.......f}.f +0950 7d 00 00 00 00 00 00 03 73 7c c3 6f 7c 00 00 00 }.......s|.o|... +0960 00 00 00 05 0b 7b f8 0e 7b 00 00 00 00 00 00 62 .....{..{......b +0970 47 79 33 46 79 00 00 00 00 00 00 99 17 77 dd 15 Gy3Fy........w.. +0980 77 00 00 00 00 00 00 cf 7f 74 fe 80 74 00 00 00 w........t..t... +0990 00 00 00 d4 87 71 c0 88 71 00 00 00 00 00 00 16 .....q..q....... +09a0 33 6e c4 31 6e 00 00 00 00 00 00 17 7e 6a 1b 7d 3n.1n.......~j.} +09b0 6a 00 00 00 00 00 00 e1 69 66 e9 6d 66 00 00 00 j.......if.mf... +09c0 00 00 00 91 0b 62 36 07 62 00 00 00 00 00 00 d2 .....b6.b....... +09d0 4e 5d d0 4d 5d 00 00 00 00 00 00 47 41 58 e3 44 N].M]......GAX.D +09e0 58 00 00 00 00 00 00 7e f4 52 a9 f0 52 00 00 00 X......~.R..R... +09f0 00 00 00 de 55 4d 06 56 4d 00 00 00 00 00 00 71 ....UM.VM......q +0a00 78 47 fb 79 47 00 00 00 00 00 00 c9 60 41 e5 60 xG.yG.......`A.` +0a10 41 00 00 00 00 00 00 81 12 3b 15 10 3b 00 00 00 A........;..;... +0a20 00 00 00 34 8b 34 b2 8c 34 00 00 00 00 00 00 53 ...4.4..4......S +0a30 db 2d 55 dd 2d 00 00 00 00 00 00 35 0a 27 c9 05 .-U.-......5.'.. +0a40 27 00 00 00 00 00 00 93 0b 20 dd 0d 20 00 00 00 '........ .. ... +0a50 00 00 00 c7 f8 18 95 f9 18 00 00 00 00 00 00 3b ...............; +0a60 d4 11 89 d1 11 00 00 00 00 00 00 ae 96 0a 1d 98 ................ +0a70 0a 00 00 00 00 00 00 d9 57 03 29 57 03 00 00 00 ........W.)W.... +0a80 00 00 00 c2 13 fc 7e 12 fc 00 00 00 00 00 00 00 ......~......... +0a90 d2 f4 af d1 f4 00 00 00 00 00 00 f0 97 ed 0c 9a ................ +0aa0 ed 00 00 00 00 00 00 e5 71 e6 00 72 e6 00 00 00 ........q..r.... +0ab0 00 00 00 b6 60 df 83 5f df 00 00 00 00 00 00 4c ....`.._.......L +0ac0 65 d8 02 69 d8 00 00 00 00 00 00 52 96 d1 eb 93 e..i.......R.... +0ad0 d1 00 00 00 00 00 00 64 e7 ca 6e e6 ca 00 00 00 .......d..n..... +0ae0 00 00 00 90 63 c4 b0 65 c4 00 00 00 00 00 00 40 ....c..e.......@ +0af0 19 be fa 17 be 00 00 00 00 00 00 c1 01 b8 f4 01 ................ +0b00 b8 00 00 00 00 00 00 ad 27 b2 12 29 b2 00 00 00 ........'..).... +0b10 00 00 00 c2 91 ac df 92 ac 00 00 00 00 00 00 1c ................ +0b20 44 a7 a2 42 a7 00 00 00 00 00 00 cd 3c a2 e3 3d D..B........<..= +0b30 a2 00 00 00 00 00 00 38 89 9d f9 88 9d 00 00 00 .......8........ +0b40 00 00 00 52 29 99 d0 27 99 00 00 00 00 00 00 0c ...R)..'........ +0b50 1d 95 cc 1d 95 00 00 00 00 00 00 bf 6c 91 a3 6e ............l..n +0b60 91 00 00 00 00 00 00 1f 1f 8e c5 1d 8e 00 00 00 ................ +0b70 00 00 00 0b 2d 8b f1 2c 8b 00 00 00 00 00 00 06 ....-..,........ +0b80 9f 88 a3 a0 88 00 00 00 00 00 00 c6 7a 86 76 78 ............z.vx +0b90 86 00 00 00 00 00 00 44 b8 84 fa b7 84 00 00 00 .......D........ +0ba0 00 00 00 64 5e 83 fe 5f 83 00 00 00 00 00 00 0b ...d^.._........ +0bb0 73 82 91 71 82 00 00 00 00 00 00 f0 ee 81 62 ee s..q..........b. +0bc0 81 00 00 00 00 00 00 d0 d3 81 40 d5 81 00 00 00 ..........@..... +0bd0 00 00 00 16 28 82 cc 28 82 00 00 00 00 00 00 02 ....(..(........ +0be0 e8 82 86 e5 82 00 00 00 00 00 00 24 0c 84 b4 0d ...........$.... +0bf0 84 00 00 00 00 00 00 62 9d 85 5d 9e 85 00 00 00 .......b..]..... +0c00 00 00 00 66 99 87 22 97 87 00 00 00 00 00 00 46 ...f.."........F +0c10 f3 89 44 f6 89 00 00 00 00 00 00 fd b8 8c 1d b9 ..D............. +0c20 8c 00 00 00 00 00 00 a6 e0 8f 41 de 8f 00 00 00 ..........A..... +0c30 00 00 00 6b 63 93 81 62 93 00 00 00 00 00 00 f0 ...kc..b........ +0c40 41 97 32 43 97 00 00 00 00 00 00 60 7d 9b 4a 7c A.2C.......`}.J| +0c50 9b 00 00 00 00 00 00 d2 0c a0 c5 0a a0 00 00 00 ................ +0c60 00 00 00 93 e7 a4 ff ea a4 00 00 00 00 00 00 c0 ................ +0c70 18 aa fb 17 aa 00 00 00 00 00 00 22 91 af 55 8e ..........."..U. +0c80 af 00 00 00 00 00 00 7f 45 b5 e8 48 b5 00 00 00 ........E..H.... +0c90 00 00 00 19 44 bb b3 42 bb 00 00 00 00 00 00 2c ....D..B......., +0ca0 79 c1 3f 77 c1 00 00 00 00 00 00 a0 de c7 82 e0 y.?w............ +0cb0 c7 00 00 00 00 00 00 29 78 ce 33 79 ce 00 00 00 .......)x.3y.... +0cc0 00 00 00 9c 3d d5 35 3c d5 00 00 00 00 00 00 d3 ....=.5<........ +0cd0 23 dc c5 22 dc 00 00 00 00 00 00 c7 24 e3 93 28 #.."........$..( +0ce0 e3 00 00 00 00 00 00 e0 4a ea c9 46 ea 00 00 00 ........J..F.... +0cf0 00 00 00 69 76 f1 c3 76 f1 00 00 00 00 00 00 2b ...iv..v.......+ +0d00 b0 f8 3d b3 f8 00 00 00 00 00 00 9d f9 ff b9 f6 ..=............. +0d10 ff 00 00 00 00 00 00 15 39 07 f3 38 07 00 00 00 ........9..8.... +0d20 00 00 00 04 73 0e ee 75 0e 00 00 00 00 00 00 dc ....s..u........ +0d30 a6 15 14 a6 15 00 00 00 00 00 00 ae c6 1c c6 c3 ................ +0d40 1c 00 00 00 00 00 00 ....... + +No. Time Source Destination Protocol Length Info + 5822 3.513364 host 1.1.2 USB 3399 URB_ISOCHRONOUS out + +Frame 5822: 3399 bytes on wire (27192 bits), 3399 bytes captured (27192 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 15:16:14.032892000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 13:16:14.032892000 UTC + Epoch Arrival Time: 1750684574.032892000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000006000 seconds] + [Time delta from previous displayed frame: 0.000006000 seconds] + [Time since reference or first frame: 3.513364000 seconds] + Frame Number: 5822 + Frame Length: 3399 bytes (27192 bits) + Capture Length: 3399 bytes (27192 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b6050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2880 + [Response in: 5841] + Isochronous transfer start frame: 3233419 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e2c7239fc923000000000000eeaf2a3fb02a000000000000b07631ef7231000000000000af0838690b38000000000000ce743e25753e000000000000a5ad4494a844000000000000 +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: aca14aa8a24a000000000000515c50905c50000000000000ead455f9d2550000000000003d015b93ff5a000000000000a3dc5fc2df5f000000000000af6f64086e64000000000000 +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f1a6682da768000000000000d9846c2a876c000000000000750d70a60b70000000000000bb31734a30730000000000007ff17536f375000000000000cb5278655278000000000000 +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 654b7ad14a7a0000000000005bdb7bf7db7b000000000000ae037d8b037d00000000000032c27d5fc17d00000000000013147ea7147e000000000000a5fb7d91fb7d000000000000 +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4f7a7de5787d000000000000778a7c1e8b7c00000000000035337ba8337b0000000000002e7479fe7379000000000000934c77a14c770000000000001ec07404c174000000000000 +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ecd271a7d17100000000000045816e12826e00000000000028d56a89d56a000000000000adce66b1ce6600000000000035706208706200000000000012bd5d1abe5d000000000000 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5dbc5881bc58000000000000946f53c06e53000000000000f6d84d49da4d000000000000d4034868044800000000000016f0414ff041000000000000e0a33b94a43b000000000000 +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3e2535832535000000000000ed7a2eca792e000000000000fda5270da62700000000000061b020fcb020000000000000a9a019319f19000000000000bc7712767812000000000000 +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 943f0bd4400b0000000000000f0104c20004000000000000b8bcfcfdbbfc000000000000a279f5837af50000000000009f42ee9b41ee0000000000004f19e71518e7000000000000 +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5e02e07903e0000000000000f809d97f0ad90000000000003f33d2fc31d2000000000000e47fcbf280cb00000000000073fbc429fcc4000000000000aaaabe7ea9be000000000000 +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5a8eb82e8eb800000000000047aeb2f0afb2000000000000de13ad3513ad00000000000089bca793bca70000000000001aafa25ab1a2000000000000d2f59dcaf49d000000000000 +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e58b99ea8b99000000000000ef7895d17995000000000000b9c291d3c29100000000000074698e77688e000000000000326e8ba16f8b000000000000e1d788d2d888000000000000 +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2baa8615a88600000000000071dc84d8dd84000000000000347c83237c83000000000000a986820f8482000000000000baf581faf681000000000000cad281a2d481000000000000 +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2a1e82741d8200000000000085d18221d182000000000000a2ed83fbee83000000000000897785d07685000000000000a86687f9658700000000000045b98956bb89000000000000 +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 22768c83758c00000000000097918f75918f000000000000ab0b93ff0c9300000000000016e59603e59600000000000067189be5169b000000000000e29c9fdb9c9f000000000000 +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 9c75a47676a40000000000006f9ea9569ca9000000000000090baf750caf00000000000024c0b485c0b4000000000000b7b5ba4fb5ba00000000000063e4c0a0e3c0000000000000 +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e647c7d148c70000000000005ddecd46ddcd000000000000469cd4de9cd40000000000003880dbf180db000000000000b184e23484e2000000000000259fe90aa0e9000000000000 +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 87cef097cef0000000000000940bf86f0bf8000000000000644dffbf4cff0000000000009b8f06799006000000000000b8cd0dfdcd0d00000000000073ff149cff14000000000000 +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6a1e1c271f1c000000000000a227238a272300000000000015122ad4112a000000000000b3d730c9d7300000000000003174370e753700000000000088e23d5ee23d000000000000 +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 331b44b61b44000000000000ab1a4aa61a4a000000000000bddb4faadb4f000000000000fe5755ad5755000000000000468b5aed8b5a0000000000005e735f07735f000000000000 +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 630964a10864000000000000154968374a6800000000000067326cdc326c000000000000c9c06f87bf6f000000000000f0ec7249ed72000000000000f0b9759eb975000000000000 +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0b2478ca217800000000000065237a19247a00000000000092be7bc3be7b00000000000021f17ce8ef7c0000000000004eb87db3b77d00000000000055147eed137e000000000000 +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b8067e3b067e000000000000d98d7d338c7d000000000000a1a77cfaa87c000000000000115b7b8c5a7b00000000000069a47975a479000000000000908477a48677000000000000 +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c003755b0375000000000000631e72a41c72000000000000c6d46e11d56e000000000000312f6b0b306b000000000000353067622f67000000000000d0d66230d762000000000000 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d6295e0c2c5e000000000000d23059712f590000000000000be85303e85300000000000076584e0d594e0000000000009c89485c8848000000000000c57842877842000000000000 +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: eb2f3c66323c00000000000055b7359eb735000000000000ba102fb90f2f000000000000463f28084128000000000000454f21ed4e21000000000000ef421a5a411a000000000000 +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 001b13aa1c1300000000000040e70b23e80b00000000000089aa04c7a8040000000000006864fd7865fd0000000000005c23f67424f600000000000090edeebcebee000000000000 +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d9c2e799c1e7000000000000e1aae085ace000000000000090b2d929b1d9000000000000d2d6d2ead6d2000000000000e81fcc5722cc0000000000005a9cc53b9bc5000000000000 +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0a45bf1644bf000000000000ab23b91425b9000000000000cc41b36541b300000000000032a0ad669fad0000000000002843a8fc42a80000000000001830a3d530a3000000000000 +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a86e9e486e9e000000000000d8fd992dfe99000000000000f4e395e5e495000000000000982792682592000000000000f6c18e36c38e0000000000008cc18bf7c08b000000000000 +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 962089d42189000000000000aae68600e7860000000000008b1385b11385000000000000b7a783eda78300000000000030a782dba6820000000000003b0e82480f82000000000000 +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d6e28128e3810000000000007f22826221820000000000003ac98208cb8200000000000046df83c1de83000000000000465c85885c85000000000000cf4187364187000000000000 +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: ab8e89988d89000000000000913d8ca73d8c000000000000b8518fad508f000000000000e8c09213c292000000000000519096608f96000000000000d9b79aceb79a000000000000 +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 21349f77349f0000000000007e06a48e05a4000000000000e022a9c722a9000000000000b48aae718bae0000000000001538b41a38b40000000000001525ba4c26ba000000000000 +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a14fc0e74ec00000000000005faec6e9aec60000000000000240cdcd3ecd00000000000043fad37afad30000000000005fdbda3adbda000000000000e6dce11ddce1000000000000 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: dbf4e8b3f6e80000000000000525f0ba24f00000000000005161f7b760f700000000000069a3fe69a3fe0000000000001de9056de80500000000000010280de8270d000000000000 +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8f5c14bc5b14000000000000467e1b307f1b000000000000898a22728a22000000000000767a29187929000000000000ca4230114430000000000000b3e736a5e636000000000000 +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 015a3d7c593d000000000000f49843c49943000000000000b79f49529f490000000000006f664f6a674f0000000000008beb5434eb540000000000004b275a47275a000000000000 +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5f175f16175f00000000000072b66359b56300000000000006fe6705006800000000000049f36b24f16b0000000000009e856faa866f00000000000056bd72a0bd72000000000000 +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 7094752a93750000000000008304780c05780000000000001c127ae0107a00000000000026b47b57b57b0000000000007af17cccef7c00000000000043c07dacc17d000000000000 + +0000 07 02 50 60 9b 20 07 92 ff ff 00 00 00 00 0a 00 ..P`. .......... +0010 00 01 00 01 00 02 00 40 0b 00 00 8b 56 31 00 28 .......@....V1.( +0020 00 00 00 00 00 00 00 00 00 00 00 48 00 00 00 00 ...........H.... +0030 00 00 00 48 00 00 00 48 00 00 00 00 00 00 00 90 ...H...H........ +0040 00 00 00 48 00 00 00 00 00 00 00 d8 00 00 00 48 ...H...........H +0050 00 00 00 00 00 00 00 20 01 00 00 48 00 00 00 00 ....... ...H.... +0060 00 00 00 68 01 00 00 48 00 00 00 00 00 00 00 b0 ...h...H........ +0070 01 00 00 48 00 00 00 00 00 00 00 f8 01 00 00 48 ...H...........H +0080 00 00 00 00 00 00 00 40 02 00 00 48 00 00 00 00 .......@...H.... +0090 00 00 00 88 02 00 00 48 00 00 00 00 00 00 00 d0 .......H........ +00a0 02 00 00 48 00 00 00 00 00 00 00 18 03 00 00 48 ...H...........H +00b0 00 00 00 00 00 00 00 60 03 00 00 48 00 00 00 00 .......`...H.... +00c0 00 00 00 a8 03 00 00 48 00 00 00 00 00 00 00 f0 .......H........ +00d0 03 00 00 48 00 00 00 00 00 00 00 38 04 00 00 48 ...H.......8...H +00e0 00 00 00 00 00 00 00 80 04 00 00 48 00 00 00 00 ...........H.... +00f0 00 00 00 c8 04 00 00 48 00 00 00 00 00 00 00 10 .......H........ +0100 05 00 00 48 00 00 00 00 00 00 00 58 05 00 00 48 ...H.......X...H +0110 00 00 00 00 00 00 00 a0 05 00 00 48 00 00 00 00 ...........H.... +0120 00 00 00 e8 05 00 00 48 00 00 00 00 00 00 00 30 .......H.......0 +0130 06 00 00 48 00 00 00 00 00 00 00 78 06 00 00 48 ...H.......x...H +0140 00 00 00 00 00 00 00 c0 06 00 00 48 00 00 00 00 ...........H.... +0150 00 00 00 08 07 00 00 48 00 00 00 00 00 00 00 50 .......H.......P +0160 07 00 00 48 00 00 00 00 00 00 00 98 07 00 00 48 ...H...........H +0170 00 00 00 00 00 00 00 e0 07 00 00 48 00 00 00 00 ...........H.... +0180 00 00 00 28 08 00 00 48 00 00 00 00 00 00 00 70 ...(...H.......p +0190 08 00 00 48 00 00 00 00 00 00 00 b8 08 00 00 48 ...H...........H +01a0 00 00 00 00 00 00 00 00 09 00 00 48 00 00 00 00 ...........H.... +01b0 00 00 00 48 09 00 00 48 00 00 00 00 00 00 00 90 ...H...H........ +01c0 09 00 00 48 00 00 00 00 00 00 00 d8 09 00 00 48 ...H...........H +01d0 00 00 00 00 00 00 00 20 0a 00 00 48 00 00 00 00 ....... ...H.... +01e0 00 00 00 68 0a 00 00 48 00 00 00 00 00 00 00 b0 ...h...H........ +01f0 0a 00 00 48 00 00 00 00 00 00 00 f8 0a 00 00 48 ...H...........H +0200 00 00 00 00 00 00 00 e2 c7 23 9f c9 23 00 00 00 .........#..#... +0210 00 00 00 ee af 2a 3f b0 2a 00 00 00 00 00 00 b0 .....*?.*....... +0220 76 31 ef 72 31 00 00 00 00 00 00 af 08 38 69 0b v1.r1........8i. +0230 38 00 00 00 00 00 00 ce 74 3e 25 75 3e 00 00 00 8.......t>%u>... +0240 00 00 00 a5 ad 44 94 a8 44 00 00 00 00 00 00 ac .....D..D....... +0250 a1 4a a8 a2 4a 00 00 00 00 00 00 51 5c 50 90 5c .J..J......Q\P.\ +0260 50 00 00 00 00 00 00 ea d4 55 f9 d2 55 00 00 00 P........U..U... +0270 00 00 00 3d 01 5b 93 ff 5a 00 00 00 00 00 00 a3 ...=.[..Z....... +0280 dc 5f c2 df 5f 00 00 00 00 00 00 af 6f 64 08 6e ._.._.......od.n +0290 64 00 00 00 00 00 00 f1 a6 68 2d a7 68 00 00 00 d........h-.h... +02a0 00 00 00 d9 84 6c 2a 87 6c 00 00 00 00 00 00 75 .....l*.l......u +02b0 0d 70 a6 0b 70 00 00 00 00 00 00 bb 31 73 4a 30 .p..p.......1sJ0 +02c0 73 00 00 00 00 00 00 7f f1 75 36 f3 75 00 00 00 s........u6.u... +02d0 00 00 00 cb 52 78 65 52 78 00 00 00 00 00 00 65 ....RxeRx......e +02e0 4b 7a d1 4a 7a 00 00 00 00 00 00 5b db 7b f7 db Kz.Jz......[.{.. +02f0 7b 00 00 00 00 00 00 ae 03 7d 8b 03 7d 00 00 00 {........}..}... +0300 00 00 00 32 c2 7d 5f c1 7d 00 00 00 00 00 00 13 ...2.}_.}....... +0310 14 7e a7 14 7e 00 00 00 00 00 00 a5 fb 7d 91 fb .~..~........}.. +0320 7d 00 00 00 00 00 00 4f 7a 7d e5 78 7d 00 00 00 }......Oz}.x}... +0330 00 00 00 77 8a 7c 1e 8b 7c 00 00 00 00 00 00 35 ...w.|..|......5 +0340 33 7b a8 33 7b 00 00 00 00 00 00 2e 74 79 fe 73 3{.3{.......ty.s +0350 79 00 00 00 00 00 00 93 4c 77 a1 4c 77 00 00 00 y.......Lw.Lw... +0360 00 00 00 1e c0 74 04 c1 74 00 00 00 00 00 00 ec .....t..t....... +0370 d2 71 a7 d1 71 00 00 00 00 00 00 45 81 6e 12 82 .q..q......E.n.. +0380 6e 00 00 00 00 00 00 28 d5 6a 89 d5 6a 00 00 00 n......(.j..j... +0390 00 00 00 ad ce 66 b1 ce 66 00 00 00 00 00 00 35 .....f..f......5 +03a0 70 62 08 70 62 00 00 00 00 00 00 12 bd 5d 1a be pb.pb........].. +03b0 5d 00 00 00 00 00 00 5d bc 58 81 bc 58 00 00 00 ]......].X..X... +03c0 00 00 00 94 6f 53 c0 6e 53 00 00 00 00 00 00 f6 ....oS.nS....... +03d0 d8 4d 49 da 4d 00 00 00 00 00 00 d4 03 48 68 04 .MI.M........Hh. +03e0 48 00 00 00 00 00 00 16 f0 41 4f f0 41 00 00 00 H........AO.A... +03f0 00 00 00 e0 a3 3b 94 a4 3b 00 00 00 00 00 00 3e .....;..;......> +0400 25 35 83 25 35 00 00 00 00 00 00 ed 7a 2e ca 79 %5.%5.......z..y +0410 2e 00 00 00 00 00 00 fd a5 27 0d a6 27 00 00 00 .........'..'... +0420 00 00 00 61 b0 20 fc b0 20 00 00 00 00 00 00 a9 ...a. .. ....... +0430 a0 19 31 9f 19 00 00 00 00 00 00 bc 77 12 76 78 ..1.........w.vx +0440 12 00 00 00 00 00 00 94 3f 0b d4 40 0b 00 00 00 ........?..@.... +0450 00 00 00 0f 01 04 c2 00 04 00 00 00 00 00 00 b8 ................ +0460 bc fc fd bb fc 00 00 00 00 00 00 a2 79 f5 83 7a ............y..z +0470 f5 00 00 00 00 00 00 9f 42 ee 9b 41 ee 00 00 00 ........B..A.... +0480 00 00 00 4f 19 e7 15 18 e7 00 00 00 00 00 00 5e ...O...........^ +0490 02 e0 79 03 e0 00 00 00 00 00 00 f8 09 d9 7f 0a ..y............. +04a0 d9 00 00 00 00 00 00 3f 33 d2 fc 31 d2 00 00 00 .......?3..1.... +04b0 00 00 00 e4 7f cb f2 80 cb 00 00 00 00 00 00 73 ...............s +04c0 fb c4 29 fc c4 00 00 00 00 00 00 aa aa be 7e a9 ..)...........~. +04d0 be 00 00 00 00 00 00 5a 8e b8 2e 8e b8 00 00 00 .......Z........ +04e0 00 00 00 47 ae b2 f0 af b2 00 00 00 00 00 00 de ...G............ +04f0 13 ad 35 13 ad 00 00 00 00 00 00 89 bc a7 93 bc ..5............. +0500 a7 00 00 00 00 00 00 1a af a2 5a b1 a2 00 00 00 ..........Z..... +0510 00 00 00 d2 f5 9d ca f4 9d 00 00 00 00 00 00 e5 ................ +0520 8b 99 ea 8b 99 00 00 00 00 00 00 ef 78 95 d1 79 ............x..y +0530 95 00 00 00 00 00 00 b9 c2 91 d3 c2 91 00 00 00 ................ +0540 00 00 00 74 69 8e 77 68 8e 00 00 00 00 00 00 32 ...ti.wh.......2 +0550 6e 8b a1 6f 8b 00 00 00 00 00 00 e1 d7 88 d2 d8 n..o............ +0560 88 00 00 00 00 00 00 2b aa 86 15 a8 86 00 00 00 .......+........ +0570 00 00 00 71 dc 84 d8 dd 84 00 00 00 00 00 00 34 ...q...........4 +0580 7c 83 23 7c 83 00 00 00 00 00 00 a9 86 82 0f 84 |.#|............ +0590 82 00 00 00 00 00 00 ba f5 81 fa f6 81 00 00 00 ................ +05a0 00 00 00 ca d2 81 a2 d4 81 00 00 00 00 00 00 2a ...............* +05b0 1e 82 74 1d 82 00 00 00 00 00 00 85 d1 82 21 d1 ..t...........!. +05c0 82 00 00 00 00 00 00 a2 ed 83 fb ee 83 00 00 00 ................ +05d0 00 00 00 89 77 85 d0 76 85 00 00 00 00 00 00 a8 ....w..v........ +05e0 66 87 f9 65 87 00 00 00 00 00 00 45 b9 89 56 bb f..e.......E..V. +05f0 89 00 00 00 00 00 00 22 76 8c 83 75 8c 00 00 00 ......."v..u.... +0600 00 00 00 97 91 8f 75 91 8f 00 00 00 00 00 00 ab ......u......... +0610 0b 93 ff 0c 93 00 00 00 00 00 00 16 e5 96 03 e5 ................ +0620 96 00 00 00 00 00 00 67 18 9b e5 16 9b 00 00 00 .......g........ +0630 00 00 00 e2 9c 9f db 9c 9f 00 00 00 00 00 00 9c ................ +0640 75 a4 76 76 a4 00 00 00 00 00 00 6f 9e a9 56 9c u.vv.......o..V. +0650 a9 00 00 00 00 00 00 09 0b af 75 0c af 00 00 00 ..........u..... +0660 00 00 00 24 c0 b4 85 c0 b4 00 00 00 00 00 00 b7 ...$............ +0670 b5 ba 4f b5 ba 00 00 00 00 00 00 63 e4 c0 a0 e3 ..O........c.... +0680 c0 00 00 00 00 00 00 e6 47 c7 d1 48 c7 00 00 00 ........G..H.... +0690 00 00 00 5d de cd 46 dd cd 00 00 00 00 00 00 46 ...]..F........F +06a0 9c d4 de 9c d4 00 00 00 00 00 00 38 80 db f1 80 ...........8.... +06b0 db 00 00 00 00 00 00 b1 84 e2 34 84 e2 00 00 00 ..........4..... +06c0 00 00 00 25 9f e9 0a a0 e9 00 00 00 00 00 00 87 ...%............ +06d0 ce f0 97 ce f0 00 00 00 00 00 00 94 0b f8 6f 0b ..............o. +06e0 f8 00 00 00 00 00 00 64 4d ff bf 4c ff 00 00 00 .......dM..L.... +06f0 00 00 00 9b 8f 06 79 90 06 00 00 00 00 00 00 b8 ......y......... +0700 cd 0d fd cd 0d 00 00 00 00 00 00 73 ff 14 9c ff ...........s.... +0710 14 00 00 00 00 00 00 6a 1e 1c 27 1f 1c 00 00 00 .......j..'..... +0720 00 00 00 a2 27 23 8a 27 23 00 00 00 00 00 00 15 ....'#.'#....... +0730 12 2a d4 11 2a 00 00 00 00 00 00 b3 d7 30 c9 d7 .*..*........0.. +0740 30 00 00 00 00 00 00 31 74 37 0e 75 37 00 00 00 0......1t7.u7... +0750 00 00 00 88 e2 3d 5e e2 3d 00 00 00 00 00 00 33 .....=^.=......3 +0760 1b 44 b6 1b 44 00 00 00 00 00 00 ab 1a 4a a6 1a .D..D........J.. +0770 4a 00 00 00 00 00 00 bd db 4f aa db 4f 00 00 00 J........O..O... +0780 00 00 00 fe 57 55 ad 57 55 00 00 00 00 00 00 46 ....WU.WU......F +0790 8b 5a ed 8b 5a 00 00 00 00 00 00 5e 73 5f 07 73 .Z..Z......^s_.s +07a0 5f 00 00 00 00 00 00 63 09 64 a1 08 64 00 00 00 _......c.d..d... +07b0 00 00 00 15 49 68 37 4a 68 00 00 00 00 00 00 67 ....Ih7Jh......g +07c0 32 6c dc 32 6c 00 00 00 00 00 00 c9 c0 6f 87 bf 2l.2l........o.. +07d0 6f 00 00 00 00 00 00 f0 ec 72 49 ed 72 00 00 00 o........rI.r... +07e0 00 00 00 f0 b9 75 9e b9 75 00 00 00 00 00 00 0b .....u..u....... +07f0 24 78 ca 21 78 00 00 00 00 00 00 65 23 7a 19 24 $x.!x......e#z.$ +0800 7a 00 00 00 00 00 00 92 be 7b c3 be 7b 00 00 00 z........{..{... +0810 00 00 00 21 f1 7c e8 ef 7c 00 00 00 00 00 00 4e ...!.|..|......N +0820 b8 7d b3 b7 7d 00 00 00 00 00 00 55 14 7e ed 13 .}..}......U.~.. +0830 7e 00 00 00 00 00 00 b8 06 7e 3b 06 7e 00 00 00 ~........~;.~... +0840 00 00 00 d9 8d 7d 33 8c 7d 00 00 00 00 00 00 a1 .....}3.}....... +0850 a7 7c fa a8 7c 00 00 00 00 00 00 11 5b 7b 8c 5a .|..|.......[{.Z +0860 7b 00 00 00 00 00 00 69 a4 79 75 a4 79 00 00 00 {......i.yu.y... +0870 00 00 00 90 84 77 a4 86 77 00 00 00 00 00 00 c0 .....w..w....... +0880 03 75 5b 03 75 00 00 00 00 00 00 63 1e 72 a4 1c .u[.u......c.r.. +0890 72 00 00 00 00 00 00 c6 d4 6e 11 d5 6e 00 00 00 r........n..n... +08a0 00 00 00 31 2f 6b 0b 30 6b 00 00 00 00 00 00 35 ...1/k.0k......5 +08b0 30 67 62 2f 67 00 00 00 00 00 00 d0 d6 62 30 d7 0gb/g........b0. +08c0 62 00 00 00 00 00 00 d6 29 5e 0c 2c 5e 00 00 00 b.......)^.,^... +08d0 00 00 00 d2 30 59 71 2f 59 00 00 00 00 00 00 0b ....0Yq/Y....... +08e0 e8 53 03 e8 53 00 00 00 00 00 00 76 58 4e 0d 59 .S..S......vXN.Y +08f0 4e 00 00 00 00 00 00 9c 89 48 5c 88 48 00 00 00 N........H\.H... +0900 00 00 00 c5 78 42 87 78 42 00 00 00 00 00 00 eb ....xB.xB....... +0910 2f 3c 66 32 3c 00 00 00 00 00 00 55 b7 35 9e b7 /.......C..z. +0bc0 d3 00 00 00 00 00 00 5f db da 3a db da 00 00 00 ......._..:..... +0bd0 00 00 00 e6 dc e1 1d dc e1 00 00 00 00 00 00 db ................ +0be0 f4 e8 b3 f6 e8 00 00 00 00 00 00 05 25 f0 ba 24 ............%..$ +0bf0 f0 00 00 00 00 00 00 51 61 f7 b7 60 f7 00 00 00 .......Qa..`.... +0c00 00 00 00 69 a3 fe 69 a3 fe 00 00 00 00 00 00 1d ...i..i......... +0c10 e9 05 6d e8 05 00 00 00 00 00 00 10 28 0d e8 27 ..m.........(..' +0c20 0d 00 00 00 00 00 00 8f 5c 14 bc 5b 14 00 00 00 ........\..[.... +0c30 00 00 00 46 7e 1b 30 7f 1b 00 00 00 00 00 00 89 ...F~.0......... +0c40 8a 22 72 8a 22 00 00 00 00 00 00 76 7a 29 18 79 ."r."......vz).y +0c50 29 00 00 00 00 00 00 ca 42 30 11 44 30 00 00 00 ).......B0.D0... +0c60 00 00 00 b3 e7 36 a5 e6 36 00 00 00 00 00 00 01 .....6..6....... +0c70 5a 3d 7c 59 3d 00 00 00 00 00 00 f4 98 43 c4 99 Z=|Y=........C.. +0c80 43 00 00 00 00 00 00 b7 9f 49 52 9f 49 00 00 00 C........IR.I... +0c90 00 00 00 6f 66 4f 6a 67 4f 00 00 00 00 00 00 8b ...ofOjgO....... +0ca0 eb 54 34 eb 54 00 00 00 00 00 00 4b 27 5a 47 27 .T4.T......K'ZG' +0cb0 5a 00 00 00 00 00 00 5f 17 5f 16 17 5f 00 00 00 Z......_._.._... +0cc0 00 00 00 72 b6 63 59 b5 63 00 00 00 00 00 00 06 ...r.cY.c....... +0cd0 fe 67 05 00 68 00 00 00 00 00 00 49 f3 6b 24 f1 .g..h......I.k$. +0ce0 6b 00 00 00 00 00 00 9e 85 6f aa 86 6f 00 00 00 k........o..o... +0cf0 00 00 00 56 bd 72 a0 bd 72 00 00 00 00 00 00 70 ...V.r..r......p +0d00 94 75 2a 93 75 00 00 00 00 00 00 83 04 78 0c 05 .u*.u........x.. +0d10 78 00 00 00 00 00 00 1c 12 7a e0 10 7a 00 00 00 x........z..z... +0d20 00 00 00 26 b4 7b 57 b5 7b 00 00 00 00 00 00 7a ...&.{W.{......z +0d30 f1 7c cc ef 7c 00 00 00 00 00 00 43 c0 7d ac c1 .|..|......C.}.. +0d40 7d 00 00 00 00 00 00 }...... + +No. Time Source Destination Protocol Length Info + 5827 3.518150 1.1.2 host USB 519 URB_ISOCHRONOUS out + +Frame 5827: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 15:16:14.037678000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 13:16:14.037678000 UTC + Epoch Arrival Time: 1750684574.037678000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000765000 seconds] + [Time delta from previous displayed frame: 0.000765000 seconds] + [Time since reference or first frame: 3.518150000 seconds] + Frame Number: 5827 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff92072024f5a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 5808] + [Time from request: 0.014784000 seconds] + Isochronous transfer start frame: 3233409 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + +0000 07 02 a0 f5 24 20 07 92 ff ff 00 00 00 00 0a 00 ....$ .......... +0010 01 01 00 01 00 02 00 00 00 00 00 81 56 31 00 28 ............V1.( +0020 00 00 00 00 00 00 00 00 00 00 00 48 00 00 00 00 ...........H.... +0030 00 00 00 48 00 00 00 48 00 00 00 00 00 00 00 90 ...H...H........ +0040 00 00 00 48 00 00 00 00 00 00 00 d8 00 00 00 48 ...H...........H +0050 00 00 00 00 00 00 00 20 01 00 00 48 00 00 00 00 ....... ...H.... +0060 00 00 00 68 01 00 00 48 00 00 00 00 00 00 00 b0 ...h...H........ +0070 01 00 00 48 00 00 00 00 00 00 00 f8 01 00 00 48 ...H...........H +0080 00 00 00 00 00 00 00 40 02 00 00 48 00 00 00 00 .......@...H.... +0090 00 00 00 88 02 00 00 48 00 00 00 00 00 00 00 d0 .......H........ +00a0 02 00 00 48 00 00 00 00 00 00 00 18 03 00 00 48 ...H...........H +00b0 00 00 00 00 00 00 00 60 03 00 00 48 00 00 00 00 .......`...H.... +00c0 00 00 00 a8 03 00 00 48 00 00 00 00 00 00 00 f0 .......H........ +00d0 03 00 00 48 00 00 00 00 00 00 00 38 04 00 00 48 ...H.......8...H +00e0 00 00 00 00 00 00 00 80 04 00 00 48 00 00 00 00 ...........H.... +00f0 00 00 00 c8 04 00 00 48 00 00 00 00 00 00 00 10 .......H........ +0100 05 00 00 48 00 00 00 00 00 00 00 58 05 00 00 48 ...H.......X...H +0110 00 00 00 00 00 00 00 a0 05 00 00 48 00 00 00 00 ...........H.... +0120 00 00 00 e8 05 00 00 48 00 00 00 00 00 00 00 30 .......H.......0 +0130 06 00 00 48 00 00 00 00 00 00 00 78 06 00 00 48 ...H.......x...H +0140 00 00 00 00 00 00 00 c0 06 00 00 48 00 00 00 00 ...........H.... +0150 00 00 00 08 07 00 00 48 00 00 00 00 00 00 00 50 .......H.......P +0160 07 00 00 48 00 00 00 00 00 00 00 98 07 00 00 48 ...H...........H +0170 00 00 00 00 00 00 00 e0 07 00 00 48 00 00 00 00 ...........H.... +0180 00 00 00 28 08 00 00 48 00 00 00 00 00 00 00 70 ...(...H.......p +0190 08 00 00 48 00 00 00 00 00 00 00 b8 08 00 00 48 ...H...........H +01a0 00 00 00 00 00 00 00 00 09 00 00 48 00 00 00 00 ...........H.... +01b0 00 00 00 48 09 00 00 48 00 00 00 00 00 00 00 90 ...H...H........ +01c0 09 00 00 48 00 00 00 00 00 00 00 d8 09 00 00 48 ...H...........H +01d0 00 00 00 00 00 00 00 20 0a 00 00 48 00 00 00 00 ....... ...H.... +01e0 00 00 00 68 0a 00 00 48 00 00 00 00 00 00 00 b0 ...h...H........ +01f0 0a 00 00 48 00 00 00 00 00 00 00 f8 0a 00 00 48 ...H...........H +0200 00 00 00 00 00 00 00 ....... diff --git a/reverse_eng_dataset/24bit_48k_LINE_SILENCE__PLAYBACK_SILENCE.txt b/reverse_eng_dataset/24bit_48k_LINE_SILENCE__PLAYBACK_SILENCE.txt new file mode 100644 index 0000000..8432b23 --- /dev/null +++ b/reverse_eng_dataset/24bit_48k_LINE_SILENCE__PLAYBACK_SILENCE.txt @@ -0,0 +1,1199 @@ +No. Time Source Destination Protocol Length Info + 6220 3.610343 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 6220: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:50:12.332728000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:50:12.332728000 UTC + Epoch Arrival Time: 1750683012.332728000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000120000 seconds] + [Time delta from previous displayed frame: 0.000120000 seconds] + [Time since reference or first frame: 3.610343000 seconds] + Frame Number: 6220 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720bdb050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 6178] + [Time from request: 0.017803000 seconds] + Isochronous transfer start frame: 1671707 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 6221 3.610423 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 6221: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:50:12.332808000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:50:12.332808000 UTC + Epoch Arrival Time: 1750683012.332808000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000080000 seconds] + [Time delta from previous displayed frame: 0.000080000 seconds] + [Time since reference or first frame: 3.610423000 seconds] + Frame Number: 6221 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720bdb050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1671725 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 6222 3.610446 host 1.1.2 USB 3399 URB_ISOCHRONOUS out + +Frame 6222: 3399 bytes on wire (27192 bits), 3399 bytes captured (27192 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:50:12.332831000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:50:12.332831000 UTC + Epoch Arrival Time: 1750683012.332831000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000023000 seconds] + [Time delta from previous displayed frame: 0.000023000 seconds] + [Time since reference or first frame: 3.610446000 seconds] + Frame Number: 6222 + Frame Length: 3399 bytes (27192 bits) + Capture Length: 3399 bytes (27192 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b65a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2880 + Isochronous transfer start frame: 1671719 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3400007800000000000000000300000b0000000000000000690000ab00000000000000001800000f00000000000000001b0000490000000000000000f2ffff270000000000000000 +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6f00004a0000000000000000ffffff6400000000000000000e00006b00000000000000004000005600000000000000005d00006200000000000000002400008a0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8900005d0000000000000000680000890000000000000000d7ffff8e0000000000000000a100008300000000000000006700005600000000000000004f00005e0000000000000000 +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2b00006600000000000000003e00003400000000000000005900004300000000000000000d00006b00000000000000002e00005c0000000000000000fdffff4a0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1f00002400000000000000002300003200000000000000003200002600000000000000001600005c00000000000000005d0000ceffff0000000000004200004e0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0a0000fcffff0000000000006900003d0000000000000000390000510000000000000000d60000400000000000000000490000570000000000000000f8ffff1e0000000000000000 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2e00003f00000000000000003700003700000000000000003500004400000000000000001e00004e00000000000000002a00004700000000000000004f00005a0000000000000000 +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 7d0000200000000000000000400000690000000000000000550000910000000000000000fbffff3400000000000000004a0000b000000000000000004d0000feffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 450000f6ffff0000000000000e0000c00000000000000000d8ffff4b00000000000000003700006700000000000000002a00007e00000000000000004f00004a0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: caffff7700000000000000005b0000740000000000000000ebffff880000000000000000bd00002a0000000000000000ebffffedffff000000000000630000920000000000000000 +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2300001a0000000000000000090000f80000000000000000860000f0ffff0000000000007a0000860000000000000000bffffff8ffff000000000000520000710000000000000000 +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 480000e4ffff000000000000060000370000000000000000a30000ad0000000000000000b6ffff2e00000000000000004d00004a0000000000000000e4ffff5b0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4200005c0000000000000000630000380000000000000000ebffff1e00000000000000003b00006c0000000000000000110000040000000000000000500000440000000000000000 +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 670000700000000000000000120000800000000000000000d100003c0000000000000000caffff8100000000000000007d00001d0000000000000000220000190000000000000000 +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d4ffff090000000000000000510000680000000000000000cc00001900000000000000003b0000630000000000000000cbffff4a0000000000000000220000deffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 110000470000000000000000450000daffff0000000000006d00005b00000000000000006800009800000000000000001e00008900000000000000002f00003a0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8800006b0000000000000000e2ffff1d00000000000000004400009a0000000000000000d7ffff690000000000000000610000f7ffff0000000000003600002e0000000000000000 +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f8ffff3500000000000000001c0000010000000000000000daffff530000000000000000ccfffff3ffff0000000000003800001a0000000000000000daffff2f0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f8ffffc1ffff0000000000007d0000380000000000000000170000ccffff0000000000003a0000beffff0000000000006e0000020000000000000000edffffb2ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8f00006d0000000000000000dfffff3900000000000000007e0000980000000000000000d6ffff1a0000000000000000d4ffff9b0000000000000000710000f7ffff000000000000 +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e9ffffa00000000000000000100000bbffff0000000000006d0000ad00000000000000001800003d00000000000000006700001d00000000000000001d00002e0000000000000000 +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 790000810000000000000000e1ffff4700000000000000007d00000000000000000000000200003600000000000000004000005f00000000000000000d0000360000000000000000 +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4900007400000000000000006300006f00000000000000001e0000520000000000000000ad00005c0000000000000000d0ffff5d0000000000000000c40000340000000000000000 +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d7ffff5f00000000000000006b00001a00000000000000005a00004900000000000000005800003d0000000000000000430000fcffff000000000000410000870000000000000000 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0a0000eeffff0000000000003600005f00000000000000006800004c0000000000000000f4ffff770000000000000000780000830000000000000000faffff490000000000000000 +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3d00000d0000000000000000460000460000000000000000210000370000000000000000e7ffff850000000000000000070000450000000000000000d4ffff200000000000000000 +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1f00006700000000000000005700003d00000000000000002500002e00000000000000002800005c0000000000000000ffffff440000000000000000270000700000000000000000 +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e3ffff6a00000000000000003f0000a7ffff000000000000d4ffffc300000000000000004d00004c0000000000000000eeffff470000000000000000f9ffff550000000000000000 +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1300004e0000000000000000640000650000000000000000afffffeaffff0000000000006d0000990000000000000000c1ffff2e0000000000000000d0ffff610000000000000000 +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: edffff5800000000000000007200000c0000000000000000f3ffff9e0000000000000000720000dfffff0000000000002a0000b20000000000000000f9ffff350000000000000000 +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d3ffff830000000000000000e4ffff4400000000000000003500004400000000000000001e0000300000000000000000b1ffff7000000000000000007d0000050000000000000000 +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b7ffff000000000000000000bc00007f00000000000000002fffff0e00000000000000007f0000760000000000000000aaffff460000000000000000820000030000000000000000 +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b7ffff7000000000000000003a00002f0000000000000000310000a30000000000000000efffff340000000000000000630000410000000000000000dcffff410000000000000000 +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 510000650000000000000000faffffd800000000000000005b0000270000000000000000160000400000000000000000dfffff350000000000000000220000460000000000000000 +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 310000ffffff0000000000001a0000df0000000000000000140000140000000000000000c7ffff9d00000000000000003e00006100000000000000001c0000930000000000000000 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2000004b00000000000000002e0000740000000000000000a7ffff4200000000000000004900008a0000000000000000cdffff1b0000000000000000470000b70000000000000000 +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2d0000f8ffff0000000000000800009100000000000000002c00003000000000000000007a00004600000000000000002e0000b70000000000000000380000e6ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c0ffff6a00000000000000006f00002c00000000000000001700003f0000000000000000330000200000000000000000040000790000000000000000f1ffff2b0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3c00004100000000000000003b00002200000000000000003f0000200000000000000000690000a40000000000000000390000360000000000000000820000220000000000000000 +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b6ffff8d0000000000000000340000e8ffff000000000000dbffff590000000000000000840000580000000000000000d7ffff4a0000000000000000f9ffff0a0000000000000000 + +No. Time Source Destination Protocol Length Info + 6225 3.611797 1.1.6 host USB 131099 URB_BULK in + +Frame 6225: 131099 bytes on wire (1048792 bits), 65535 bytes captured (524280 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:50:12.334182000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:50:12.334182000 UTC + Epoch Arrival Time: 1750683012.334182000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000427000 seconds] + [Time delta from previous displayed frame: 0.001351000 seconds] + [Time since reference or first frame: 3.611797000 seconds] + Frame Number: 6225 + Frame Length: 131099 bytes (1048792 bits) + Capture Length: 65535 bytes (524280 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.6] + [Destination: host] + USBPcap pseudoheader length: 27 + IRP ID: 0xffff92071af66ab0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: URB_BULK (0x03) + Packet Data Length: 131072 + [Request in: 5546] + [Time from request: 0.297256000 seconds] + [bInterfaceClass: Vendor Specific (0xff)] +Leftover Capture Data […]: 000000000000000000000000000000000001010100010000000000000000000000000000000000000000000000000000000100000000010000000000000000000000000000000000000000000000000000000101010000010000000000000000000000000000000000 + +No. Time Source Destination Protocol Length Info + 6226 3.612345 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 6226: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:50:12.334730000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:50:12.334730000 UTC + Epoch Arrival Time: 1750683012.334730000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000548000 seconds] + [Time delta from previous displayed frame: 0.000548000 seconds] + [Time since reference or first frame: 3.612345000 seconds] + Frame Number: 6226 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920719bd6560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 6182] + [Time from request: 0.017887000 seconds] + Isochronous transfer start frame: 1671709 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 6227 3.612566 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 6227: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:50:12.334951000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:50:12.334951000 UTC + Epoch Arrival Time: 1750683012.334951000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000221000 seconds] + [Time delta from previous displayed frame: 0.000221000 seconds] + [Time since reference or first frame: 3.612566000 seconds] + Frame Number: 6227 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920719bd6560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1671727 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 6228 3.612603 host 1.1.6 USB 27 URB_BULK in + +Frame 6228: 27 bytes on wire (216 bits), 27 bytes captured (216 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:50:12.334988000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:50:12.334988000 UTC + Epoch Arrival Time: 1750683012.334988000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000037000 seconds] + [Time delta from previous displayed frame: 0.000037000 seconds] + [Time since reference or first frame: 3.612603000 seconds] + Frame Number: 6228 + Frame Length: 27 bytes (216 bits) + Capture Length: 27 bytes (216 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.6] + USBPcap pseudoheader length: 27 + IRP ID: 0xffff92071af66ab0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: URB_BULK (0x03) + Packet Data Length: 0 + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 6231 3.614346 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 6231: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:50:12.336731000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:50:12.336731000 UTC + Epoch Arrival Time: 1750683012.336731000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000978000 seconds] + [Time delta from previous displayed frame: 0.001743000 seconds] + [Time since reference or first frame: 3.614346000 seconds] + Frame Number: 6231 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720df8010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 6187] + [Time from request: 0.017893000 seconds] + Isochronous transfer start frame: 1671711 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 6232 3.614461 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 6232: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:50:12.336846000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:50:12.336846000 UTC + Epoch Arrival Time: 1750683012.336846000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000115000 seconds] + [Time delta from previous displayed frame: 0.000115000 seconds] + [Time since reference or first frame: 3.614461000 seconds] + Frame Number: 6232 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920720df8010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1671729 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 6233 3.615222 1.1.2 host USB 519 URB_ISOCHRONOUS out + +Frame 6233: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:50:12.337607000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:50:12.337607000 UTC + Epoch Arrival Time: 1750683012.337607000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000761000 seconds] + [Time delta from previous displayed frame: 0.000761000 seconds] + [Time since reference or first frame: 3.615222000 seconds] + Frame Number: 6233 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b6050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 6198] + [Time from request: 0.014772000 seconds] + Isochronous transfer start frame: 1671709 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + +No. Time Source Destination Protocol Length Info + 6236 3.616346 1.1.1 host USB 69 URB_ISOCHRONOUS in + +Frame 6236: 69 bytes on wire (552 bits), 69 bytes captured (552 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:50:12.338731000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:50:12.338731000 UTC + Epoch Arrival Time: 1750683012.338731000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000975000 seconds] + [Time delta from previous displayed frame: 0.001124000 seconds] + [Time since reference or first frame: 3.616346000 seconds] + Frame Number: 6236 + Frame Length: 69 bytes (552 bits) + Capture Length: 69 bytes (552 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.1] + [Destination: host] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 6 + [Request in: 6192] + [Time from request: 0.017807000 seconds] + Isochronous transfer start frame: 1671713 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 6237 3.616460 host 1.1.1 USB 63 URB_ISOCHRONOUS in + +Frame 6237: 63 bytes on wire (504 bits), 63 bytes captured (504 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:50:12.338845000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:50:12.338845000 UTC + Epoch Arrival Time: 1750683012.338845000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000114000 seconds] + [Time delta from previous displayed frame: 0.000114000 seconds] + [Time since reference or first frame: 3.616460000 seconds] + Frame Number: 6237 + Frame Length: 63 bytes (504 bits) + Capture Length: 63 bytes (504 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.1] + USBPcap pseudoheader length: 63 + IRP ID: 0xffff920722de5560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + Isochronous transfer start frame: 1671731 + Isochronous transfer number of packets: 2 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 6238 3.616484 host 1.1.2 USB 3399 URB_ISOCHRONOUS out + +Frame 6238: 3399 bytes on wire (27192 bits), 3399 bytes captured (27192 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 14:50:12.338869000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 12:50:12.338869000 UTC + Epoch Arrival Time: 1750683012.338869000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000024000 seconds] + [Time delta from previous displayed frame: 0.000024000 seconds] + [Time since reference or first frame: 3.616484000 seconds] + Frame Number: 6238 + Frame Length: 3399 bytes (27192 bits) + Capture Length: 3399 bytes (27192 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffff9207209b6050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 2880 + Isochronous transfer start frame: 1671724 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 610000570000000000000000e0ffff95ffff000000000000f0ffffaa0000000000000000060000c0ffff000000000000430000850000000000000000ceffff200000000000000000 +USB isochronous packet + ISO Data offset: 0x00000048 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1d00007700000000000000003b0000a2ffff0000000000001500009a0000000000000000600000c6ffff0000000000008000002a0000000000000000b1ffff260000000000000000 +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 6900005a0000000000000000270000f9ffff0000000000000a00006100000000000000001200002c0000000000000000190000240000000000000000eaffff840000000000000000 +USB isochronous packet + ISO Data offset: 0x000000d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e4ffffd8ffff0000000000001d00009d0000000000000000ddffff95ffff0000000000001300007c0000000000000000f2ffff2e0000000000000000070000a70000000000000000 +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 3d00006c00000000000000000200002e00000000000000006700008b0000000000000000abfffff7ffff000000000000220000a20000000000000000200000f0ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000168 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f8ffff5c00000000000000009c0000100000000000000000d7ffff4100000000000000004b0000d7ffff000000000000b8ffff7f0000000000000000230000190000000000000000 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 010000b500000000000000002c0000efffff000000000000960000580000000000000000280000130000000000000000d7ffff330000000000000000b600003a0000000000000000 +USB isochronous packet + ISO Data offset: 0x000001f8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: e2ffff4300000000000000007000008100000000000000003400004c0000000000000000020000350000000000000000650000ffffff000000000000520000e9ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f5ffffa20000000000000000570000440000000000000000580000fcffff000000000000fdffff9d0000000000000000730000580000000000000000dfffffd0ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000288 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4d0000960000000000000000260000b3ffff0000000000003d00009000000000000000008c0000120000000000000000a6ffff7400000000000000003200006b0000000000000000 +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f8ffff310000000000000000deffff8400000000000000002e00002900000000000000002d0000460000000000000000eaffff0b0000000000000000f8ffff470000000000000000 +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 1600001000000000000000002e0000790000000000000000b9ffff2600000000000000005d00009e0000000000000000bbffff050000000000000000f0ffff4d0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f1ffff4b00000000000000000d00000a0000000000000000d2ffff600000000000000000e1fffff1ffff000000000000cdffff0300000000000000000500008fffff000000000000 +USB isochronous packet + ISO Data offset: 0x000003a8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2d00006c0000000000000000bdffff500000000000000000b500009a0000000000000000c8ffffcfffff000000000000f8ffff400000000000000000b000000a0000000000000000 +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: dbffff2600000000000000005f00003b00000000000000003400004c0000000000000000170000490000000000000000d4ffffecffff000000000000400000580000000000000000 +USB isochronous packet + ISO Data offset: 0x00000438 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f5fffffaffff000000000000010000250000000000000000edfffffaffff0000000000003d00003d0000000000000000f0ffffffffff000000000000dfffff620000000000000000 +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 4c0000f3ffff000000000000c3ffffddffff0000000000008c00002700000000000000009dffff760000000000000000850000130000000000000000d9ffffe7ffff000000000000 +USB isochronous packet + ISO Data offset: 0x000004c8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0f00002700000000000000006700003e00000000000000006300001d00000000000000006c0000c1ffff000000000000cbffff430000000000000000f4ffff010000000000000000 +USB isochronous packet + ISO Data offset: 0x00000510 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2a00005f00000000000000001400000b00000000000000003700004600000000000000003800000f00000000000000005200000e00000000000000000d0000fdffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000558 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 8b0000370000000000000000320000220000000000000000ecffffb2ffff0000000000003100000f0000000000000000110000f5ffff0000000000002500001c0000000000000000 +USB isochronous packet + ISO Data offset: 0x000005a0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 250000fdffff000000000000210000620000000000000000750000d9ffff0000000000007dffff5300000000000000002b0000f0ffff000000000000100000150000000000000000 +USB isochronous packet + ISO Data offset: 0x000005e8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f8ffff0c0000000000000000400000220000000000000000bf00001900000000000000000c0000390000000000000000fbffff120000000000000000250000c5ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000630 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: c2ffff490000000000000000200000efffff0000000000002400006100000000000000001800004c0000000000000000100000d6ffff0000000000004d0000ad0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000678 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5d00007affff000000000000ffffffa90000000000000000280000a9ffff0000000000003b00005300000000000000000c000075ffff000000000000140000350000000000000000 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 360000e5ffff0000000000003a0000520000000000000000f3ffffd8ffff000000000000470000fdffff000000000000f2ffffd4ffff000000000000d8ffffacffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000708 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: f3ffff5b0000000000000000150000f1ffff000000000000f8ffff410000000000000000e2ffffcaffff000000000000f8ffff5c0000000000000000540000ceffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000750 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2b0000a100000000000000003d000090ffff000000000000290000030000000000000000f5ffffc0ffff0000000000001b00004f00000000000000000400000c0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000798 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0c0000d8ffff000000000000470000690000000000000000c8ffffe0ffff0000000000003600004300000000000000006f0000180000000000000000060000480000000000000000 +USB isochronous packet + ISO Data offset: 0x000007e0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 440000570000000000000000b9ffff1c00000000000000006100001f00000000000000008bffffc1ffff000000000000140000eaffff000000000000330000100000000000000000 +USB isochronous packet + ISO Data offset: 0x00000828 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0100000100000000000000003a00008c0000000000000000010000f4ffff0000000000002c00002800000000000000001a00006fffff00000000000097ffff3c0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000870 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: deffffeeffff000000000000a6fffffcffff000000000000340000d9ffff000000000000eaffff700000000000000000e3ffff0700000000000000004f0000080000000000000000 +USB isochronous packet + ISO Data offset: 0x000008b8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: b9ffff2f0000000000000000e3ffffd4ffff000000000000e1ffff130000000000000000f0ffffb8ffff000000000000e8ffff290000000000000000ccffff93ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000900 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 5500005100000000000000008bffffe8ffff000000000000290000560000000000000000eeffffbcffff000000000000d9ffff270000000000000000270000a2ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000948 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 0800005f0000000000000000b9ffffe2ffff0000000000005b00003300000000000000000c0000d7ffff000000000000010000580000000000000000a0ffffd6ffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000990 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 000000190000000000000000090000baffff0000000000000e0000d7ffff0000000000000100002e000000000000000099ffff8bffff0000000000002b0000150000000000000000 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d8ffffb7ffff000000000000330000faffff000000000000020000dcffff0000000000000200003a0000000000000000cfffffd6ffff000000000000c3ffff0c0000000000000000 +USB isochronous packet + ISO Data offset: 0x00000a20 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2500005b0000000000000000120000dcffff0000000000003f0000e2ffff000000000000f8ffffbdffff0000000000004c0000540000000000000000fdffff310000000000000000 +USB isochronous packet + ISO Data offset: 0x00000a68 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: a7ffffb1ffff000000000000fcfffff7ffff0000000000000b00000f00000000000000008fffff4f0000000000000000dcffffbcffff000000000000a8ffff540000000000000000 +USB isochronous packet + ISO Data offset: 0x00000ab0 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: 2b0000f6ffff000000000000c6ffffd9ffff0000000000000b0000630000000000000000c4ffffc0ffff000000000000d6ffff270000000000000000250000edffff000000000000 +USB isochronous packet + ISO Data offset: 0x00000af8 + ISO Data length: 0x00000048 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data: d8ffff4b0000000000000000ffffffb4ffff000000000000c7ffff0000000000000000004c0000e2ffff000000000000d8ffffeaffff000000000000230000300000000000000000 diff --git a/reverse_eng_dataset/24bit_48k_SILENCE_LINE_IN_URB_BULK_0x86_IN.txt b/reverse_eng_dataset/24bit_48k_SILENCE_LINE_IN_URB_BULK_0x86_IN.txt new file mode 100644 index 0000000..6e9fc7d --- /dev/null +++ b/reverse_eng_dataset/24bit_48k_SILENCE_LINE_IN_URB_BULK_0x86_IN.txt @@ -0,0 +1,170 @@ +No. Time Source Destination Protocol Length Info + 6019 5.481945 1.15.6 host USB 131099 URB_BULK in + +Frame 6019: 131099 bytes on wire (1048792 bits), 65535 bytes captured (524280 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:34:08.070741000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:34:08.070741000 UTC + Epoch Arrival Time: 1750617248.070741000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.002278000 seconds] + [Time delta from previous displayed frame: 0.041780000 seconds] + [Time since reference or first frame: 5.481945000 seconds] + Frame Number: 6019 + Frame Length: 131099 bytes (1048792 bits) + Capture Length: 65535 bytes (524280 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.15.6] + [Destination: host] + USBPcap pseudoheader length: 27 + IRP ID: 0xffffde073c165050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 15 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: URB_BULK (0x03) + Packet Data Length: 131072 + [Request in: 5770] + [Time from request: 0.297181000 seconds] + [bInterfaceClass: Vendor Specific (0xff)] +Leftover Capture Data […]: 010101010101010101010101010101010101010000000100000000000000000001010101010101010101010101010101010101000000010000000000000000000101010101010101010101010101010101010100000000010000000000000000010101010101010101 + +No. Time Source Destination Protocol Length Info + 6024 5.484769 host 1.15.6 USB 27 URB_BULK in + +Frame 6024: 27 bytes on wire (216 bits), 27 bytes captured (216 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:34:08.073565000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:34:08.073565000 UTC + Epoch Arrival Time: 1750617248.073565000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000055000 seconds] + [Time delta from previous displayed frame: 0.002824000 seconds] + [Time since reference or first frame: 5.484769000 seconds] + Frame Number: 6024 + Frame Length: 27 bytes (216 bits) + Capture Length: 27 bytes (216 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.15.6] + USBPcap pseudoheader length: 27 + IRP ID: 0xffffde073c165050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 15 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: URB_BULK (0x03) + Packet Data Length: 0 + [Response in: 6273] + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 6055 5.524606 1.15.6 host USB 131099 URB_BULK in + +Frame 6055: 131099 bytes on wire (1048792 bits), 65535 bytes captured (524280 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:34:08.113402000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:34:08.113402000 UTC + Epoch Arrival Time: 1750617248.113402000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000211000 seconds] + [Time delta from previous displayed frame: 0.039837000 seconds] + [Time since reference or first frame: 5.524606000 seconds] + Frame Number: 6055 + Frame Length: 131099 bytes (1048792 bits) + Capture Length: 65535 bytes (524280 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.15.6] + [Destination: host] + USBPcap pseudoheader length: 27 + IRP ID: 0xffffde073c717010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 15 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: URB_BULK (0x03) + Packet Data Length: 131072 + [Request in: 5808] + [Time from request: 0.294843000 seconds] + [bInterfaceClass: Vendor Specific (0xff)] +Leftover Capture Data […]: 000000000000000000000000000000000001000100000100000000000000000000000000000000000000000000000000000100000101010100000000000000000000000000000000000000000000000000000001000101000000000000000000000000000000000000 + +No. Time Source Destination Protocol Length Info + 6058 5.525062 host 1.15.6 USB 27 URB_BULK in + +Frame 6058: 27 bytes on wire (216 bits), 27 bytes captured (216 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:34:08.113858000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:34:08.113858000 UTC + Epoch Arrival Time: 1750617248.113858000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000057000 seconds] + [Time delta from previous displayed frame: 0.000456000 seconds] + [Time since reference or first frame: 5.525062000 seconds] + Frame Number: 6058 + Frame Length: 27 bytes (216 bits) + Capture Length: 27 bytes (216 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.15.6] + USBPcap pseudoheader length: 27 + IRP ID: 0xffffde073c563010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 15 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: URB_BULK (0x03) + Packet Data Length: 0 + [bInterfaceClass: Vendor Specific (0xff)] diff --git a/reverse_eng_dataset/24bit_48k_SILENCE_LINE_IN_URB_ISO_IN.txt b/reverse_eng_dataset/24bit_48k_SILENCE_LINE_IN_URB_ISO_IN.txt new file mode 100644 index 0000000..8f9e768 --- /dev/null +++ b/reverse_eng_dataset/24bit_48k_SILENCE_LINE_IN_URB_ISO_IN.txt @@ -0,0 +1,535 @@ +No. Time Source Destination Protocol Length Info + 4968 5.330575 1.15.1 host USB 114 URB_ISOCHRONOUS in + +Frame 4968: 114 bytes on wire (912 bits), 114 bytes captured (912 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:24:31.435675000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:24:31.435675000 UTC + Epoch Arrival Time: 1750616671.435675000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000115000 seconds] + [Time delta from previous displayed frame: 0.000115000 seconds] + [Time since reference or first frame: 5.330575000 seconds] + Frame Number: 4968 + Frame Length: 114 bytes (912 bits) + Capture Length: 114 bytes (912 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.15.1] + [Destination: host] + USBPcap pseudoheader length: 99 + IRP ID: 0xffffde0741ca8050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 15 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 15 + [Request in: 4931] + [Time from request: 0.044730000 seconds] + Isochronous transfer start frame: 7094582 + Isochronous transfer number of packets: 5 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000006 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000009 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x0000000c + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 4969 5.330846 host 1.15.1 USB 99 URB_ISOCHRONOUS in + +Frame 4969: 99 bytes on wire (792 bits), 99 bytes captured (792 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:24:31.435946000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:24:31.435946000 UTC + Epoch Arrival Time: 1750616671.435946000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000271000 seconds] + [Time delta from previous displayed frame: 0.000271000 seconds] + [Time since reference or first frame: 5.330846000 seconds] + Frame Number: 4969 + Frame Length: 99 bytes (792 bits) + Capture Length: 99 bytes (792 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.15.1] + USBPcap pseudoheader length: 99 + IRP ID: 0xffffde0741ca8050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 15 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 5006] + Isochronous transfer start frame: 7094627 + Isochronous transfer number of packets: 5 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000080 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x000000c0 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000100 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 4976 5.340586 1.15.1 host USB 114 URB_ISOCHRONOUS in + +Frame 4976: 114 bytes on wire (912 bits), 114 bytes captured (912 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:24:31.445686000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:24:31.445686000 UTC + Epoch Arrival Time: 1750616671.445686000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000100000 seconds] + [Time delta from previous displayed frame: 0.000100000 seconds] + [Time since reference or first frame: 5.340586000 seconds] + Frame Number: 4976 + Frame Length: 114 bytes (912 bits) + Capture Length: 114 bytes (912 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.15.1] + [Destination: host] + USBPcap pseudoheader length: 99 + IRP ID: 0xffffde0740924960 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 15 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 15 + [Request in: 4939] + [Time from request: 0.044753000 seconds] + Isochronous transfer start frame: 7094592 + Isochronous transfer number of packets: 5 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000006 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000009 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x0000000c + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 4977 5.340879 host 1.15.1 USB 99 URB_ISOCHRONOUS in + +Frame 4977: 99 bytes on wire (792 bits), 99 bytes captured (792 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:24:31.445979000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:24:31.445979000 UTC + Epoch Arrival Time: 1750616671.445979000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000293000 seconds] + [Time delta from previous displayed frame: 0.000293000 seconds] + [Time since reference or first frame: 5.340879000 seconds] + Frame Number: 4977 + Frame Length: 99 bytes (792 bits) + Capture Length: 99 bytes (792 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.15.1] + USBPcap pseudoheader length: 99 + IRP ID: 0xffffde0740924960 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 15 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 5014] + Isochronous transfer start frame: 7094637 + Isochronous transfer number of packets: 5 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000080 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x000000c0 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000100 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 4984 5.350581 1.15.1 host USB 114 URB_ISOCHRONOUS in + +Frame 4984: 114 bytes on wire (912 bits), 114 bytes captured (912 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:24:31.455681000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:24:31.455681000 UTC + Epoch Arrival Time: 1750616671.455681000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000108000 seconds] + [Time delta from previous displayed frame: 0.000108000 seconds] + [Time since reference or first frame: 5.350581000 seconds] + Frame Number: 4984 + Frame Length: 114 bytes (912 bits) + Capture Length: 114 bytes (912 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.15.1] + [Destination: host] + USBPcap pseudoheader length: 99 + IRP ID: 0xffffde0741057620 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 15 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 15 + [Request in: 4947] + [Time from request: 0.044760000 seconds] + Isochronous transfer start frame: 7094602 + Isochronous transfer number of packets: 5 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000006 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000009 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x0000000c + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 4985 5.350855 host 1.15.1 USB 99 URB_ISOCHRONOUS in + +Frame 4985: 99 bytes on wire (792 bits), 99 bytes captured (792 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:24:31.455955000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:24:31.455955000 UTC + Epoch Arrival Time: 1750616671.455955000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000274000 seconds] + [Time delta from previous displayed frame: 0.000274000 seconds] + [Time since reference or first frame: 5.350855000 seconds] + Frame Number: 4985 + Frame Length: 99 bytes (792 bits) + Capture Length: 99 bytes (792 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.15.1] + USBPcap pseudoheader length: 99 + IRP ID: 0xffffde0741057620 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 15 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 5022] + Isochronous transfer start frame: 7094647 + Isochronous transfer number of packets: 5 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000080 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x000000c0 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000100 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + +No. Time Source Destination Protocol Length Info + 4992 5.360581 1.15.1 host USB 114 URB_ISOCHRONOUS in + +Frame 4992: 114 bytes on wire (912 bits), 114 bytes captured (912 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:24:31.465681000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:24:31.465681000 UTC + Epoch Arrival Time: 1750616671.465681000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000077000 seconds] + [Time delta from previous displayed frame: 0.000077000 seconds] + [Time since reference or first frame: 5.360581000 seconds] + Frame Number: 4992 + Frame Length: 114 bytes (912 bits) + Capture Length: 114 bytes (912 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.15.1] + [Destination: host] + USBPcap pseudoheader length: 99 + IRP ID: 0xffffde0741435050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 15 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 15 + [Request in: 4955] + [Time from request: 0.044768000 seconds] + Isochronous transfer start frame: 7094612 + Isochronous transfer number of packets: 5 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000003 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000006 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x00000009 + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 +USB isochronous packet + ISO Data offset: 0x0000000c + ISO Data length: 0x00000003 (relevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + ISO Data: 303030 + +No. Time Source Destination Protocol Length Info + 4993 5.360855 host 1.15.1 USB 99 URB_ISOCHRONOUS in + +Frame 4993: 99 bytes on wire (792 bits), 99 bytes captured (792 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:24:31.465955000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:24:31.465955000 UTC + Epoch Arrival Time: 1750616671.465955000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000274000 seconds] + [Time delta from previous displayed frame: 0.000274000 seconds] + [Time since reference or first frame: 5.360855000 seconds] + Frame Number: 4993 + Frame Length: 99 bytes (792 bits) + Capture Length: 99 bytes (792 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.15.1] + USBPcap pseudoheader length: 99 + IRP ID: 0xffffde0741435050 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 15 + Endpoint: 0x81, Direction: IN + 1... .... = Direction: IN (1) + .... 0001 = Endpoint number: 1 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Response in: 5031] + Isochronous transfer start frame: 7094657 + Isochronous transfer number of packets: 5 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000040 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000080 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x000000c0 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) +USB isochronous packet + ISO Data offset: 0x00000100 + ISO Data length: 0x00000040 (irrelevant) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) diff --git a/reverse_eng_dataset/24bit_88.2k_440_TONE_URB_ISO_OUT.txt b/reverse_eng_dataset/24bit_88.2k_440_TONE_URB_ISO_OUT.txt new file mode 100644 index 0000000..c9e0bfc --- /dev/null +++ b/reverse_eng_dataset/24bit_88.2k_440_TONE_URB_ISO_OUT.txt @@ -0,0 +1,897 @@ +No. Time Source Destination Protocol Length Info + 3997 3.166315 host 1.15.2 USB 5823 URB_ISOCHRONOUS out + +Frame 3997: 5823 bytes on wire (46584 bits), 5823 bytes captured (46584 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:07:20.279265000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:07:20.279265000 UTC + Epoch Arrival Time: 1750615640.279265000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000005000 seconds] + [Time delta from previous displayed frame: 0.000005000 seconds] + [Time since reference or first frame: 3.166315000 seconds] + Frame Number: 3997 + Frame Length: 5823 bytes (46584 bits) + Capture Length: 5823 bytes (46584 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.15.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffffde073ef378a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 15 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 5304 + [Response in: 4009] + Isochronous transfer start frame: 6063441 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: fef6f5fef6f5fef6f5fef6f560f3f760f3f760f3f760f3f7c7f1f9c7f1f9c7f1f9c7f1f9b5f1fbb5f1fbb5f1fbb5f1fba8f2fda8f2fda8f2fda8f2fd1ff4ff1ff4ff1ff4ff1ff4ff98f50198f50198f50198f50193f60393f60393f60393f6038ff6058ff6058ff6058ff6050af5070 +USB isochronous packet + ISO Data offset: 0x00000084 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 81eb0b81eb0b81eb0b81eb0b7de20d7de20d7de20d7de20dfbd50ffbd50ffbd50ffbd50f7ec5117ec5117ec5117ec51188b01388b01388b01388b0139e96159e96159e96159e96154777174777174777174777170952190952190952190952196c261b6c261b6c261b6c261bfcf31cf +USB isochronous packet + ISO Data offset: 0x00000108 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: d07820d07820d07820d07820332f22332f22332f22332f22fddc23fddc23fddc23fddc23c28125c28125c28125c28125181d27181d27181d27181d2797ae2897ae2897ae2897ae28dc352adc352adc352adc352a82b22b82b22b82b22b82b22b2c242d2c242d2c242d2c242d7a8a2e7 +USB isochronous packet + ISO Data offset: 0x0000018c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: a43331a43331a43331a43331d37532d37532d37532d3753252ab3352ab3352ab3352ab33d1d334d1d334d1d334d1d33408ef3508ef3508ef3508ef35aefc36aefc36aefc36aefc3680fc3780fc3780fc3780fc373dee383dee383dee383dee38a9d139a9d139a9d139a9d1398aa63a8 +USB isochronous packet + ISO Data offset: 0x00000210 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: da233cda233cda233cda233ceacb3ceacb3ceacb3ceacb3cae643dae643dae643dae643d03ee3d03ee3d03ee3d03ee3dc4673ec4673ec4673ec4673ed3d13ed3d13ed3d13ed3d13e162c3f162c3f162c3f162c3f76763f76763f76763f76763fdfb03fdfb03fdfb03fdfb03f44db3f4 +USB isochronous packet + ISO Data offset: 0x00000294 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: daff3fdaff3fdaff3fdaff3f01fa3f01fa3f01fa3f01fa3f11e43f11e43f11e43f11e43f10be3f10be3f10be3f10be3f07883f07883f07883f07883f03423f03423f03423f03423f17ec3e17ec3e17ec3e17ec3e58863e58863e58863e58863edf103edf103edf103edf103eca8b3dc +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 56533c56533c56533c56533c46a03b46a03b46a03b46a03b36de3a36de3a36de3a36de3a590d3a590d3a590d3a590d3ae22d39e22d39e22d39e22d390a40380a40380a40380a40380c44370c44370c44370c4437283a36283a36283a36283a36a02235a02235a02235a02235bcfd33b +USB isochronous packet + ISO Data offset: 0x0000039c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 068d31068d31068d31068d31d24130d24130d24130d241307aea2e7aea2e7aea2e7aea2e56872d56872d56872d56872dbf182cbf182cbf182cbf182c119f2a119f2a119f2a119f2aaa1a29aa1a29aa1a29aa1a29ee8b27ee8b27ee8b27ee8b273ef3253ef3253ef3253ef3250451240 +USB isochronous packet + ISO Data offset: 0x00000420 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 95f12095f12095f12095f12039351f39351f39351f39351f03711d03711d03711d03711d66a51b66a51b66a51b66a51bd6d219d6d219d6d219d6d219c6f917c6f917c6f917c6f917af1a16af1a16af1a16af1a160936140936140936140936144d4c124d4c124d4c124d4c12f85d10f +USB isochronous packet + ISO Data offset: 0x000004b0 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 3b7c0a3b7c0a3b7c0a3b7c0a628008628008628008628008668206668206668206668206c68204c68204c68204c68204058202058202058202058202a18000a18000a18000a180001e7ffe1e7ffe1e7ffe1e7ffefb7dfcfb7dfcfb7dfcfb7dfcba7dfaba7dfaba7dfaba7dfadc7ef8d +USB isochronous packet + ISO Data offset: 0x00000534 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 4987f44987f44987f44987f4938ff2938ff2938ff2938ff23f9bf03f9bf03f9bf03f9bf0caaaeecaaaeecaaaeecaaaeeb1beecb1beecb1beecb1beec70d7ea70d7ea70d7ea70d7ea80f5e880f5e880f5e880f5e85d19e75d19e75d19e75d19e77c43e57c43e57c43e57c43e55574e35 +USB isochronous packet + ISO Data offset: 0x000005b8 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 03ecdf03ecdf03ecdf03ecdfbc33debc33debc33debc33def483dcf483dcf483dcf483dc19ddda19ddda19ddda19ddda953fd9953fd9953fd9953fd9d0abd7d0abd7d0abd7d0abd73022d63022d63022d63022d617a3d417a3d417a3d417a3d4e62ed3e62ed3e62ed3e62ed3fac5d1f +USB isochronous packet + ISO Data offset: 0x0000063c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 5a17cf5a17cf5a17cf5a17cf54d2cd54d2cd54d2cd54d2cdeb99cceb99cceb99cceb99cc706ecb706ecb706ecb706ecb2d50ca2d50ca2d50ca2d50ca6b3fc96b3fc96b3fc96b3fc96e3cc86e3cc86e3cc86e3cc87847c77847c77847c77847c7c560c6c560c6c560c6c560c69088c59 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 7604c47604c47604c47604c4f358c3f358c3f358c3f358c3b0bcc2b0bcc2b0bcc2b0bcc2d62fc2d62fc2d62fc2d62fc288b2c188b2c188b2c188b2c1e544c1e544c1e544c1e544c109e7c009e7c009e7c009e7c00b99c00b99c00b99c00b99c0005bc0005bc0005bc0005bc0f62cc0f +USB isochronous packet + ISO Data offset: 0x00000744 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 1101c01101c01101c01101c04203c04203c04203c04203c08a15c08a15c08a15c08a15c0e537c0e537c0e537c0e537c04b6ac04b6ac04b6ac04b6ac0afacc0afacc0afacc0afacc000ffc000ffc000ffc000ffc02961c12961c12961c12961c112d3c112d3c112d3c112d3c19e54c29 +USB isochronous packet + ISO Data offset: 0x000007c8 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 1a86c31a86c31a86c31a86c3bc35c4bc35c4bc35c4bc35c468f4c468f4c468f4c468f4c4eec1c5eec1c5eec1c5eec1c5199ec6199ec6199ec6199ec6b388c7b388c7b388c7b388c78081c88081c88081c88081c84388c94388c94388c94388c9b89ccab89ccab89ccab89cca9abecb9 +USB isochronous packet + ISO Data offset: 0x0000084c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 8129ce8129ce8129ce8129cee871cfe871cfe871cfe871cf87c6d087c6d087c6d087c6d00527d20527d20527d20527d20c93d30c93d30c93d30c93d33e0ad53e0ad53e0ad53e0ad53f8cd63f8cd63f8cd63f8cd6ad18d8ad18d8ad18d8ad18d824afd924afd924afd924afd93d4fdb3 +USB isochronous packet + ISO Data offset: 0x000008d0 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: b4aadeb4aadeb4aadeb4aade3a65e03a65e03a65e03a65e0b227e2b227e2b227e2b227e2abf1e3abf1e3abf1e3abf1e3b3c2e5b3c2e5b3c2e5b3c2e5559ae7559ae7559ae7559ae71978e91978e91978e91978e9885beb885beb885beb885beb2844ed2844ed2844ed2844ed7e31ef7 +USB isochronous packet + ISO Data offset: 0x00000954 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 5b18f35b18f35b18f35b18f3e710f5e710f5e710f5e710f5330cf7330cf7330cf7330cf7bf09f9bf09f9bf09f9bf09f90c09fb0c09fb0c09fb0c09fb9809fd9809fd9809fd9809fde30affe30affe30affe30aff6b0c016b0c016b0c016b0c01af0d03af0d03af0d03af0d032f0e052 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: dd0a09dd0a09dd0a09dd0a090b060b0b060b0b060b0b060b73fe0c73fe0c73fe0c73fe0c97f30e97f30e97f30e97f30ef8e410f8e410f8e410f8e41019d21219d21219d21219d2127eba147eba147eba147eba14ad9d16ad9d16ad9d16ad9d162c7b182c7b182c7b182c7b1883521a8 +USB isochronous packet + ISO Data offset: 0x00000a5c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: dfec1ddfec1ddfec1ddfec1dfdae1ffdae1ffdae1ffdae1f236921236921236921236921e21a23e21a23e21a23e21a23ccc324ccc324ccc324ccc3247863267863267863267863267cf9277cf9277cf9277cf927728529728529728529728529f7062bf7062bf7062bf7062baa7d2ca +USB isochronous packet + ISO Data offset: 0x00000ae0 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 23492f23492f23492f23492f359d30359d30359d30359d300de5310de5310de5310de531592033592033592033592033c94e34c94e34c94e34c94e34117035117035117035117035e98336e98336e98336e983360b8a370b8a370b8a370b8a37358238358238358238358238296c392 +USB isochronous packet + ISO Data offset: 0x00000b64 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 86143b86143b86143b86143b85d23b85d23b85d23b85d23b78813c78813c78813c78813c34213d34213d34213d34213d90b13d90b13d90b13d90b13d68323e68323e68323e68323e9ca33e9ca33e9ca33e9ca33e0e053f0e053f0e053f0e053fa8563fa8563fa8563fa8563f53983f5 +USB isochronous packet + ISO Data offset: 0x00000be8 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: a2eb3fa2eb3fa2eb3fa2eb3f30fd3f30fd3f30fd3f30fd3fa7fe3fa7fe3fa7fe3fa7fe3f06f03f06f03f06f03f06f03f50d13f50d13f50d13f50d13f8da23f8da23f8da23f8da23fca633fca633fca633fca633f15153f15153f15153f15153f82b63e82b63e82b63e82b63e2a483e2 +USB isochronous packet + ISO Data offset: 0x00000c6c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 9d3c3d9d3c3d9d3c3d9d3c3daa9f3caa9f3caa9f3caa9f3c78f33b78f33b78f33b78f33b32383b32383b32383b32383b086e3a086e3a086e3a086e3a2c95392c95392c95392c9539d4ad38d4ad38d4ad38d4ad383cb8373cb8373cb8373cb837a0b436a0b436a0b436a0b43641a3354 +USB isochronous packet + ISO Data offset: 0x00000cf0 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 5558335558335558335558335a1f325a1f325a1f325a1f32c4d930c4d930c4d930c4d930e6872fe6872fe6872fe6872f132a2e132a2e132a2e132a2ea4c02ca4c02ca4c02ca4c02cf34b2bf34b2bf34b2bf34b2b5fcc295fcc295fcc295fcc2948422848422848422848422811ae261 +USB isochronous packet + ISO Data offset: 0x00000d74 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: dc6823dc6823dc6823dc6823b0b821b0b821b0b821b0b8210a00200a00200a00200a0020573f1e573f1e573f1e573f1e09771c09771c09771c09771c92a71a92a71a92a71a92a71a67d11867d11867d11867d118fef416fef416fef416fef416cf1215cf1215cf1215cf1215532b135 +USB isochronous packet + ISO Data offset: 0x00000df8 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 614e0f614e0f614e0f614e0fe4590de4590de4590de4590d0a620b0a620b0a620b0a620b546709546709546709546709416a07416a07416a07416a07506b05506b05506b05506b05026b03026b03026b03026b03d86901d86901d86901d869015368ff5368ff5368ff5368fff466fdf +USB isochronous packet + ISO Data offset: 0x00000e7c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: ae66f9ae66f9ae66f9ae66f9c768f7c768f7c768f7c768f70a6df50a6df50a6df50a6df5f573f3f573f3f573f3f573f3087ef1087ef1087ef1087ef1c28befc28befc28befc28bef9e9ded9e9ded9e9ded9e9ded1bb4eb1bb4eb1bb4eb1bb4ebb2cfe9b2cfe9b2cfe9b2cfe9ddf0e7d +USB isochronous packet + ISO Data offset: 0x00000f00 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: d245e4d245e4d245e4d245e4887ae2887ae2887ae2887ae2abb6e0abb6e0abb6e0abb6e0abfadeabfadeabfadeabfadefa46ddfa46ddfa46ddfa46dd049cdb049cdb049cdb049cdb35fad935fad935fad935fad9f661d8f661d8f661d8f661d8aed3d6aed3d6aed3d6aed3d6c14fd5c +USB isochronous packet + ISO Data offset: 0x00000f84 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 7a68d27a68d27a68d27a68d2dc05d1dc05d1dc05d1dc05d10eafcf0eafcf0eafcf0eafcf6864ce6864ce6864ce6864ce3a26cd3a26cd3a26cd3a26cdd6f4cbd6f4cbd6f4cbd6f4cb89d0ca89d0ca89d0ca89d0ca9cb9c99cb9c99cb9c99cb9c956b0c856b0c856b0c856b0c8f9b4c7f +USB isochronous packet + ISO Data offset: 0x00001008 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: f4e8c5f4e8c5f4e8c5f4e8c5bf18c5bf18c5bf18c5bf18c55b57c45b57c45b57c45b57c4f8a4c3f8a4c3f8a4c3f8a4c3c201c3c201c3c201c3c201c3e46dc2e46dc2e46dc2e46dc282e9c182e9c182e9c182e9c1be74c1be74c1be74c1be74c1b40fc1b40fc1b40fc1b40fc17ebac07 +USB isochronous packet + ISO Data offset: 0x0000108c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: e23fc0e23fc0e23fc0e23fc09a1ac09a1ac09a1ac09a1ac06305c06305c06305c06305c04400c04400c04400c04400c03e0bc03e0bc03e0bc03e0bc04d26c04d26c04d26c04d26c06b51c06b51c06b51c06b51c08d8cc08d8cc08d8cc08d8cc0a4d7c0a4d7c0a4d7c0a4d7c09e32c19 +USB isochronous packet + ISO Data offset: 0x0000111c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: e1a1c2e1a1c2e1a1c2e1a1c2583bc3583bc3583bc3583bc317e4c317e4c317e4c317e4c3f49bc4f49bc4f49bc4f49bc4c162c5c162c5c162c5c162c54c38c64c38c64c38c64c38c65f1cc75f1cc75f1cc75f1cc7c10ec8c10ec8c10ec8c10ec8340fc9340fc9340fc9340fc9791dca7 +USB isochronous packet + ISO Data offset: 0x000011a0 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 6462cc6462cc6462cc6462cc7798cd7798cd7798cd7798cd38dbce38dbce38dbce38dbce542ad0542ad0542ad0542ad07985d17985d17985d17985d14eecd24eecd24eecd24eecd2795ed4795ed4795ed4795ed49ddbd59ddbd59ddbd59ddbd55b63d75b63d75b63d75b63d74ff5d84 +USB isochronous packet + ISO Data offset: 0x00001224 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 4536dc4536dc4536dc4536dc76e4dd76e4dd76e4dd76e4dd3a9bdf3a9bdf3a9bdf3a9bdf245ae1245ae1245ae1245ae1c320e3c320e3c320e3c320e3a5eee4a5eee4a5eee4a5eee456c3e656c3e656c3e656c3e65f9ee85f9ee85f9ee85f9ee84a7fea4a7fea4a7fea4a7fea9e65ec9 +USB isochronous packet + ISO Data offset: 0x000012a8 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 9340f09340f09340f09340f03d34f23d34f23d34f23d34f2602bf4602bf4602bf4602bf47c25f67c25f67c25f67c25f61222f81222f81222f81222f8a320faa320faa320faa320faae20fcae20fcae20fcae20fcb221feb221feb221feb221fe2e23002e23002e23002e2300a12402a +USB isochronous packet + ISO Data offset: 0x0000132c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 682506682506682506682506ba2308ba2308ba2308ba230800200a00200a00200a00200aba190cba190cba190cba190c6a100e6a100e6a100e6a100e8f03108f03108f03108f0310aef211aef211aef211aef21149dd1349dd1349dd1349dd13e6c215e6c215e6c215e6c21509a3170 +USB isochronous packet + ISO Data offset: 0x000013b0 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 02511b02511b02511b02511bec1d1dec1d1dec1d1dec1d1d83e31e83e31e83e31e83e31e55a12055a12055a12055a120f25622f25622f25622f25622ed0324ed0324ed0324ed0324d9a725d9a725d9a725d9a7254c42274c42274c42274c4227e0d228e0d228e0d228e0d22830592a3 +USB isochronous packet + ISO Data offset: 0x00001434 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 7b452d7b452d7b452d7b452dbcaa2ebcaa2ebcaa2ebcaa2e3f04303f04303f04303f0430af5131af5131af5131af5131b89232b89232b89232b8923209c73309c73309c73309c73354ee3454ee3454ee3454ee344f08364f08364f08364f0836b31437b31437b31437b314373e13383 + +No. Time Source Destination Protocol Length Info + 3998 3.170699 1.15.2 host USB 519 URB_ISOCHRONOUS out + +Frame 3998: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:07:20.283649000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:07:20.283649000 UTC + Epoch Arrival Time: 1750615640.283649000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.004384000 seconds] + [Time delta from previous displayed frame: 0.004384000 seconds] + [Time since reference or first frame: 3.170699000 seconds] + Frame Number: 3998 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.15.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffffde073e6638a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 15 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 3981] + [Time from request: 0.014465000 seconds] + Isochronous transfer start frame: 6063431 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000084 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000108 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000018c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000210 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000294 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000039c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000420 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004b0 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000534 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005b8 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000063c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000744 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007c8 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000084c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008d0 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000954 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a5c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000ae0 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000b64 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000be8 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000c6c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000cf0 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000d74 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000df8 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000e7c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000f00 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000f84 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00001008 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000108c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00001110 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00001194 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00001218 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000129c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00001320 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000013a4 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00001428 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + +No. Time Source Destination Protocol Length Info + 4001 3.171342 host 1.15.2 USB 5823 URB_ISOCHRONOUS out + +Frame 4001: 5823 bytes on wire (46584 bits), 5823 bytes captured (46584 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:07:20.284292000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:07:20.284292000 UTC + Epoch Arrival Time: 1750615640.284292000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000005000 seconds] + [Time delta from previous displayed frame: 0.000005000 seconds] + [Time since reference or first frame: 3.171342000 seconds] + Frame Number: 4001 + Frame Length: 5823 bytes (46584 bits) + Capture Length: 5823 bytes (46584 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.15.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffffde073e6638a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 15 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 5304 + [Response in: 4016] + Isochronous transfer start frame: 6063446 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: ad0339ad0339ad0339ad0339c6e539c6e539c6e539c6e53950b93a50b93a50b93a50b93a147e3b147e3b147e3b147e3be2333ce2333ce2333ce2333c8dda3c8dda3c8dda3c8dda3ce9713de9713de9713de9713dd2f93dd2f93dd2f93dd2f93d24723e24723e24723e24723ec1da3ec +USB isochronous packet + ISO Data offset: 0x00000084 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 7a7c3f7a7c3f7a7c3f7a7c3f6cb53f6cb53f6cb53f6cb53f59de3f59de3f59de3f59de3f36f73f36f73f36f73f36f73ffcff3ffcff3ffcff3ffcff3faaf83faaf83faaf83faaf83f41e13f41e13f41e13f41e13fc7b93fc7b93fc7b93fc7b93f46823f46823f46823f46823fcd3a3fc +USB isochronous packet + ISO Data offset: 0x00000108 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 3b7c3e3b7c3e3b7c3e3b7c3e53053e53053e53053e53053ed27e3dd27e3dd27e3dd27e3dd9e83cd9e83cd9e83cd9e83c8f433c8f433c8f433c8f433c1d8f3b1d8f3b1d8f3b1d8f3bb0cb3ab0cb3ab0cb3ab0cb3a7af9397af9397af9397af939af1839af1839af1839af18398829388 +USB isochronous packet + ISO Data offset: 0x0000018c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 1b21361b21361b21361b21365708355708355708355708353ce2333ce2333ce2333ce23316af3216af3216af3216af32306f31306f31306f31306f31db2230db2230db2230db22306cca2e6cca2e6cca2e6cca2e37662d37662d37662d37662d98f62b98f62b98f62b98f62bea7b2ae +USB isochronous packet + ISO Data offset: 0x00000210 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: e36627e36627e36627e3662750cd2550cd2550cd2550cd253b2a243b2a243b2a243b2a240e7e220e7e220e7e220e7e2234c92034c92034c92034c9201a0c1f1a0c1f1a0c1f1a0c1f33471d33471d33471d33471dee7a1bee7a1bee7a1bee7a1bc0a719c0a719c0a719c0a7191ece171 +USB isochronous packet + ISO Data offset: 0x00000294 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 5d09145d09145d09145d0914301f12301f12301f12301f12753010753010753010753010a73d0ea73d0ea73d0ea73d0e45470c45470c45470c45470ccc4d0acc4d0acc4d0acc4d0abb5108bb5108bb5108bb5108935306935306935306935306d45304d45304d45304d45304fe5202f +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 1250fe1250fe1250fe1250feff4efcff4efcff4efcff4efcd94efad94efad94efad94efa2250f82250f82250f82250f85953f65953f65953f65953f60059f40059f40059f40059f49461f29461f29461f29461f2966df0966df0966df0966df0827dee827dee827dee827deed591ecd +USB isochronous packet + ISO Data offset: 0x0000039c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: a0c9e8a0c9e8a0c9e8a0c9e80aeee60aeee60aeee60aeee6c218e5c218e5c218e5c218e53e4ae33e4ae33e4ae33e4ae3f382e1f382e1f382e1f382e153c3df53c3df53c3df53c3dfce0bdece0bdece0bdece0bded45cdcd45cdcd45cdcd45cdcd0b6dad0b6dad0b6dad0b6da2c1ad92 +USB isochronous packet + ISO Data offset: 0x00000420 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: a4fed5a4fed5a4fed5a4fed58680d48680d48680d48680d45a0dd35a0dd35a0dd35a0dd37ba5d17ba5d17ba5d17ba5d14549d04549d04549d04549d00ef9ce0ef9ce0ef9ce0ef9ce2cb5cd2cb5cd2cb5cd2cb5cdf07dccf07dccf07dccf07dcca753cba753cba753cba753cb9e36ca9 +USB isochronous packet + ISO Data offset: 0x000004b0 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: bc31c7bc31c7bc31c7bc31c75a4cc65a4cc65a4cc65a4cc67c75c57c75c57c75c57c75c558adc458adc458adc458adc41ef4c31ef4c31ef4c31ef4c3fe49c3fe49c3fe49c3fe49c324afc224afc224afc224afc2b523c2b523c2b523c2b523c2d5a7c1d5a7c1d5a7c1d5a7c1a33bc1a +USB isochronous packet + ISO Data offset: 0x00000534 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: b292c0b292c0b292c0b292c01d56c01d56c01d56c01d56c08b29c08b29c08b29c08b29c0070dc0070dc0070dc0070dc09900c09900c09900c09900c04304c04304c04304c04304c00418c00418c00418c00418c0d83bc0d83bc0d83bc0d83bc0b66fc0b66fc0b66fc0b66fc090b3c09 +USB isochronous packet + ISO Data offset: 0x000005b8 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: f16ac1f16ac1f16ac1f16ac14adec14adec14adec14adec14461c24461c24461c24461c2bcf3c2bcf3c2bcf3c2bcf3c29095c39095c39095c39095c39546c49546c49546c49546c49f06c59f06c59f06c59f06c57ed5c57ed5c57ed5c57ed5c5ffb2c6ffb2c6ffb2c6ffb2c6e89ec7e +USB isochronous packet + ISO Data offset: 0x0000063c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 06a1c906a1c906a1c906a1c9bab6cabab6cabab6cabab6cad4d9cbd4d9cbd4d9cbd4d9cb0b0acd0b0acd0b0acd0b0acd1447ce1447ce1447ce1447ce9d90cf9d90cf9d90cf9d90cf56e6d056e6d056e6d056e6d0e647d2e647d2e647d2e647d2f7b4d3f7b4d3f7b4d3f7b4d32b2dd52 +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 823dd8823dd8823dd8823dd8ded4d9ded4d9ded4d9ded4d9d575dbd575dbd575dbd575dbfc1fddfc1fddfc1fddfc1fdde8d2dee8d2dee8d2dee8d2de2d8ee02d8ee02d8ee02d8ee05a51e25a51e25a51e25a51e2fe1be4fe1be4fe1be4fe1be4a6ede5a6ede5a6ede5a6ede5dcc5e7d +USB isochronous packet + ISO Data offset: 0x00000744 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 1888eb1888eb1888eb1888eb2b71ed2b71ed2b71ed2b71edea5eefea5eefea5eefea5eefd750f1d750f1d750f1d750f17546f37546f37546f37546f3473ff5473ff5473ff5473ff5cd3af7cd3af7cd3af7cd3af78838f98838f98838f98838f9f737fbf737fbf737fbf737fb9a38fd9 +USB isochronous packet + ISO Data offset: 0x000007c8 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 773b01773b01773b01773b01af3c03af3c03af3c03af3c03163d05163d05163d05163d052c3c072c3c072c3c072c3c0770390970390970390970390962340b62340b62340b62340b832c0d832c0d832c0d832c0d53210f53210f53210f53210f5612115612115612115612110dff120 +USB isochronous packet + ISO Data offset: 0x0000084c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: acc916acc916acc916acc9169fa6189fa6189fa6189fa618607d1a607d1a607d1a607d1a764d1c764d1c764d1c764d1c6f161e6f161e6f161e6f161ed7d71fd7d71fd7d71fd7d71f3c91213c91213c91213c912130422330422330422330422346ea2446ea2446ea2446ea241489261 +USB isochronous packet + ISO Data offset: 0x000008d0 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 36a92936a92936a92936a929c1292bc1292bc1292bc1292b719f2c719f2c719f2c719f2ce8092ee8092ee8092ee8092ecc682fcc682fcc682fcc682fc2bb30c2bb30c2bb30c2bb30780232780232780232780232993c33993c33993c33993c33d86934d86934d86934d86934e88935e +USB isochronous packet + ISO Data offset: 0x00000954 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 5ea1375ea1375ea1375ea1373d98383d98383d98383d9838e08039e08039e08039e080390e5b3a0e5b3a0e5b3a0e5b3a8e263b8e263b8e263b8e263b2ee33b2ee33b2ee33b2ee33bbe903cbe903cbe903cbe903c122f3d122f3d122f3d122f3d04be3d04be3d04be3d04be3d6e3d3e6 +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 320d3f320d3f320d3f320d3f565d3f565d3f565d3f565d3f8b9d3f8b9d3f8b9d3f8b9d3fc0cd3fc0cd3fc0cd3fc0cd3fe9ed3fe9ed3fe9ed3fe9ed3ffefd3ffefd3ffefd3ffefd3ffcfd3ffcfd3ffcfd3ffcfd3fe1ed3fe1ed3fe1ed3fe1ed3fb2cd3fb2cd3fb2cd3fb2cd3f789d3f7 +USB isochronous packet + ISO Data offset: 0x00000a5c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 130d3f130d3f130d3f130d3f0ead3e0ead3e0ead3e0ead3e453d3e453d3e453d3e453d3ed6bd3dd6bd3dd6bd3dd6bd3ddf2e3ddf2e3ddf2e3ddf2e3d85903c85903c85903c85903cf0e23bf0e23bf0e23bf0e23b4a263b4a263b4a263b4a263bc55a3ac55a3ac55a3ac55a3a9380399 +USB isochronous packet + ISO Data offset: 0x00000ae0 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 06a13706a13706a13706a137259c36259c36259c36259c36878935878935878935878935736934736934736934736934303c33303c33303c33303c330a02320a02320a02320a023251bb3051bb3051bb3051bb3056682f56682f56682f56682f6f092e6f092e6f092e6f092ef49e2cf +USB isochronous packet + ISO Data offset: 0x00000b64 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: b2a829b2a829b2a829b2a829a91d28a91d28a91d28a91d28898826898826898826898826b9e924b9e924b9e924b9e924a04123a04123a04123a04123a99021a99021a99021a9902141d71f41d71f41d71f41d71fd7151ed7151ed7151ed7151edc4c1cdc4c1cdc4c1cdc4c1cc37c1ac +USB isochronous packet + ISO Data offset: 0x00000be8 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 0bc9160bc9160bc9160bc9165be6145be6145be6145be61469fe1269fe1269fe1269fe12b01111b01111b01111b01111ad200fad200fad200fad200fdb2b0ddb2b0ddb2b0ddb2b0db9330bb9330bb9330bb9330bc73809c73809c73809c73809823b07823b07823b07823b076c3c056 +USB isochronous packet + ISO Data offset: 0x00000c6c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: cd3a01cd3a01cd3a01cd3a014639ff4639ff4639ff4639fff137fdf137fdf137fdf137fd4f37fb4f37fb4f37fb4f37fbe237f9e237f9e237f9e237f9283af7283af7283af7283af7a43ef5a43ef5a43ef5a43ef5d445f3d445f3d445f3d445f33850f13850f13850f13850f14d5eef4 +USB isochronous packet + ISO Data offset: 0x00000cf0 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 8087eb8087eb8087eb8087eb95a3e995a3e995a3e995a3e94ac5e74ac5e74ac5e74ac5e716ede516ede516ede516ede5711be4711be4711be4711be4d050e2d050e2d050e2d050e2a68de0a68de0a68de0a68de066d2de66d2de66d2de66d2de7c1fdd7c1fdd7c1fdd7c1fdd5975db5 +USB isochronous packet + ISO Data offset: 0x00000d74 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 0c3dd80c3dd80c3dd80c3dd8b3afd6b3afd6b3afd6b3afd6be2cd5be2cd5be2cd5be2cd58db4d38db4d38db4d38db4d38147d28147d28147d28147d2f4e5d0f4e5d0f4e5d0f4e5d03f90cf3f90cf3f90cf3f90cfb946ceb946ceb946ceb946ceb409cdb409cdb409cdb409cd80d9cb8 +USB isochronous packet + ISO Data offset: 0x00000df8 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: baa0c9baa0c9baa0c9baa0c9b898c8b898c8b898c8b898c8a49ec7a49ec7a49ec7a49ec7bfb2c6bfb2c6bfb2c6bfb2c642d5c542d5c542d5c542d5c56706c56706c56706c56706c56146c46146c46146c46146c46095c36095c36095c36095c391f3c291f3c291f3c291f3c21d61c21 +USB isochronous packet + ISO Data offset: 0x00000e7c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: d36ac1d36ac1d36ac1d36ac13c07c13c07c13c07c13c07c17bb3c07bb3c07bb3c07bb3c0a56fc0a56fc0a56fc0a56fc0cc3bc0cc3bc0cc3bc0cc3bc0fc17c0fc17c0fc17c0fc17c04004c04004c04004c04004c09a00c09a00c09a00c09a00c00d0dc00d0dc00d0dc00d0dc09529c09 +USB isochronous packet + ISO Data offset: 0x00000f00 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: c592c0c592c0c592c0c592c052dfc052dfc052dfc052dfc0bf3bc1bf3bc1bf3bc1bf3bc1f6a7c1f6a7c1f6a7c1f6a7c1da23c2da23c2da23c2da23c24dafc24dafc24dafc24dafc22c4ac32c4ac32c4ac32c4ac350f4c350f4c350f4c350f4c38eadc48eadc48eadc48eadc4b675c5b +USB isochronous packet + ISO Data offset: 0x00000f84 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: fe31c7fe31c7fe31c7fe31c7ac25c8ac25c8ac25c8ac25c86727c96727c96727c96727c9ec36caec36caec36caec36caf953cbf953cbf953cbf953cb457ecc457ecc457ecc457ecc85b5cd85b5cd85b5cd85b5cd6bf9ce6bf9ce6bf9ce6bf9cea649d0a649d0a649d0a649d0e0a5d1e +USB isochronous packet + ISO Data offset: 0x00001008 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: f380d4f380d4f380d4f380d414ffd514ffd514ffd514ffd5c587d7c587d7c587d7c587d7a41ad9a41ad9a41ad9a41ad94cb7da4cb7da4cb7da4cb7da535ddc535ddc535ddc535ddc510cde510cde510cde510cded9c3dfd9c3dfd9c3dfd9c3df7d83e17d83e17d83e17d83e1cb4ae3c +USB isochronous packet + ISO Data offset: 0x0000108c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 9ceee69ceee69ceee69ceee635cae835cae835cae835cae8a4abeaa4abeaa4abeaa4abea7092ec7092ec7092ec7092ec1f7eee1f7eee1f7eee1f7eee356ef0356ef0356ef0356ef03662f23662f23662f23662f2a359f4a359f4a359f4a359f4ff53f6ff53f6ff53f6ff53f6c950f8c +USB isochronous packet + ISO Data offset: 0x0000111c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: bd50febd50febd50febd50fe3e52003e52003e52003e5200aa5302aa5302aa5302aa53027f54047f54047f54047f54043e54063e54063e54063e5406665208665208665208665208764e0a764e0a764e0a764e0aee470cee470cee470cee470c4f3e0e4f3e0e4f3e0e4f3e0e1c31101 +USB isochronous packet + ISO Data offset: 0x000011a0 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 010a14010a14010a14010a1422ef1522ef1522ef1522ef15bece17bece17bece17bece175ea8195ea8195ea8195ea8198a7b1b8a7b1b8a7b1b8a7b1bcd471dcd471dcd471dcd471db20c1fb20c1fb20c1fb20c1fc9c920c9c920c9c920c9c920a07e22a07e22a07e22a07e22cb2a24c +USB isochronous packet + ISO Data offset: 0x00001224 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 6d67276d67276d67276d672714f72814f72814f72814f7286e7c2a6e7c2a6e7c2a6e7c2a18f72b18f72b18f72b18f72bb3662db3662db3662db3662de4ca2ee4ca2ee4ca2ee4ca2e502330502330502330502330a06f31a06f31a06f31a06f3182af3282af3282af3282af32a4e233a +USB isochronous packet + ISO Data offset: 0x000012a8 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 7921367921367921367921369c2c379c2c379c2c379c2c37dd2938dd2938dd2938dd2938ff1839ff1839ff1839ff1839c5f939c5f939c5f939c5f939f6cb3af6cb3af6cb3af6cb3a5e8f3b5e8f3b5e8f3b5e8f3bca433cca433cca433cca433c10e93c10e93c10e93c10e93c037f3d0 +USB isochronous packet + ISO Data offset: 0x0000132c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 627c3e627c3e627c3e627c3e8ee33e8ee33e8ee33e8ee33ee83a3fe83a3fe83a3fe83a3f5c823f5c823f5c823f5c823fd7b93fd7b93fd7b93fd7b93f4ce13f4ce13f4ce13f4ce13faff83faff83faff83faff83ffcff3ffcff3ffcff3ffcff3f30f73f30f73f30f73f30f73f4ede3f4 +USB isochronous packet + ISO Data offset: 0x000013b0 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 647c3f647c3f647c3f647c3f74333f74333f74333f74333fa0da3ea0da3ea0da3ea0da3efd713efd713efd713efd713ea5f93da5f93da5f93da5f93db8713db8713db8713db8713d56da3c56da3c56da3c56da3ca6333ca6333ca6333ca6333cd37d3bd37d3bd37d3bd37d3b09b93a0 +USB isochronous packet + ISO Data offset: 0x00001434 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 5d03395d03395d03395d0339e81238e81238e81238e81238591437591437591437591437f00736f00736f00736f00736f0ed34f0ed34f0ed34f0ed34a0c633a0c633a0c633a0c6334c92324c92324c92324c92323e51313e51313e51313e5131ca0330ca0330ca0330ca033043aa2e4 + +No. Time Source Destination Protocol Length Info + 4002 3.175697 1.15.2 host USB 519 URB_ISOCHRONOUS out + +Frame 4002: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:07:20.288647000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:07:20.288647000 UTC + Epoch Arrival Time: 1750615640.288647000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.004355000 seconds] + [Time delta from previous displayed frame: 0.004355000 seconds] + [Time since reference or first frame: 3.175697000 seconds] + Frame Number: 4002 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.15.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffffde073a4b88a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 15 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 3990] + [Time from request: 0.014365000 seconds] + Isochronous transfer start frame: 6063436 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000084 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000108 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000018c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000210 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000294 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000318 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000039c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000420 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000004b0 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000534 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005b8 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000063c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006c0 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000744 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007c8 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000084c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000008d0 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000954 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000009d8 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a5c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000ae0 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000b64 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000be8 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000c6c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000cf0 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000d74 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000df8 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000e7c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000f00 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000f84 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00001008 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000108c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000111c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000011a0 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00001224 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000012a8 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000132c + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000013b0 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00001434 + ISO Data length: 0x00000084 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) diff --git a/reverse_eng_dataset/24bit_96k_440_TONE_URB_ISO_OUT.txt b/reverse_eng_dataset/24bit_96k_440_TONE_URB_ISO_OUT.txt new file mode 100644 index 0000000..b7abcf2 --- /dev/null +++ b/reverse_eng_dataset/24bit_96k_440_TONE_URB_ISO_OUT.txt @@ -0,0 +1,897 @@ +No. Time Source Destination Protocol Length Info + 3780 3.107254 host 1.15.2 USB 6291 URB_ISOCHRONOUS out + +Frame 3780: 6291 bytes on wire (50328 bits), 6291 bytes captured (50328 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:08:23.283304000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:08:23.283304000 UTC + Epoch Arrival Time: 1750615703.283304000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000021000 seconds] + [Time delta from previous displayed frame: 0.000021000 seconds] + [Time since reference or first frame: 3.107254000 seconds] + Frame Number: 3780 + Frame Length: 6291 bytes (50328 bits) + Capture Length: 6291 bytes (50328 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.15.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffffde073ee0d560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 15 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 5772 + [Response in: 3790] + Isochronous transfer start frame: 6126445 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 18ebc818ebc818ebc818ebc8ac00c8ac00c8ac00c8ac00c83522c73522c73522c73522c7d34fc6d34fc6d34fc6d34fc6b089c5b089c5b089c5b089c5f3cfc4f3cfc4f3cfc4f3cfc4c622c4c622c4c622c4c622c44c82c34c82c34c82c34c82c3aaeec2aaeec2aaeec2aaeec2fe67c2f +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: c322c1c322c1c322c1c322c1efd0c0efd0c0efd0c0efd0c08c8cc08c8cc08c8cc08c8cc0a655c0a655c0a655c0a655c0442cc0442cc0442cc0442cc06e10c06e10c06e10c06e10c02602c02602c02602c02602c07501c07501c07501c07501c0570ec0570ec0570ec0570ec0cc28c0c +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 4cc9c04cc9c04cc9c04cc9c0b419c1b419c1b419c1b419c18277c18277c18277c18277c196e2c196e2c196e2c196e2c1db5ac2db5ac2db5ac2db5ac235e0c235e0c235e0c235e0c28572c38572c38572c38572c3b011c4b011c4b011c4b011c491bdc491bdc491bdc491bdc40876c50 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 46e9c746e9c746e9c746e9c769d2c869d2c869d2c869d2c850c7c950c7c950c7c950c7c9b6c7cab6c7cab6c7cab6c7ca69d3cb69d3cb69d3cb69d3cb2feacc2feacc2feacc2feaccc90bcec90bcec90bcec90bcefe37cffe37cffe37cffe37cf8c6ed08c6ed08c6ed08c6ed035afd13 +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 08abd508abd508abd508abd55211d75211d75211d75211d74f80d84f80d84f80d84f80d8c7f7d9c7f7d9c7f7d9c7f7d94077db4077db4077db4077db7bfedc7bfedc7bfedc7bfedc228dde228dde228dde228ddee222e0e222e0e222e0e222e065bfe165bfe165bfe165bfe15362e35 +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 246ee8246ee8246ee8246ee83c27ea3c27ea3c27ea3c27eaf7e4ebf7e4ebf7e4ebf7e4eb0ea7ed0ea7ed0ea7ed0ea7edf86ceff86ceff86ceff86cef6536f16536f16536f16536f1f502f3f502f3f502f3f502f346d2f446d2f446d2f446d2f4f6a3f6f6a3f6f6a3f6f6a3f6a277f8a +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: b1fafdb1fafdb1fafdb1fafd6dd2ff6dd2ff6dd2ff6dd2ff33aa0133aa0133aa0133aa01b48103b48103b48103b48103605805605805605805605805e82d07e82d07e82d07e82d07eb0109eb0109eb0109eb010904d40a04d40a04d40a04d40ad0a30cd0a30cd0a30cd0a30cee700ee +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 5fc4135fc4135fc4135fc413f88215f88215f88215f88215013d17013d17013d17013d171af2181af2181af2181af218f8a11af8a11af8a11af8a11a184c1c184c1c184c1c184c1c36f01d36f01d36f01d36f01dfb8d1ffb8d1ffb8d1ffb8d1f0e25210e25210e25210e252118b5221 +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x0000009c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: b73727b73727b73727b737275fa8285fa8285fa8285fa82866102a66102a66102a66102a806f2b806f2b806f2b806f2b6bc52c6bc52c6bc52c6bc52cc0112ec0112ec0112ec0112e50542f50542f50542f50542fd28c30d28c30d28c30d28c3009bb3109bb3109bb3109bb31b3de32b +USB isochronous packet + ISO Data offset: 0x0000051c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 1aff361aff361aff361aff368dea378dea378dea378dea3724ca3824ca3824ca3824ca38b19d39b19d39b19d39b19d39f1643af1643af1643af1643acb1f3bcb1f3bcb1f3bcb1f3b19ce3b19ce3b19ce3b19ce3bb76f3cb76f3cb76f3cb76f3c84043d84043d84043d84043d5d8c3d5 +USB isochronous packet + ISO Data offset: 0x000005ac + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 22d53e22d53e22d53e22d53e2c283f2c283f2c283f2c283fce6d3fce6d3fce6d3fce6d3ffba53ffba53ffba53ffba53f98d03f98d03f98d03f98d03fa4ed3fa4ed3fa4ed3fa4ed3f21fd3f21fd3f21fd3f21fd3f0dff3f0dff3f0dff3f0dff3f62f33f62f33f62f33f62f33f28da3f2 +USB isochronous packet + ISO Data offset: 0x0000063c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 483d3f483d3f483d3f483d3f17ee3e17ee3e17ee3e17ee3e8a913e8a913e8a913e8a913eb6273eb6273eb6273eb6273ea0b03da0b03da0b03da0b03d742c3d742c3d742c3d742c3d4a9b3c4a9b3c4a9b3c4a9b3c46fd3b46fd3b46fd3b46fd3b88523b88523b88523b88523b349b3a3 +USB isochronous packet + ISO Data offset: 0x000006cc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 3e2b383e2b383e2b383e2b382f43372f43372f43372f4337644f36644f36644f36644f361250351250351250351250355e45345e45345e45345e4534982f33982f33982f33982f33f20e32f20e32f20e32f20e32b0e330b0e330b0e330b0e3300dae2f0dae2f0dae2f0dae2f4e6e2e4 +USB isochronous packet + ISO Data offset: 0x0000075c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 08752a08752a08752a08752a8a0f298a0f298a0f298a0f2956a12756a12756a12756a127b72a26b72a26b72a26b72a26ebab24ebab24ebab24ebab2462252362252362252362252363972163972163972163972142022042022042022042022058661e58661e58661e58661efcc31cf +USB isochronous packet + ISO Data offset: 0x000007ec + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: aeb917aeb917aeb917aeb917080116080116080116080116b64314b64314b64314b6431416821216821216821216821288bc1088bc1088bc1088bc1055f30e55f30e55f30e55f30e0a270d0a270d0a270d0a270df5570bf5570bf5570bf5570b788609788609788609788609f6b207f +USB isochronous packet + ISO Data offset: 0x0000087c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 3230023230023230023230027d58007d58007d58007d5800b580feb580feb580feb580fe3ea9fc3ea9fc3ea9fc3ea9fc7cd2fa7cd2fa7cd2fa7cd2fabefcf8befcf8befcf8befcf89428f79428f79428f79428f74b56f54b56f54b56f54b56f54586f34586f34586f34586f3e5b8f1e +USB isochronous packet + ISO Data offset: 0x0000090c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 7964ec7964ec7964ec7964ec7da5ea7da5ea7da5ea7da5ea08ebe808ebe808ebe808ebe87735e77735e77735e77735e72b85e52b85e52b85e52b85e56adae36adae36adae36adae3bc35e2bc35e2bc35e2bc35e26097e06097e06097e06097e0b0ffdeb0ffdeb0ffdeb0ffde006fdd0 +USB isochronous packet + ISO Data offset: 0x0000099c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 40ead840ead840ead840ead8d678d7d678d7d678d7d678d70610d60610d60610d60610d61ab0d41ab0d41ab0d41ab0d45e59d35e59d35e59d35e59d31e0cd21e0cd21e0cd21e0cd29ac8d09ac8d09ac8d09ac8d02a8fcf2a8fcf2a8fcf2a8fcf0260ce0260ce0260ce0260ce643bcd6 +USB isochronous packet + ISO Data offset: 0x00000a2c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 140fca140fca140fca140fcaec16c9ec16c9ec16c9ec16c9692ac8692ac8692ac8692ac8bd49c7bd49c7bd49c7bd49c71a75c61a75c61a75c61a75c6aeacc5aeacc5aeacc5aeacc5a3f0c4a3f0c4a3f0c4a3f0c43141c43141c43141c43141c46c9ec36c9ec36c9ec36c9ec37808c37 +USB isochronous packet + ISO Data offset: 0x00000abc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: aa94c1aa94c1aa94c1aa94c11833c11833c11833c11833c1dcdec0dcdec0dcdec0dcdec00298c00298c00298c00298c09d5ec09d5ec09d5ec09d5ec0b832c0b832c0b832c0b832c06414c06414c06414c06414c0ac03c0ac03c0ac03c0ac03c08a00c08a00c08a00c08a00c0fc0ac0f +USB isochronous packet + ISO Data offset: 0x00000b4c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: a27bc0a27bc0a27bc0a27bc036bcc036bcc036bcc036bcc0330ac1330ac1330ac1330ac18e65c18e65c18e65c18e65c12ecec12ecec12ecec12ecec10244c20244c20244c20244c2f4c6c2f4c6c2f4c6c2f4c6c2f656c3f656c3f656c3f656c3d4f3c3d4f3c3d4f3c3d4f3c3729dc47 +USB isochronous packet + ISO Data offset: 0x00000bdc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 3ee5c63ee5c63ee5c63ee5c650c0c750c0c750c0c750c0c750a7c850a7c850a7c850a7c80f9ac90f9ac90f9ac90f9ac95898ca5898ca5898ca5898caf7a1cbf7a1cbf7a1cbf7a1cbb4b6ccb4b6ccb4b6ccb4b6cc69d6cd69d6cd69d6cd69d6cdbc00cfbc00cfbc00cfbc00cf7435d07 +USB isochronous packet + ISO Data offset: 0x00000c6c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 5e0fd45e0fd45e0fd45e0fd4086bd5086bd5086bd5086bd5bacfd6bacfd6bacfd6bacfd62b3dd82b3dd82b3dd82b3dd80ab3d90ab3d90ab3d90ab3d90c31db0c31db0c31db0c31dbdcb6dcdcb6dcdcb6dcdcb6dc4144de4144de4144de4144dec1d8dfc1d8dfc1d8dfc1d8df1474e11 +USB isochronous packet + ISO Data offset: 0x00000cfc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 896be6896be6896be6896be6af1ee8af1ee8af1ee8af1ee8e6d6e9e6d6e9e6d6e9e6d6e9d293ebd293ebd293ebd293eb1355ed1355ed1355ed1355ed4a1aef4a1aef4a1aef4a1aef18e3f018e3f018e3f018e3f031aff231aff231aff231aff20b7ef40b7ef40b7ef40b7ef4574ff65 +USB isochronous packet + ISO Data offset: 0x00000d8c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: fecdfbfecdfbfecdfbfecdfb2da5fd2da5fd2da5fd2da5fddc7cffdc7cffdc7cffdc7cffa65401a65401a65401a65401282c03282c03282c03282c03fe0205fe0205fe0205fe0205c4d806c4d806c4d806c4d80617ad0817ad0817ad0817ad08a67f0aa67f0aa67f0aa67f0ae54f0ce +USB isochronous packet + ISO Data offset: 0x00000e1c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 69af1169af1169af1169af11ea7213ea7213ea7213ea72134932154932154932154932152aed162aed162aed162aed162da3182da3182da3182da318f7531af7531af7531af7531a2aff1b2aff1b2aff1b2aff1b6da41d6da41d6da41d6da41d76431f76431f76431f76431fc4db20c +USB isochronous packet + ISO Data offset: 0x00000eac + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 837925837925837925837925f4f326f4f326f4f326f4f326206628206628206628206628b8cf29b8cf29b8cf29b8cf2972302b72302b72302b72302b03882c03882c03882c03882c22d62d22d62d22d62d22d62d841a2f841a2f841a2f841a2ff45430f45430f45430f454300e85310 +USB isochronous packet + ISO Data offset: 0x00000f3c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 4ad5344ad5344ad5344ad534ebd935ebd935ebd935ebd9351ed3361ed3361ed3361ed336aec037aec037aec037aec0376aa2386aa2386aa2386aa238217839217839217839217839aa413aaa413aaa413aaa413ad3fe3ad3fe3ad3fe3ad3fe3a75af3b75af3b75af3b75af3b6b533c6 +USB isochronous packet + ISO Data offset: 0x00000fcc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: dbf13ddbf13ddbf13ddbf13ddc613edc613edc613edc613e9fc43e9fc43e9fc43e9fc43e101a3f101a3f101a3f101a3f1c623f1c623f1c623f1c623fb69c3fb69c3fb69c3fb69c3fd1c93fd1c93fd1c93fd1c93f63e93f63e93f63e93f63e93f64fb3f64fb3f64fb3f64fb3fc8ff3fc +USB isochronous packet + ISO Data offset: 0x0000105c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 6abb3f6abb3f6abb3f6abb3f8c893f8c893f8c893f8c893f324a3f324a3f324a3f324a3f6afd3e6afd3e6afd3e6afd3e42a33e42a33e42a33e42a33ed03b3ed03b3ed03b3ed03b3e2bc73d2bc73d2bc73d2bc73d6a453d6a453d6a453d6a453da7b63ca7b63ca7b63ca7b63cf51a3cf +USB isochronous packet + ISO Data offset: 0x000010ec + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: defb39defb39defb39defb39062e39062e39062e39062e390e54380e54380e54380e5438206e37206e37206e37206e376c7c366c7c366c7c366c7c362b7f352b7f352b7f352b7f358e76348e76348e76348e7634d26233d26233d26233d262332d44322d44322d44322d4432db1a31d +USB isochronous packet + ISO Data offset: 0x0000117c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 36612d36612d36612d36612dbc0f2cbc0f2cbc0f2cbc0f2ce7b42ae7b42ae7b42ae7b42a0451290451290451290451295be4275be4275be4275be4273a6f263a6f263a6f263a6f26f2f124f2f124f2f124f2f124d46c23d46c23d46c23d46c2331e02131e02131e02131e0215c4c205 +USB isochronous packet + ISO Data offset: 0x0000120c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: f4681bf4681bf4681bf4681bbdbb19bdbb19bdbb19bdbb191209181209181209181209184d51164d51164d51164d5116cb9414cb9414cb9414cb9414ebd312ebd312ebd312ebd3120c0f110c0f110c0f110c0f118f460f8f460f8f460f8f460fd47a0dd47a0dd47a0dd47a0d3bac0b3 +USB isochronous packet + ISO Data offset: 0x0000129c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 033306033306033306033306d25c04d25c04d25c04d25c04b58502b58502b58502b585020eae000eae000eae000eae0042d6fe42d6fe42d6fe42d6feb6fefcb6fefcb6fefcb6fefccd27fbcd27fbcd27fbcd27fbeb51f9eb51f9eb51f9eb51f9737df7737df7737df7737df7c9aaf5c +USB isochronous packet + ISO Data offset: 0x0000132c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 6d41f06d41f06d41f06d41f0da79eeda79eeda79eeda79eefeb5ecfeb5ecfeb5ecfeb5ec3bf6ea3bf6ea3bf6ea3bf6eaee3ae9ee3ae9ee3ae9ee3ae97784e77784e77784e77784e732d3e532d3e532d3e532d3e57a27e47a27e47a27e47a27e4aa81e2aa81e2aa81e2aa81e21de2e01 +USB isochronous packet + ISO Data offset: 0x000013bc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 662cdc662cdc662cdc662cdc4fa9da4fa9da4fa9da4fa9da242ed9242ed9242ed9242ed936bbd736bbd736bbd736bbd7d250d6d250d6d250d6d250d647efd447efd447efd447efd4e196d3e196d3e196d3e196d3e747d2e747d2e747d2e747d2a002d1a002d1a002d1a002d151c7cf5 +USB isochronous packet + ISO Data offset: 0x0000144c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: cc53cccc53cccc53cccc53ccf642cbf642cbf642cbf642cb503dca503dca503dca503dca1243c91243c91243c91243c97154c87154c87154c87154c8a071c7a071c7a071c7a071c7d19ac6d19ac6d19ac6d19ac630d0c530d0c530d0c530d0c5e711c5e711c5e711c5e711c51f60c41 +USB isochronous packet + ISO Data offset: 0x000014dc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 4497c24497c24497c24497c2f218c2f218c2f218c2f218c2c3a7c1c3a7c1c3a7c1c3a7c1cc43c1cc43c1cc43c1cc43c126edc026edc026edc026edc0e2a3c0e2a3c0e2a3c0e2a3c01168c01168c01168c01168c0c039c0c039c0c039c0c039c0f618c0f618c0f618c0f618c0ba05c0b +USB isochronous packet + ISO Data offset: 0x0000156c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 8f1dc08f1dc08f1dc08f1dc0ae40c0ae40c0ae40c0ae40c05971c05971c05971c05971c07eafc07eafc07eafc07eafc011fbc011fbc011fbc011fbc00254c10254c10254c10254c142bac142bac142bac142bac1ba2dc2ba2dc2ba2dc2ba2dc250aec250aec250aec250aec2e73bc3e +USB isochronous packet + ISO Data offset: 0x000015fc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 9931c59931c59931c59931c506f2c506f2c506f2c506f2c5c6bec6c6bec6c6bec6c6bec6ac97c7ac97c7ac97c7ac97c78a7cc88a7cc88a7cc88a7cc82e6dc92e6dc92e6dc92e6dc96869ca6869ca6869ca6869ca0071cb0071cb0071cb0071cbc183ccc183ccc183ccc183cc6ea1cd6 + +No. Time Source Destination Protocol Length Info + 3781 3.111650 1.15.2 host USB 519 URB_ISOCHRONOUS out + +Frame 3781: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:08:23.287700000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:08:23.287700000 UTC + Epoch Arrival Time: 1750615703.287700000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.004396000 seconds] + [Time delta from previous displayed frame: 0.004396000 seconds] + [Time since reference or first frame: 3.111650000 seconds] + Frame Number: 3781 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.15.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffffde073ee0d010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 15 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 3770] + [Time from request: 0.014124000 seconds] + Isochronous transfer start frame: 6126435 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x0000009c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000051c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005ac + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000063c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006cc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000075c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007ec + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000087c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000090c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000099c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a2c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000abc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000b4c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000bdc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000c6c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000cfc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000d8c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000e1c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000eac + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000f3c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000fcc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000105c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000010ec + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000117c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000120c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000129c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000132c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000013bc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000144c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000014dc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000156c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000015fc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) + +No. Time Source Destination Protocol Length Info + 3784 3.112256 host 1.15.2 USB 6291 URB_ISOCHRONOUS out + +Frame 3784: 6291 bytes on wire (50328 bits), 6291 bytes captured (50328 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:08:23.288306000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:08:23.288306000 UTC + Epoch Arrival Time: 1750615703.288306000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000022000 seconds] + [Time delta from previous displayed frame: 0.000022000 seconds] + [Time since reference or first frame: 3.112256000 seconds] + Frame Number: 3784 + Frame Length: 6291 bytes (50328 bits) + Capture Length: 6291 bytes (50328 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.15.2] + USBPcap pseudoheader length: 519 + IRP ID: 0xffffde073ee0d010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 15 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 5772 + [Response in: 3795] + Isochronous transfer start frame: 6126450 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: ac39d1ac39d1ac39d1ac39d1a680d2a680d2a680d2a680d246d1d346d1d346d1d346d1d3492bd5492bd5492bd5492bd5608ed6608ed6608ed6608ed642fad742fad742fad742fad7a26ed9a26ed9a26ed9a26ed933ebda33ebda33ebda33ebdaa26fdca26fdca26fdca26fdc9cfbdd9 +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 87c9e287c9e287c9e287c9e27470e47470e47470e47470e42a1de62a1de62a1de62a1de65dcfe75dcfe75dcfe75dcfe7b286e9b286e9b286e9b286e9cb42ebcb42ebcb42ebcb42eb4b03ed4b03ed4b03ed4b03edd2c7eed2c7eed2c7eed2c7ee0190f00190f00190f00190f0775bf27 +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: b0cdf7b0cdf7b0cdf7b0cdf784a2f984a2f984a2f984a2f99c78fb9c78fb9c78fb9c78fbaa4ffdaa4ffdaa4ffdaa4ffd4a27ff4a27ff4a27ff4a27ff17ff0017ff0017ff0017ff00add602add602add602add602a9ad04a9ad04a9ad04a9ad04a78306a78306a78306a783064358084 +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: eec90deec90deec90deec90d3a950f3a950f3a950f3a950f205d11205d11205d11205d115521135521135521135521137ae1147ae1147ae1147ae114319d16319d16319d16319d161c54181c54181c54181c5418dd051add051add051add051a17b21b17b21b17b21b17b21b72581d7 +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: c82422c82422c82422c824222eb0232eb0232eb0232eb0230c34250c34250c34250c3425f2af26f2af26f2af26f2af26a12328a12328a12328a12328cb8e29cb8e29cb8e29cb8e2924f12a24f12a24f12a24f12a614a2c614a2c614a2c614a2c369a2d369a2d369a2d369a2d5ee02e5 +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 227632227632227632227632f79233f79233f79233f79233dfa434dfa434dfa434dfa43488ab3588ab3588ab3588ab35cea636cea636cea636cea6367a96377a96377a96377a96375c7a385c7a385c7a385c7a38425239425239425239425239fd1d3afd1d3afd1d3afd1d3a62dd3a6 +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 0dd03c0dd03c0dd03c0dd03ca45c3da45c3da45c3da45c3d35dc3d35dc3d35dc3d35dc3d944e3e944e3e944e3e944e3ebbb33ebbb33ebbb33ebbb33e920b3f920b3f920b3f920b3f0c563f0c563f0c563f0c563f12933f12933f12933f12933f9dc23f9dc23f9dc23f9dc23f9de43f9 +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 3bf93f3bf93f3bf93f3bf93ff4e43ff4e43ff4e43ff4e43f1bc33f1bc33f1bc33f1bc33faa933faa933faa933faa933fba563fba563fba563fba563f5a0c3f5a0c3f5a0c3f5a0c3f9bb43e9bb43e9bb43e9bb43e8d4f3e8d4f3e8d4f3e8d4f3e48dd3d48dd3d48dd3d48dd3dde5d3dd +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x0000009c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: fe913bfe913bfe913bfe913b3edf3a3edf3a3edf3a3edf3afe1f3afe1f3afe1f3afe1f3a565439565439565439565439867c38867c38867c38867c38ba9837ba9837ba9837ba983722a93622a93622a93622a936f2ad35f2ad35f2ad35f2ad355fa7345fa7345fa7345fa7349e95339 +USB isochronous packet + ISO Data offset: 0x0000051c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 8ae32e8ae32e8ae32e8ae32e809d2d809d2d809d2d809d2db34d2cb34d2cb34d2cb34d2c88f42a88f42a88f42a88f42a3f92293f92293f92293f922924272824272824272824272884b32684b32684b32684b326b03725b03725b03725b03725f5b323f5b323f5b323f5b323a52822a +USB isochronous packet + ISO Data offset: 0x000005ac + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 905c1d905c1d905c1d905c1d49b61b49b61b49b61b49b61b0a0a1a0a0a1a0a0a1a0a0a1a53581853581853581853581870a11670a11670a11670a116c1e514c1e514c1e514c1e514a42513a42513a42513a425137661117661117661117661119a990f9a990f9a990f9a990f6cce0d6 +USB isochronous packet + ISO Data offset: 0x0000063c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: d95c08d95c08d95c08d95c0842880642880642880642880646b20446b20446b20446b20435db0235db0235db0235db029f03019f03019f03019f0301d22bffd22bffd22bffd22bff3354fd3354fd3354fd3354fd257dfb257dfb257dfb257dfb0ca7f90ca7f90ca7f90ca7f94dd2f74 +USB isochronous packet + ISO Data offset: 0x000006cc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 0160f20160f20160f20160f28294f08294f08294f08294f049ccee49ccee49ccee49cceea207eda207eda207eda207ed1a47eb1a47eb1a47eb1a47ebf98ae9f98ae9f98ae9f98ae99bd3e79bd3e79bd3e79bd3e76021e66021e66021e66021e6a174e4a174e4a174e4a174e4bacde2b +USB isochronous packet + ISO Data offset: 0x0000075c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 95ffdd95ffdd95ffdd95ffdd8373dc8373dc8373dc8373dcfceedafceedafceedafceeda4472d94472d94472d94472d9d2fdd7d2fdd7d2fdd7d2fdd7de91d6de91d6de91d6de91d6b82ed5b82ed5b82ed5b82ed5a6d4d3a6d4d3a6d4d3a6d4d3f383d2f383d2f383d2f383d2e83cd1e +USB isochronous packet + ISO Data offset: 0x000007ec + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 5aa4cd5aa4cd5aa4cd5aa4cd8986cc8986cc8986cc8986cca573cba573cba573cba573cbea6bcaea6bcaea6bcaea6bca8a6fc98a6fc98a6fc98a6fc9cd7ec8cd7ec8cd7ec8cd7ec8da99c7da99c7da99c7da99c7dec0c6dec0c6dec0c6dec0c608f4c508f4c508f4c508f4c58233c58 +USB isochronous packet + ISO Data offset: 0x0000087c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 673dc3673dc3673dc3673dc3a6afc2a6afc2a6afc2a6afc2e52ec2e52ec2e52ec2e52ec246bbc146bbc146bbc146bbc1df54c1df54c1df54c1df54c1d2fbc0d2fbc0d2fbc0d2fbc024b0c024b0c024b0c024b0c0e871c0e871c0e871c0e871c02641c02641c02641c02641c0ea1dc0e +USB isochronous packet + ISO Data offset: 0x0000090c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: a205c0a205c0a205c0a205c0b018c0b018c0b018c0b018c04e39c04e39c04e39c04e39c07667c07667c07667c07667c024a3c024a3c024a3c024a3c04decc04decc04decc04decc0da42c1da42c1da42c1da42c1b7a6c1b7a6c1b7a6c1b7a6c1ce17c2ce17c2ce17c2ce17c20796c20 +USB isochronous packet + ISO Data offset: 0x0000099c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 705ec4705ec4705ec4705ec41010c51010c51010c51010c530cec530cec530cec530cec5a998c6a998c6a998c6a998c6556fc7556fc7556fc7556fc71852c81852c81852c81852c8a240c9a240c9a240c9a240c9ca3acaca3acaca3acaca3aca5b40cb5b40cb5b40cb5b40cb1d51cc1 +USB isochronous packet + ISO Data offset: 0x00000a2c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 40c4cf40c4cf40c4cf40c4cf6effd06effd06effd06effd09544d29544d29544d29544d27193d37193d37193d37193d3bcebd4bcebd4bcebd4bcebd4434dd6434dd6434dd6434dd698b7d798b7d798b7d798b7d7772ad9772ad9772ad9772ad995a5da95a5da95a5da95a5da9e28dc9 +USB isochronous packet + ISO Data offset: 0x00000abc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 0ddee00ddee00ddee00ddee0877de2877de2877de2877de24323e44323e44323e44323e4e9cee5e9cee5e9cee5e9cee51f80e71f80e71f80e71f80e79f36e99f36e99f36e99f36e9e5f1eae5f1eae5f1eae5f1eaa2b1eca2b1eca2b1eca2b1ec7775ee7775ee7775ee7775ee053df00 +USB isochronous packet + ISO Data offset: 0x00000b4c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 38a6f538a6f538a6f538a6f5dc78f7dc78f7dc78f7dc78f7504df9504df9504df9504df92f23fb2f23fb2f23fb2f23fb17fafc17fafc17fafc17fafca4d1fea4d1fea4d1fea4d1fe87a90087a90087a90087a9002f81022f81022f81022f81024e58044e58044e58044e5804822e068 +USB isochronous packet + ISO Data offset: 0x00000bdc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: aea70baea70baea70baea70b4e760d4e760d4e760d4e760d13420f13420f13420f13420f9b0a119b0a119b0a119b0a1186cf1286cf1286cf1286cf12759014759014759014759014174d16174d16174d16174d16e60418e60418e60418e604189bb7199bb7199bb7199bb719db641bd +USB isochronous packet + ISO Data offset: 0x00000c6c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 56482056482056482056482040dc2140dc2140dc2140dc21fa6823fa6823fa6823fa682331ee2431ee2431ee2431ee24936b26936b26936b26936b26cee027cee027cee027cee0279f4d299f4d299f4d299f4d2996b12a96b12a96b12a96b12a7b0c2c7b0c2c7b0c2c7b0c2c065e2d0 +USB isochronous packet + ISO Data offset: 0x00000cfc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: d61731d61731d61731d617314641324641324641324641320c60330c60330c60330c6033ee7334ee7334ee7334ee7334ad7c35ad7c35ad7c35ad7c35137a36137a36137a36137a36f26b37f26b37f26b37f26b37fa5138fa5138fa5138fa51380a2c390a2c390a2c390a2c39f7f939f +USB isochronous packet + ISO Data offset: 0x00000d8c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 54193c54193c54193c54193c20b53c20b53c20b53c20b53c0a443d0a443d0a443d0a443df4c53df4c53df4c53df4c53dc53a3ec53a3ec53a3ec53a3e60a23e60a23e60a23e60a23eb1fc3eb1fc3eb1fc3eb1fc3e9a493f9a493f9a493f9a493f10893f10893f10893f10893f05bb3f0 +USB isochronous packet + ISO Data offset: 0x00000e1c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: aeff3faeff3faeff3faeff3f6afb3f6afb3f6afb3f6afb3f92e93f92e93f92e93f92e93f2bca3f2bca3f2bca3f2bca3f3c9d3f3c9d3f3c9d3f3c9d3fcc623fcc623fcc623fcc623fe81a3fe81a3fe81a3fe81a3f96c53e96c53e96c53e96c53eec623eec623eec623eec623e02f33d0 +USB isochronous packet + ISO Data offset: 0x00000eac + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: da543cda543cda543cda543c08b13b08b13b08b13b08b13b8c003b8c003b8c003b8c003b88433a88433a88433a88433a2a7a392a7a392a7a392a7a3999a43899a43899a43899a43800c33700c33700c33700c33785d53685d53685d53685d5366adc356adc356adc356adc35ddd734d +USB isochronous packet + ISO Data offset: 0x00000f3c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: db8731db8731db8731db8731d95730d95730d95730d95730941d2f941d2f941d2f941d2f4fd92d4fd92d4fd92d4fd92d508b2c508b2c508b2c508b2cde332bde332bde332bde332b40d32940d32940d32940d329c06928c06928c06928c0692894f72694f72694f72694f726337d253 +USB isochronous packet + ISO Data offset: 0x00000fcc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 9edf209edf209edf209edf205d471f5d471f5d471f5d471f79a81d79a81d79a81d79a81d4a031c4a031c4a031c4a031c2a581a2a581a2a581a2a581a71a71871a71871a71871a7187ef1167ef1167ef1167ef116ab3615ab3615ab3615ab3615407713407713407713407713c6b311c +USB isochronous packet + ISO Data offset: 0x0000105c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 53540c53540c53540c53540c1a840a1a840a1a840a1a840aa6b108a6b108a6b108a6b1085add065add065add065add06980705980705980705980705c53003c53003c53003c530034559014559014559014559017a81ff7a81ff7a81ff7a81ffb4a9fdb4a9fdb4a9fdb4a9fd84d2fb8 +USB isochronous packet + ISO Data offset: 0x000010ec + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: d653f6d653f6d653f6d653f68882f48882f48882f48882f4aab3f2aab3f2aab3f2aab3f2a1e7f0a1e7f0a1e7f0a1e7f0ca1eefca1eefca1eefca1eef8859ed8859ed8859ed8859ed3a98eb3a98eb3a98eb3a98eb40dbe940dbe940dbe940dbe9fa22e8fa22e8fa22e8fa22e8b46fe6b +USB isochronous packet + ISO Data offset: 0x0000117c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 1f78e11f78e11f78e11f78e1c1dcdfc1dcdfc1dcdfc1dcdf3548de3548de3548de3548ded2badcd2badcd2badcd2badcea34dbea34dbea34dbea34dbd1b6d9d1b6d9d1b6d9d1b6d9d640d8d640d8d640d8d640d84bd3d64bd3d64bd3d64bd3d67c6ed57c6ed57c6ed57c6ed5ac12d4a +USB isochronous packet + ISO Data offset: 0x0000120c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 8b38d08b38d08b38d08b38d0c003cfc003cfc003cfc003cf5bd9cd5bd9cd5bd9cd5bd9cd9ab9cc9ab9cc9ab9cc9ab9ccbca4cbbca4cbbca4cbbca4cbfa9acafa9acafa9acafa9aca8b9cc98b9cc98b9cc98b9cc9a5a9c8a5a9c8a5a9c8a5a9c87ec2c77ec2c77ec2c77ec2c742e7c64 +USB isochronous packet + ISO Data offset: 0x0000129c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 2d9fc42d9fc42d9fc42d9fc47af5c37af5c37af5c37af5c38358c38358c38358c38358c36cc8c26cc8c26cc8c26cc8c25545c25545c25545c25545c256cfc156cfc156cfc156cfc18a66c18a66c18a66c18a66c1040bc1040bc1040bc1040bc1d8bcc0d8bcc0d8bcc0d8bcc01f7cc01 +USB isochronous packet + ISO Data offset: 0x0000132c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 260bc0260bc0260bc0260bc09a00c09a00c09a00c09a00c0a403c0a403c0a403c0a403c03f14c03f14c03f14c03f14c06e32c06e32c06e32c06e32c0285ec0285ec0285ec0285ec06197c06197c06197c06197c00edec00edec00edec00edec02132c12132c12132c12132c18893c18 +USB isochronous packet + ISO Data offset: 0x000013bc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 0c07c30c07c30c07c30c07c3e89cc3e89cc3e89cc3e89cc3943fc4943fc4943fc4943fc4eeeec4eeeec4eeeec4eeeec4d1aac5d1aac5d1aac5d1aac51673c61673c61673c61673c69247c79247c79247c79247c71628c81628c81628c81628c87314c97314c97314c97314c9780cca7 +USB isochronous packet + ISO Data offset: 0x0000144c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 8c38cd8c38cd8c38cd8c38cd185dce185dce185dce185dce2c8ccf2c8ccf2c8ccf2c8ccf86c5d086c5d086c5d086c5d0e608d2e608d2e608d2e608d20a56d30a56d30a56d30a56d3a7acd4a7acd4a7acd4a7acd4750cd6750cd6750cd6750cd62c75d72c75d72c75d72c75d77ce6d87 +USB isochronous packet + ISO Data offset: 0x000014dc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 1c6bdd1c6bdd1c6bdd1c6bddbffbdebffbdebffbdebffbde6493e06493e06493e06493e0b331e2b331e2b331e2b331e255d6e355d6e355d6e355d6e3f280e5f280e5f280e5f280e52e31e72e31e72e31e72e31e7ade6e8ade6e8ade6e8ade6e814a1ea14a1ea14a1ea14a1ea0460ec0 +USB isochronous packet + ISO Data offset: 0x0000156c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 70b4f170b4f170b4f170b4f1cc81f3cc81f3cc81f3cc81f3cf51f5cf51f5cf51f5cf51f51424f71424f71424f71424f73bf8f83bf8f83bf8f83bf8f8e0cdfae0cdfae0cdfae0cdfa9fa4fc9fa4fc9fa4fc9fa4fc157cfe157cfe157cfe157cfedd5300dd5300dd5300dd5300942b029 +USB isochronous packet + ISO Data offset: 0x000015fc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (irrelevant) + ISO Data […]: 79ae0779ae0779ae0779ae07ff8109ff8109ff8109ff810980530b80530b80530b80530b9a220d9a220d9a220d9a220de9ee0ee9ee0ee9ee0ee9ee0e0eb8100eb8100eb8100eb810a67d12a67d12a67d12a67d12523f14523f14523f14523f14b2fc15b2fc15b2fc15b2fc1569b5176 + +No. Time Source Destination Protocol Length Info + 3785 3.116653 1.15.2 host USB 519 URB_ISOCHRONOUS out + +Frame 3785: 519 bytes on wire (4152 bits), 519 bytes captured (4152 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 20:08:23.292703000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 18:08:23.292703000 UTC + Epoch Arrival Time: 1750615703.292703000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.004397000 seconds] + [Time delta from previous displayed frame: 0.004397000 seconds] + [Time since reference or first frame: 3.116653000 seconds] + Frame Number: 3785 + Frame Length: 519 bytes (4152 bits) + Capture Length: 519 bytes (4152 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.15.2] + [Destination: host] + USBPcap pseudoheader length: 519 + IRP ID: 0xffffde073ea38560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ISOCH_TRANSFER (0x000a) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 15 + Endpoint: 0x02, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0010 = Endpoint number: 2 + URB transfer type: URB_ISOCHRONOUS (0x00) + Packet Data Length: 0 + [Request in: 3775] + [Time from request: 0.014326000 seconds] + Isochronous transfer start frame: 6126440 + Isochronous transfer number of packets: 40 + Isochronous transfer error count: 0 +USB isochronous packet + ISO Data offset: 0x00000000 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000090 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000120 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000001b0 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000240 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000002d0 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000360 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000003f0 + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000480 + ISO Data length: 0x0000009c (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000051c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000005ac + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000063c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000006cc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000075c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000007ec + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000087c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000090c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000099c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000a2c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000abc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000b4c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000bdc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000c6c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000cfc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000d8c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000e1c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000eac + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000f3c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x00000fcc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000105c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000010ec + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000117c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000120c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000129c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000132c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000013bc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000144c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000014dc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x0000156c + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) +USB isochronous packet + ISO Data offset: 0x000015fc + ISO Data length: 0x00000090 (not used) + ISO USBD status: USBD_STATUS_SUCCESS (0x00000000) (relevant) diff --git a/reverse_eng_dataset/44100k_playback_sample_rate_change_event_tascam144mk2.txt b/reverse_eng_dataset/44100k_playback_sample_rate_change_event_tascam144mk2.txt new file mode 100644 index 0000000..3b6946c --- /dev/null +++ b/reverse_eng_dataset/44100k_playback_sample_rate_change_event_tascam144mk2.txt @@ -0,0 +1,2846 @@ +No. Time Source Destination Protocol Length Info + 4287 2.208609 host 1.1.0 USB 36 SET CONFIGURATION Request + +Frame 4287: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.645161000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.645161000 UTC + Epoch Arrival Time: 1750609933.645161000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000474000 seconds] + [Time delta from previous displayed frame: 0.014473000 seconds] + [Time since reference or first frame: 2.208609000 seconds] + Frame Number: 4287 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0738dbda20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4288] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x00 + 0... .... = Direction: Host-to-device + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: SET CONFIGURATION (9) + bConfigurationValue: 0 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 4288 2.208971 1.1.0 host USB 28 SET CONFIGURATION Response + +Frame 4288: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.645523000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.645523000 UTC + Epoch Arrival Time: 1750609933.645523000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000362000 seconds] + [Time delta from previous displayed frame: 0.000362000 seconds] + [Time since reference or first frame: 2.208971000 seconds] + Frame Number: 4288 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0738dbda20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4287] + [Time from request: 0.000362000 seconds] + Control transfer stage: Complete (3) + +No. Time Source Destination Protocol Length Info + 4289 2.208973 host 1.1.0 USB 36 GET DESCRIPTOR Request DEVICE + +Frame 4289: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.645525000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.645525000 UTC + Epoch Arrival Time: 1750609933.645525000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000002000 seconds] + [Time delta from previous displayed frame: 0.000002000 seconds] + [Time since reference or first frame: 2.208973000 seconds] + Frame Number: 4289 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0738dbda20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4290] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: DEVICE (0x01) + Language Id: no language specified (0x0000) + wLength: 18 + +No. Time Source Destination Protocol Length Info + 4290 2.209170 1.1.0 host USB 46 GET DESCRIPTOR Response DEVICE + +Frame 4290: 46 bytes on wire (368 bits), 46 bytes captured (368 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.645722000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.645722000 UTC + Epoch Arrival Time: 1750609933.645722000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000197000 seconds] + [Time delta from previous displayed frame: 0.000197000 seconds] + [Time since reference or first frame: 2.209170000 seconds] + Frame Number: 4290 + Frame Length: 46 bytes (368 bits) + Capture Length: 46 bytes (368 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0738dbda20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 18 + [Request in: 4289] + [Time from request: 0.000197000 seconds] + Control transfer stage: Complete (3) +DEVICE DESCRIPTOR + bLength: 18 + bDescriptorType: 0x01 (DEVICE) + bcdUSB: 0x0200 + bDeviceClass: Vendor Specific (0xff) + bDeviceSubClass: 255 + bDeviceProtocol: 255 + bMaxPacketSize0: 64 + idVendor: TEAC Corp. (0x0644) + idProduct: Unknown (0x8020) + bcdDevice: 0x0100 + iManufacturer: 1 + iProduct: 2 + iSerialNumber: 3 + bNumConfigurations: 1 + +No. Time Source Destination Protocol Length Info + 4293 2.210567 host 1.1.0 USB 36 URB_CONTROL in + +Frame 4293: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.647119000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.647119000 UTC + Epoch Arrival Time: 1750609933.647119000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000432000 seconds] + [Time delta from previous displayed frame: 0.001397000 seconds] + [Time since reference or first frame: 2.210567000 seconds] + Frame Number: 4293 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a5d9560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4294] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 86 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 15 + +No. Time Source Destination Protocol Length Info + 4294 2.210692 1.1.0 host USB 43 URB_CONTROL in + +Frame 4294: 43 bytes on wire (344 bits), 43 bytes captured (344 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.647244000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.647244000 UTC + Epoch Arrival Time: 1750609933.647244000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000125000 seconds] + [Time delta from previous displayed frame: 0.000125000 seconds] + [Time since reference or first frame: 2.210692000 seconds] + Frame Number: 4294 + Frame Length: 43 bytes (344 bits) + Capture Length: 43 bytes (344 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a5d9560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 15 + [Request in: 4293] + [Time from request: 0.000125000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 31020356322e30332020202000ffff + +No. Time Source Destination Protocol Length Info + 4295 2.210698 host 1.1.0 USB 36 URB_CONTROL in + +Frame 4295: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.647250000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.647250000 UTC + Epoch Arrival Time: 1750609933.647250000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000006000 seconds] + [Time delta from previous displayed frame: 0.000006000 seconds] + [Time since reference or first frame: 2.210698000 seconds] + Frame Number: 4295 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a5d9560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4296] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 86 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 15 + +No. Time Source Destination Protocol Length Info + 4296 2.210808 1.1.0 host USB 43 URB_CONTROL in + +Frame 4296: 43 bytes on wire (344 bits), 43 bytes captured (344 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.647360000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.647360000 UTC + Epoch Arrival Time: 1750609933.647360000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000110000 seconds] + [Time delta from previous displayed frame: 0.000110000 seconds] + [Time since reference or first frame: 2.210808000 seconds] + Frame Number: 4296 + Frame Length: 43 bytes (344 bits) + Capture Length: 43 bytes (344 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a5d9560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 15 + [Request in: 4295] + [Time from request: 0.000110000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 31020356322e30332020202000ffff + +No. Time Source Destination Protocol Length Info + 4297 2.210813 host 1.1.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 4297: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.647365000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.647365000 UTC + Epoch Arrival Time: 1750609933.647365000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000005000 seconds] + [Time delta from previous displayed frame: 0.000005000 seconds] + [Time since reference or first frame: 2.210813000 seconds] + Frame Number: 4297 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a5d9560 + IRP USBD_STATUS: Unknown (0xffffde07) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4298] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x01 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 4298 2.210923 1.1.0 host USB 42 GET DESCRIPTOR Response STRING + +Frame 4298: 42 bytes on wire (336 bits), 42 bytes captured (336 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.647475000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.647475000 UTC + Epoch Arrival Time: 1750609933.647475000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000110000 seconds] + [Time delta from previous displayed frame: 0.000110000 seconds] + [Time since reference or first frame: 2.210923000 seconds] + Frame Number: 4298 + Frame Length: 42 bytes (336 bits) + Capture Length: 42 bytes (336 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a5d9560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 14 + [Request in: 4297] + [Time from request: 0.000110000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 14 + bDescriptorType: 0x03 (STRING) + bString: TASCAM + +No. Time Source Destination Protocol Length Info + 4299 2.210931 host 1.1.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 4299: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.647483000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.647483000 UTC + Epoch Arrival Time: 1750609933.647483000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000008000 seconds] + [Time delta from previous displayed frame: 0.000008000 seconds] + [Time since reference or first frame: 2.210931000 seconds] + Frame Number: 4299 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a5d9560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4300] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x02 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 4300 2.211067 1.1.0 host USB 52 GET DESCRIPTOR Response STRING + +Frame 4300: 52 bytes on wire (416 bits), 52 bytes captured (416 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.647619000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.647619000 UTC + Epoch Arrival Time: 1750609933.647619000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000136000 seconds] + [Time delta from previous displayed frame: 0.000136000 seconds] + [Time since reference or first frame: 2.211067000 seconds] + Frame Number: 4300 + Frame Length: 52 bytes (416 bits) + Capture Length: 52 bytes (416 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a5d9560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 24 + [Request in: 4299] + [Time from request: 0.000136000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 24 + bDescriptorType: 0x03 (STRING) + bString: US-144 MKII + +No. Time Source Destination Protocol Length Info + 4301 2.211073 host 1.1.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 4301: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.647625000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.647625000 UTC + Epoch Arrival Time: 1750609933.647625000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000006000 seconds] + [Time delta from previous displayed frame: 0.000006000 seconds] + [Time since reference or first frame: 2.211073000 seconds] + Frame Number: 4301 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4302] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x03 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 4302 2.211212 1.1.0 host USB 62 GET DESCRIPTOR Response STRING + +Frame 4302: 62 bytes on wire (496 bits), 62 bytes captured (496 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.647764000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.647764000 UTC + Epoch Arrival Time: 1750609933.647764000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000139000 seconds] + [Time delta from previous displayed frame: 0.000139000 seconds] + [Time since reference or first frame: 2.211212000 seconds] + Frame Number: 4302 + Frame Length: 62 bytes (496 bits) + Capture Length: 62 bytes (496 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 34 + [Request in: 4301] + [Time from request: 0.000139000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 34 + bDescriptorType: 0x03 (STRING) + bString: no serial number + +No. Time Source Destination Protocol Length Info + 4303 2.211218 host 1.1.0 USB 36 GET DESCRIPTOR Request CONFIGURATION + +Frame 4303: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.647770000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.647770000 UTC + Epoch Arrival Time: 1750609933.647770000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000006000 seconds] + [Time delta from previous displayed frame: 0.000006000 seconds] + [Time since reference or first frame: 2.211218000 seconds] + Frame Number: 4303 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4304] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: CONFIGURATION (0x02) + Language Id: no language specified (0x0000) + wLength: 1033 + +No. Time Source Destination Protocol Length Info + 4304 2.211498 1.1.0 host USB 108 GET DESCRIPTOR Response CONFIGURATION + +Frame 4304: 108 bytes on wire (864 bits), 108 bytes captured (864 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.648050000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.648050000 UTC + Epoch Arrival Time: 1750609933.648050000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000280000 seconds] + [Time delta from previous displayed frame: 0.000280000 seconds] + [Time since reference or first frame: 2.211498000 seconds] + Frame Number: 4304 + Frame Length: 108 bytes (864 bits) + Capture Length: 108 bytes (864 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 80 + [Request in: 4303] + [Time from request: 0.000280000 seconds] + Control transfer stage: Complete (3) +CONFIGURATION DESCRIPTOR + bLength: 9 + bDescriptorType: 0x02 (CONFIGURATION) + wTotalLength: 80 + bNumInterfaces: 2 + bConfigurationValue: 1 + iConfiguration: 0 + Configuration bmAttributes: 0x80 NOT SELF-POWERED NO REMOTE-WAKEUP + 1... .... = Must be 1: Must be 1 for USB 1.1 and higher + .0.. .... = Self-Powered: This device is powered from the USB bus + ..0. .... = Remote Wakeup: This device does NOT support remote wakeup + bMaxPower: 240 (480mA) +INTERFACE DESCRIPTOR (0.0): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 0 + bAlternateSetting: 0 + bNumEndpoints: 0 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +INTERFACE DESCRIPTOR (0.1): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 0 + bAlternateSetting: 1 + bNumEndpoints: 3 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x02 OUT Endpoint:2 + 0... .... = Direction: OUT Endpoint + .... 0010 = Endpoint Number: 0x2 + bmAttributes: 0x05 + .... ..01 = Transfertype: Isochronous-Transfer (0x1) + .... 01.. = Synchronisationtype: Asynchronous (0x1) + ..00 .... = Behaviourtype: Data-Endpoint (0x0) + wMaxPacketSize: 156 + ...0 0... .... .... = Transactions per microframe: 1 (0) + .... .000 1001 1100 = Maximum Packet Size: 156 + bInterval: 1 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x83 IN Endpoint:3 + 1... .... = Direction: IN Endpoint + .... 0011 = Endpoint Number: 0x3 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 4 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x04 OUT Endpoint:4 + 0... .... = Direction: OUT Endpoint + .... 0100 = Endpoint Number: 0x4 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 4 +INTERFACE DESCRIPTOR (1.0): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 1 + bAlternateSetting: 0 + bNumEndpoints: 0 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +INTERFACE DESCRIPTOR (1.1): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 1 + bAlternateSetting: 1 + bNumEndpoints: 2 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x81 IN Endpoint:1 + 1... .... = Direction: IN Endpoint + .... 0001 = Endpoint Number: 0x1 + bmAttributes: 0x05 + .... ..01 = Transfertype: Isochronous-Transfer (0x1) + .... 01.. = Synchronisationtype: Asynchronous (0x1) + ..00 .... = Behaviourtype: Data-Endpoint (0x0) + wMaxPacketSize: 64 + ...0 0... .... .... = Transactions per microframe: 1 (0) + .... .000 0100 0000 = Maximum Packet Size: 64 + bInterval: 4 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x86 IN Endpoint:6 + 1... .... = Direction: IN Endpoint + .... 0110 = Endpoint Number: 0x6 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 1 + +No. Time Source Destination Protocol Length Info + 4309 2.214485 host 1.1.0 USB 36 GET DESCRIPTOR Request DEVICE + +Frame 4309: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.651037000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.651037000 UTC + Epoch Arrival Time: 1750609933.651037000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000350000 seconds] + [Time delta from previous displayed frame: 0.002987000 seconds] + [Time since reference or first frame: 2.214485000 seconds] + Frame Number: 4309 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: Unknown (0xffffbb81) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4310] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: DEVICE (0x01) + Language Id: no language specified (0x0000) + wLength: 18 + +No. Time Source Destination Protocol Length Info + 4310 2.214623 1.1.0 host USB 46 GET DESCRIPTOR Response DEVICE + +Frame 4310: 46 bytes on wire (368 bits), 46 bytes captured (368 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.651175000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.651175000 UTC + Epoch Arrival Time: 1750609933.651175000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000138000 seconds] + [Time delta from previous displayed frame: 0.000138000 seconds] + [Time since reference or first frame: 2.214623000 seconds] + Frame Number: 4310 + Frame Length: 46 bytes (368 bits) + Capture Length: 46 bytes (368 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 18 + [Request in: 4309] + [Time from request: 0.000138000 seconds] + Control transfer stage: Complete (3) +DEVICE DESCRIPTOR + bLength: 18 + bDescriptorType: 0x01 (DEVICE) + bcdUSB: 0x0200 + bDeviceClass: Vendor Specific (0xff) + bDeviceSubClass: 255 + bDeviceProtocol: 255 + bMaxPacketSize0: 64 + idVendor: TEAC Corp. (0x0644) + idProduct: Unknown (0x8020) + bcdDevice: 0x0100 + iManufacturer: 1 + iProduct: 2 + iSerialNumber: 3 + bNumConfigurations: 1 + +No. Time Source Destination Protocol Length Info + 4311 2.214627 host 1.1.0 USB 36 SET CONFIGURATION Request + +Frame 4311: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.651179000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.651179000 UTC + Epoch Arrival Time: 1750609933.651179000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000004000 seconds] + [Time delta from previous displayed frame: 0.000004000 seconds] + [Time since reference or first frame: 2.214627000 seconds] + Frame Number: 4311 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4484] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x00 + 0... .... = Direction: Host-to-device + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: SET CONFIGURATION (9) + bConfigurationValue: 1 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 4484 2.424904 1.1.0 host USB 28 SET CONFIGURATION Response + +Frame 4484: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.861456000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.861456000 UTC + Epoch Arrival Time: 1750609933.861456000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000731000 seconds] + [Time delta from previous displayed frame: 0.210277000 seconds] + [Time since reference or first frame: 2.424904000 seconds] + Frame Number: 4484 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4311] + [Time from request: 0.210277000 seconds] + Control transfer stage: Complete (3) + +No. Time Source Destination Protocol Length Info + 4535 2.474810 host 1.1.0 USB 36 URB_CONTROL in + +Frame 4535: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.911362000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.911362000 UTC + Epoch Arrival Time: 1750609933.911362000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000660000 seconds] + [Time delta from previous displayed frame: 0.049906000 seconds] + [Time since reference or first frame: 2.474810000 seconds] + Frame Number: 4535 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4536] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 1 + +No. Time Source Destination Protocol Length Info + 4536 2.474986 1.1.0 host USB 29 URB_CONTROL in + +Frame 4536: 29 bytes on wire (232 bits), 29 bytes captured (232 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.911538000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.911538000 UTC + Epoch Arrival Time: 1750609933.911538000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000176000 seconds] + [Time delta from previous displayed frame: 0.000176000 seconds] + [Time since reference or first frame: 2.474986000 seconds] + Frame Number: 4536 + Frame Length: 29 bytes (232 bits) + Capture Length: 29 bytes (232 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 1 + [Request in: 4535] + [Time from request: 0.000176000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 30 + +No. Time Source Destination Protocol Length Info + 4537 2.474999 host 1.1.0 USB 36 URB_CONTROL in + +Frame 4537: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.911551000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.911551000 UTC + Epoch Arrival Time: 1750609933.911551000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000013000 seconds] + [Time delta from previous displayed frame: 0.000013000 seconds] + [Time since reference or first frame: 2.474999000 seconds] + Frame Number: 4537 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4538] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 0 (0x0000) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 4538 2.475178 1.1.0 host USB 31 URB_CONTROL in + +Frame 4538: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.911730000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.911730000 UTC + Epoch Arrival Time: 1750609933.911730000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000179000 seconds] + [Time delta from previous displayed frame: 0.000179000 seconds] + [Time since reference or first frame: 2.475178000 seconds] + Frame Number: 4538 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 4537] + [Time from request: 0.000179000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 80bb00 + +No. Time Source Destination Protocol Length Info + 4539 2.475185 host 1.1.0 USB 39 URB_CONTROL out + +Frame 4539: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.911737000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.911737000 UTC + Epoch Arrival Time: 1750609933.911737000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000007000 seconds] + [Time delta from previous displayed frame: 0.000007000 seconds] + [Time since reference or first frame: 2.475185000 seconds] + Frame Number: 4539 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 4540] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 44ac00 + +No. Time Source Destination Protocol Length Info + 4540 2.475308 1.1.0 host USB 28 URB_CONTROL out + +Frame 4540: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.911860000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.911860000 UTC + Epoch Arrival Time: 1750609933.911860000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000123000 seconds] + [Time delta from previous displayed frame: 0.000123000 seconds] + [Time since reference or first frame: 2.475308000 seconds] + Frame Number: 4540 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4539] + [Time from request: 0.000123000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 4541 2.475313 host 1.1.0 USB 39 URB_CONTROL out + +Frame 4541: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.911865000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.911865000 UTC + Epoch Arrival Time: 1750609933.911865000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000005000 seconds] + [Time delta from previous displayed frame: 0.000005000 seconds] + [Time since reference or first frame: 2.475313000 seconds] + Frame Number: 4541 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 4542] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 44ac00 + +No. Time Source Destination Protocol Length Info + 4542 2.475453 1.1.0 host USB 28 URB_CONTROL out + +Frame 4542: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.912005000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.912005000 UTC + Epoch Arrival Time: 1750609933.912005000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000140000 seconds] + [Time delta from previous displayed frame: 0.000140000 seconds] + [Time since reference or first frame: 2.475453000 seconds] + Frame Number: 4542 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4541] + [Time from request: 0.000140000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 4545 2.477954 host 1.1.0 USB 39 URB_CONTROL out + +Frame 4545: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.914506000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.914506000 UTC + Epoch Arrival Time: 1750609933.914506000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001809000 seconds] + [Time delta from previous displayed frame: 0.002501000 seconds] + [Time since reference or first frame: 2.477954000 seconds] + Frame Number: 4545 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 4546] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 44ac00 + +No. Time Source Destination Protocol Length Info + 4546 2.478076 1.1.0 host USB 28 URB_CONTROL out + +Frame 4546: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.914628000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.914628000 UTC + Epoch Arrival Time: 1750609933.914628000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000122000 seconds] + [Time delta from previous displayed frame: 0.000122000 seconds] + [Time since reference or first frame: 2.478076000 seconds] + Frame Number: 4546 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4545] + [Time from request: 0.000122000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 4547 2.478080 host 1.1.0 USB 39 URB_CONTROL out + +Frame 4547: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.914632000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.914632000 UTC + Epoch Arrival Time: 1750609933.914632000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000004000 seconds] + [Time delta from previous displayed frame: 0.000004000 seconds] + [Time since reference or first frame: 2.478080000 seconds] + Frame Number: 4547 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 4550] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 44ac00 + +No. Time Source Destination Protocol Length Info + 4550 2.478237 1.1.0 host USB 28 URB_CONTROL out + +Frame 4550: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.914789000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.914789000 UTC + Epoch Arrival Time: 1750609933.914789000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000100000 seconds] + [Time delta from previous displayed frame: 0.000157000 seconds] + [Time since reference or first frame: 2.478237000 seconds] + Frame Number: 4550 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4547] + [Time from request: 0.000157000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 4551 2.478240 host 1.1.0 USB 36 URB_CONTROL in + +Frame 4551: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.914792000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.914792000 UTC + Epoch Arrival Time: 1750609933.914792000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000003000 seconds] + [Time delta from previous displayed frame: 0.000003000 seconds] + [Time since reference or first frame: 2.478240000 seconds] + Frame Number: 4551 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4552] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0d00 + wIndex: 257 (0x0101) + wLength: 5 + +No. Time Source Destination Protocol Length Info + 4552 2.478462 1.1.0 host USB 33 URB_CONTROL in + +Frame 4552: 33 bytes on wire (264 bits), 33 bytes captured (264 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.915014000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.915014000 UTC + Epoch Arrival Time: 1750609933.915014000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000222000 seconds] + [Time delta from previous displayed frame: 0.000222000 seconds] + [Time since reference or first frame: 2.478462000 seconds] + Frame Number: 4552 + Frame Length: 33 bytes (264 bits) + Capture Length: 33 bytes (264 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 5 + [Request in: 4551] + [Time from request: 0.000222000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 0000000000 + +No. Time Source Destination Protocol Length Info + 4553 2.478464 host 1.1.0 USB 36 URB_CONTROL out + +Frame 4553: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.915016000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.915016000 UTC + Epoch Arrival Time: 1750609933.915016000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000002000 seconds] + [Time delta from previous displayed frame: 0.000002000 seconds] + [Time since reference or first frame: 2.478464000 seconds] + Frame Number: 4553 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4554] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0d04 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 4554 2.478520 1.1.0 host USB 28 URB_CONTROL out + +Frame 4554: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.915072000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.915072000 UTC + Epoch Arrival Time: 1750609933.915072000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000056000 seconds] + [Time delta from previous displayed frame: 0.000056000 seconds] + [Time since reference or first frame: 2.478520000 seconds] + Frame Number: 4554 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4553] + [Time from request: 0.000056000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 4555 2.478522 host 1.1.0 USB 36 URB_CONTROL out + +Frame 4555: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.915074000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.915074000 UTC + Epoch Arrival Time: 1750609933.915074000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000002000 seconds] + [Time delta from previous displayed frame: 0.000002000 seconds] + [Time since reference or first frame: 2.478522000 seconds] + Frame Number: 4555 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4556] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0e00 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 4556 2.478579 1.1.0 host USB 28 URB_CONTROL out + +Frame 4556: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.915131000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.915131000 UTC + Epoch Arrival Time: 1750609933.915131000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000057000 seconds] + [Time delta from previous displayed frame: 0.000057000 seconds] + [Time since reference or first frame: 2.478579000 seconds] + Frame Number: 4556 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4555] + [Time from request: 0.000057000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 4557 2.478582 host 1.1.0 USB 36 URB_CONTROL out + +Frame 4557: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.915134000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.915134000 UTC + Epoch Arrival Time: 1750609933.915134000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000003000 seconds] + [Time delta from previous displayed frame: 0.000003000 seconds] + [Time since reference or first frame: 2.478582000 seconds] + Frame Number: 4557 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4558] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0f00 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 4558 2.478639 1.1.0 host USB 28 URB_CONTROL out + +Frame 4558: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.915191000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.915191000 UTC + Epoch Arrival Time: 1750609933.915191000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000057000 seconds] + [Time delta from previous displayed frame: 0.000057000 seconds] + [Time since reference or first frame: 2.478639000 seconds] + Frame Number: 4558 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4557] + [Time from request: 0.000057000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 4559 2.478641 host 1.1.0 USB 36 URB_CONTROL out + +Frame 4559: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.915193000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.915193000 UTC + Epoch Arrival Time: 1750609933.915193000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000002000 seconds] + [Time delta from previous displayed frame: 0.000002000 seconds] + [Time since reference or first frame: 2.478641000 seconds] + Frame Number: 4559 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4560] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x1000 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 4560 2.478698 1.1.0 host USB 28 URB_CONTROL out + +Frame 4560: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.915250000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.915250000 UTC + Epoch Arrival Time: 1750609933.915250000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000057000 seconds] + [Time delta from previous displayed frame: 0.000057000 seconds] + [Time since reference or first frame: 2.478698000 seconds] + Frame Number: 4560 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4559] + [Time from request: 0.000057000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 4561 2.478700 host 1.1.0 USB 36 URB_CONTROL out + +Frame 4561: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.915252000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.915252000 UTC + Epoch Arrival Time: 1750609933.915252000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000002000 seconds] + [Time delta from previous displayed frame: 0.000002000 seconds] + [Time since reference or first frame: 2.478700000 seconds] + Frame Number: 4561 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4562] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x110b + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 4562 2.478756 1.1.0 host USB 28 URB_CONTROL out + +Frame 4562: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.915308000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.915308000 UTC + Epoch Arrival Time: 1750609933.915308000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000056000 seconds] + [Time delta from previous displayed frame: 0.000056000 seconds] + [Time since reference or first frame: 2.478756000 seconds] + Frame Number: 4562 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4561] + [Time from request: 0.000056000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 4563 2.478805 host 1.1.0 USB 39 URB_CONTROL out + +Frame 4563: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.915357000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.915357000 UTC + Epoch Arrival Time: 1750609933.915357000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000049000 seconds] + [Time delta from previous displayed frame: 0.000049000 seconds] + [Time since reference or first frame: 2.478805000 seconds] + Frame Number: 4563 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 4564] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 44ac00 + +No. Time Source Destination Protocol Length Info + 4564 2.478925 1.1.0 host USB 28 URB_CONTROL out + +Frame 4564: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.915477000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.915477000 UTC + Epoch Arrival Time: 1750609933.915477000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000120000 seconds] + [Time delta from previous displayed frame: 0.000120000 seconds] + [Time since reference or first frame: 2.478925000 seconds] + Frame Number: 4564 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4563] + [Time from request: 0.000120000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 4565 2.478927 host 1.1.0 USB 39 URB_CONTROL out + +Frame 4565: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.915479000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.915479000 UTC + Epoch Arrival Time: 1750609933.915479000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000002000 seconds] + [Time delta from previous displayed frame: 0.000002000 seconds] + [Time since reference or first frame: 2.478927000 seconds] + Frame Number: 4565 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 4566] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 44ac00 + +No. Time Source Destination Protocol Length Info + 4566 2.479081 1.1.0 host USB 28 URB_CONTROL out + +Frame 4566: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.915633000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.915633000 UTC + Epoch Arrival Time: 1750609933.915633000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000154000 seconds] + [Time delta from previous displayed frame: 0.000154000 seconds] + [Time since reference or first frame: 2.479081000 seconds] + Frame Number: 4566 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4565] + [Time from request: 0.000154000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 4567 2.479090 host 1.1.0 USB 39 URB_CONTROL out + +Frame 4567: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.915642000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.915642000 UTC + Epoch Arrival Time: 1750609933.915642000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000009000 seconds] + [Time delta from previous displayed frame: 0.000009000 seconds] + [Time since reference or first frame: 2.479090000 seconds] + Frame Number: 4567 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 4568] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 44ac00 + +No. Time Source Destination Protocol Length Info + 4568 2.479236 1.1.0 host USB 28 URB_CONTROL out + +Frame 4568: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.915788000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.915788000 UTC + Epoch Arrival Time: 1750609933.915788000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000146000 seconds] + [Time delta from previous displayed frame: 0.000146000 seconds] + [Time since reference or first frame: 2.479236000 seconds] + Frame Number: 4568 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4567] + [Time from request: 0.000146000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 4569 2.479243 host 1.1.0 USB 36 URB_CONTROL in + +Frame 4569: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.915795000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.915795000 UTC + Epoch Arrival Time: 1750609933.915795000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000007000 seconds] + [Time delta from previous displayed frame: 0.000007000 seconds] + [Time since reference or first frame: 2.479243000 seconds] + Frame Number: 4569 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a4b0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4570] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 4570 2.479441 1.1.0 host USB 31 URB_CONTROL in + +Frame 4570: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.915993000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.915993000 UTC + Epoch Arrival Time: 1750609933.915993000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000198000 seconds] + [Time delta from previous displayed frame: 0.000198000 seconds] + [Time since reference or first frame: 2.479441000 seconds] + Frame Number: 4570 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a4b0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 4569] + [Time from request: 0.000198000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] +CONTROL response data: 44ac00 + +No. Time Source Destination Protocol Length Info + 4571 2.479446 host 1.1.0 USB 36 URB_CONTROL in + +Frame 4571: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.915998000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.915998000 UTC + Epoch Arrival Time: 1750609933.915998000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000005000 seconds] + [Time delta from previous displayed frame: 0.000005000 seconds] + [Time since reference or first frame: 2.479446000 seconds] + Frame Number: 4571 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a4b0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4572] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 1 + +No. Time Source Destination Protocol Length Info + 4572 2.479596 1.1.0 host USB 29 URB_CONTROL in + +Frame 4572: 29 bytes on wire (232 bits), 29 bytes captured (232 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.916148000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.916148000 UTC + Epoch Arrival Time: 1750609933.916148000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000150000 seconds] + [Time delta from previous displayed frame: 0.000150000 seconds] + [Time since reference or first frame: 2.479596000 seconds] + Frame Number: 4572 + Frame Length: 29 bytes (232 bits) + Capture Length: 29 bytes (232 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a4b0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 1 + [Request in: 4571] + [Time from request: 0.000150000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 30 + +No. Time Source Destination Protocol Length Info + 4573 2.479602 host 1.1.0 USB 36 URB_CONTROL out + +Frame 4573: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.916154000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.916154000 UTC + Epoch Arrival Time: 1750609933.916154000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000006000 seconds] + [Time delta from previous displayed frame: 0.000006000 seconds] + [Time since reference or first frame: 2.479602000 seconds] + Frame Number: 4573 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a4b0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4574] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0030 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 4574 2.479829 1.1.0 host USB 28 URB_CONTROL out + +Frame 4574: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:32:13.916381000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:32:13.916381000 UTC + Epoch Arrival Time: 1750609933.916381000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000227000 seconds] + [Time delta from previous displayed frame: 0.000227000 seconds] + [Time since reference or first frame: 2.479829000 seconds] + Frame Number: 4574 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a4b0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4573] + [Time from request: 0.000227000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] diff --git a/reverse_eng_dataset/44100k_recording_sample_rate_change_event_tascam144mk2.txt b/reverse_eng_dataset/44100k_recording_sample_rate_change_event_tascam144mk2.txt new file mode 100644 index 0000000..fe57e21 --- /dev/null +++ b/reverse_eng_dataset/44100k_recording_sample_rate_change_event_tascam144mk2.txt @@ -0,0 +1,2846 @@ +No. Time Source Destination Protocol Length Info + 62195 58.881587 host 1.9.0 USB 36 SET CONFIGURATION Request + +Frame 62195: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.244808000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.244808000 UTC + Epoch Arrival Time: 1750610845.244808000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.013319000 seconds] + [Time delta from previous displayed frame: 0.013319000 seconds] + [Time since reference or first frame: 58.881587000 seconds] + Frame Number: 62195 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ecf0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 62196] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x00 + 0... .... = Direction: Host-to-device + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: SET CONFIGURATION (9) + bConfigurationValue: 0 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 62196 58.882033 1.9.0 host USB 28 SET CONFIGURATION Response + +Frame 62196: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.245254000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.245254000 UTC + Epoch Arrival Time: 1750610845.245254000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000446000 seconds] + [Time delta from previous displayed frame: 0.000446000 seconds] + [Time since reference or first frame: 58.882033000 seconds] + Frame Number: 62196 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ecf0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 62195] + [Time from request: 0.000446000 seconds] + Control transfer stage: Complete (3) + +No. Time Source Destination Protocol Length Info + 62197 58.882047 host 1.9.0 USB 36 GET DESCRIPTOR Request DEVICE + +Frame 62197: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.245268000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.245268000 UTC + Epoch Arrival Time: 1750610845.245268000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000014000 seconds] + [Time delta from previous displayed frame: 0.000014000 seconds] + [Time since reference or first frame: 58.882047000 seconds] + Frame Number: 62197 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e786500 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 62198] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: DEVICE (0x01) + Language Id: no language specified (0x0000) + wLength: 18 + +No. Time Source Destination Protocol Length Info + 62198 58.882189 1.9.0 host USB 46 GET DESCRIPTOR Response DEVICE + +Frame 62198: 46 bytes on wire (368 bits), 46 bytes captured (368 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.245410000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.245410000 UTC + Epoch Arrival Time: 1750610845.245410000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000142000 seconds] + [Time delta from previous displayed frame: 0.000142000 seconds] + [Time since reference or first frame: 58.882189000 seconds] + Frame Number: 62198 + Frame Length: 46 bytes (368 bits) + Capture Length: 46 bytes (368 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e786500 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 18 + [Request in: 62197] + [Time from request: 0.000142000 seconds] + Control transfer stage: Complete (3) +DEVICE DESCRIPTOR + bLength: 18 + bDescriptorType: 0x01 (DEVICE) + bcdUSB: 0x0200 + bDeviceClass: Vendor Specific (0xff) + bDeviceSubClass: 255 + bDeviceProtocol: 255 + bMaxPacketSize0: 64 + idVendor: TEAC Corp. (0x0644) + idProduct: Unknown (0x8020) + bcdDevice: 0x0100 + iManufacturer: 1 + iProduct: 2 + iSerialNumber: 3 + bNumConfigurations: 1 + +No. Time Source Destination Protocol Length Info + 62199 58.883544 host 1.9.0 USB 36 URB_CONTROL in + +Frame 62199: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.246765000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.246765000 UTC + Epoch Arrival Time: 1750610845.246765000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001355000 seconds] + [Time delta from previous displayed frame: 0.001355000 seconds] + [Time since reference or first frame: 58.883544000 seconds] + Frame Number: 62199 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e69d010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 62200] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 86 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 15 + +No. Time Source Destination Protocol Length Info + 62200 58.883673 1.9.0 host USB 43 URB_CONTROL in + +Frame 62200: 43 bytes on wire (344 bits), 43 bytes captured (344 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.246894000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.246894000 UTC + Epoch Arrival Time: 1750610845.246894000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000129000 seconds] + [Time delta from previous displayed frame: 0.000129000 seconds] + [Time since reference or first frame: 58.883673000 seconds] + Frame Number: 62200 + Frame Length: 43 bytes (344 bits) + Capture Length: 43 bytes (344 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e69d010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 15 + [Request in: 62199] + [Time from request: 0.000129000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 31020356322e30332020202000ffff + +No. Time Source Destination Protocol Length Info + 62201 58.883682 host 1.9.0 USB 36 URB_CONTROL in + +Frame 62201: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.246903000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.246903000 UTC + Epoch Arrival Time: 1750610845.246903000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000009000 seconds] + [Time delta from previous displayed frame: 0.000009000 seconds] + [Time since reference or first frame: 58.883682000 seconds] + Frame Number: 62201 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073aced010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 62202] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 86 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 15 + +No. Time Source Destination Protocol Length Info + 62202 58.883755 1.9.0 host USB 43 URB_CONTROL in + +Frame 62202: 43 bytes on wire (344 bits), 43 bytes captured (344 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.246976000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.246976000 UTC + Epoch Arrival Time: 1750610845.246976000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000073000 seconds] + [Time delta from previous displayed frame: 0.000073000 seconds] + [Time since reference or first frame: 58.883755000 seconds] + Frame Number: 62202 + Frame Length: 43 bytes (344 bits) + Capture Length: 43 bytes (344 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073aced010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 15 + [Request in: 62201] + [Time from request: 0.000073000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 31020356322e30332020202000ffff + +No. Time Source Destination Protocol Length Info + 62203 58.883763 host 1.9.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 62203: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.246984000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.246984000 UTC + Epoch Arrival Time: 1750610845.246984000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000008000 seconds] + [Time delta from previous displayed frame: 0.000008000 seconds] + [Time since reference or first frame: 58.883763000 seconds] + Frame Number: 62203 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e69d010 + IRP USBD_STATUS: Unknown (0xffffde07) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 62204] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x01 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 62204 58.883875 1.9.0 host USB 42 GET DESCRIPTOR Response STRING + +Frame 62204: 42 bytes on wire (336 bits), 42 bytes captured (336 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.247096000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.247096000 UTC + Epoch Arrival Time: 1750610845.247096000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000112000 seconds] + [Time delta from previous displayed frame: 0.000112000 seconds] + [Time since reference or first frame: 58.883875000 seconds] + Frame Number: 62204 + Frame Length: 42 bytes (336 bits) + Capture Length: 42 bytes (336 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e69d010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 14 + [Request in: 62203] + [Time from request: 0.000112000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 14 + bDescriptorType: 0x03 (STRING) + bString: TASCAM + +No. Time Source Destination Protocol Length Info + 62205 58.883892 host 1.9.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 62205: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.247113000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.247113000 UTC + Epoch Arrival Time: 1750610845.247113000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000017000 seconds] + [Time delta from previous displayed frame: 0.000017000 seconds] + [Time since reference or first frame: 58.883892000 seconds] + Frame Number: 62205 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e69d010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 62206] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x02 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 62206 58.884028 1.9.0 host USB 52 GET DESCRIPTOR Response STRING + +Frame 62206: 52 bytes on wire (416 bits), 52 bytes captured (416 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.247249000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.247249000 UTC + Epoch Arrival Time: 1750610845.247249000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000136000 seconds] + [Time delta from previous displayed frame: 0.000136000 seconds] + [Time since reference or first frame: 58.884028000 seconds] + Frame Number: 62206 + Frame Length: 52 bytes (416 bits) + Capture Length: 52 bytes (416 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e69d010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 24 + [Request in: 62205] + [Time from request: 0.000136000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 24 + bDescriptorType: 0x03 (STRING) + bString: US-144 MKII + +No. Time Source Destination Protocol Length Info + 62207 58.884034 host 1.9.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 62207: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.247255000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.247255000 UTC + Epoch Arrival Time: 1750610845.247255000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000006000 seconds] + [Time delta from previous displayed frame: 0.000006000 seconds] + [Time since reference or first frame: 58.884034000 seconds] + Frame Number: 62207 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e69d010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 62208] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x03 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 62208 58.884259 1.9.0 host USB 62 GET DESCRIPTOR Response STRING + +Frame 62208: 62 bytes on wire (496 bits), 62 bytes captured (496 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.247480000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.247480000 UTC + Epoch Arrival Time: 1750610845.247480000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000225000 seconds] + [Time delta from previous displayed frame: 0.000225000 seconds] + [Time since reference or first frame: 58.884259000 seconds] + Frame Number: 62208 + Frame Length: 62 bytes (496 bits) + Capture Length: 62 bytes (496 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e69d010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 34 + [Request in: 62207] + [Time from request: 0.000225000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 34 + bDescriptorType: 0x03 (STRING) + bString: no serial number + +No. Time Source Destination Protocol Length Info + 62210 58.884275 host 1.9.0 USB 36 GET DESCRIPTOR Request CONFIGURATION + +Frame 62210: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.247496000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.247496000 UTC + Epoch Arrival Time: 1750610845.247496000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000002000 seconds] + [Time delta from previous displayed frame: 0.000016000 seconds] + [Time since reference or first frame: 58.884275000 seconds] + Frame Number: 62210 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e69d010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 62212] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: CONFIGURATION (0x02) + Language Id: no language specified (0x0000) + wLength: 1033 + +No. Time Source Destination Protocol Length Info + 62212 58.884576 1.9.0 host USB 108 GET DESCRIPTOR Response CONFIGURATION + +Frame 62212: 108 bytes on wire (864 bits), 108 bytes captured (864 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.247797000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.247797000 UTC + Epoch Arrival Time: 1750610845.247797000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000294000 seconds] + [Time delta from previous displayed frame: 0.000301000 seconds] + [Time since reference or first frame: 58.884576000 seconds] + Frame Number: 62212 + Frame Length: 108 bytes (864 bits) + Capture Length: 108 bytes (864 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e69d010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 80 + [Request in: 62210] + [Time from request: 0.000301000 seconds] + Control transfer stage: Complete (3) +CONFIGURATION DESCRIPTOR + bLength: 9 + bDescriptorType: 0x02 (CONFIGURATION) + wTotalLength: 80 + bNumInterfaces: 2 + bConfigurationValue: 1 + iConfiguration: 0 + Configuration bmAttributes: 0x80 NOT SELF-POWERED NO REMOTE-WAKEUP + 1... .... = Must be 1: Must be 1 for USB 1.1 and higher + .0.. .... = Self-Powered: This device is powered from the USB bus + ..0. .... = Remote Wakeup: This device does NOT support remote wakeup + bMaxPower: 240 (480mA) +INTERFACE DESCRIPTOR (0.0): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 0 + bAlternateSetting: 0 + bNumEndpoints: 0 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +INTERFACE DESCRIPTOR (0.1): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 0 + bAlternateSetting: 1 + bNumEndpoints: 3 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x02 OUT Endpoint:2 + 0... .... = Direction: OUT Endpoint + .... 0010 = Endpoint Number: 0x2 + bmAttributes: 0x05 + .... ..01 = Transfertype: Isochronous-Transfer (0x1) + .... 01.. = Synchronisationtype: Asynchronous (0x1) + ..00 .... = Behaviourtype: Data-Endpoint (0x0) + wMaxPacketSize: 156 + ...0 0... .... .... = Transactions per microframe: 1 (0) + .... .000 1001 1100 = Maximum Packet Size: 156 + bInterval: 1 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x83 IN Endpoint:3 + 1... .... = Direction: IN Endpoint + .... 0011 = Endpoint Number: 0x3 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 4 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x04 OUT Endpoint:4 + 0... .... = Direction: OUT Endpoint + .... 0100 = Endpoint Number: 0x4 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 4 +INTERFACE DESCRIPTOR (1.0): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 1 + bAlternateSetting: 0 + bNumEndpoints: 0 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +INTERFACE DESCRIPTOR (1.1): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 1 + bAlternateSetting: 1 + bNumEndpoints: 2 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x81 IN Endpoint:1 + 1... .... = Direction: IN Endpoint + .... 0001 = Endpoint Number: 0x1 + bmAttributes: 0x05 + .... ..01 = Transfertype: Isochronous-Transfer (0x1) + .... 01.. = Synchronisationtype: Asynchronous (0x1) + ..00 .... = Behaviourtype: Data-Endpoint (0x0) + wMaxPacketSize: 64 + ...0 0... .... .... = Transactions per microframe: 1 (0) + .... .000 0100 0000 = Maximum Packet Size: 64 + bInterval: 4 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x86 IN Endpoint:6 + 1... .... = Direction: IN Endpoint + .... 0110 = Endpoint Number: 0x6 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 1 + +No. Time Source Destination Protocol Length Info + 62215 58.888215 host 1.9.0 USB 36 GET DESCRIPTOR Request DEVICE + +Frame 62215: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.251436000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.251436000 UTC + Epoch Arrival Time: 1750610845.251436000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001925000 seconds] + [Time delta from previous displayed frame: 0.003639000 seconds] + [Time since reference or first frame: 58.888215000 seconds] + Frame Number: 62215 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e69d010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 62218] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: DEVICE (0x01) + Language Id: no language specified (0x0000) + wLength: 18 + +No. Time Source Destination Protocol Length Info + 62218 58.888377 1.9.0 host USB 46 GET DESCRIPTOR Response DEVICE + +Frame 62218: 46 bytes on wire (368 bits), 46 bytes captured (368 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.251598000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.251598000 UTC + Epoch Arrival Time: 1750610845.251598000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000097000 seconds] + [Time delta from previous displayed frame: 0.000162000 seconds] + [Time since reference or first frame: 58.888377000 seconds] + Frame Number: 62218 + Frame Length: 46 bytes (368 bits) + Capture Length: 46 bytes (368 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e69d010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 18 + [Request in: 62215] + [Time from request: 0.000162000 seconds] + Control transfer stage: Complete (3) +DEVICE DESCRIPTOR + bLength: 18 + bDescriptorType: 0x01 (DEVICE) + bcdUSB: 0x0200 + bDeviceClass: Vendor Specific (0xff) + bDeviceSubClass: 255 + bDeviceProtocol: 255 + bMaxPacketSize0: 64 + idVendor: TEAC Corp. (0x0644) + idProduct: Unknown (0x8020) + bcdDevice: 0x0100 + iManufacturer: 1 + iProduct: 2 + iSerialNumber: 3 + bNumConfigurations: 1 + +No. Time Source Destination Protocol Length Info + 62219 58.888386 host 1.9.0 USB 36 SET CONFIGURATION Request + +Frame 62219: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.251607000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.251607000 UTC + Epoch Arrival Time: 1750610845.251607000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000009000 seconds] + [Time delta from previous displayed frame: 0.000009000 seconds] + [Time since reference or first frame: 58.888386000 seconds] + Frame Number: 62219 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ecf0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 62420] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x00 + 0... .... = Direction: Host-to-device + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: SET CONFIGURATION (9) + bConfigurationValue: 1 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 62420 59.098531 1.9.0 host USB 28 SET CONFIGURATION Response + +Frame 62420: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.461752000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.461752000 UTC + Epoch Arrival Time: 1750610845.461752000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000226000 seconds] + [Time delta from previous displayed frame: 0.210145000 seconds] + [Time since reference or first frame: 59.098531000 seconds] + Frame Number: 62420 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ecf0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 62219] + [Time from request: 0.210145000 seconds] + Control transfer stage: Complete (3) + +No. Time Source Destination Protocol Length Info + 62471 59.148725 host 1.9.0 USB 36 URB_CONTROL in + +Frame 62471: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.511946000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.511946000 UTC + Epoch Arrival Time: 1750610845.511946000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000415000 seconds] + [Time delta from previous displayed frame: 0.050194000 seconds] + [Time since reference or first frame: 59.148725000 seconds] + Frame Number: 62471 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ac42010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 62472] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 1 + +No. Time Source Destination Protocol Length Info + 62472 59.148904 1.9.0 host USB 29 URB_CONTROL in + +Frame 62472: 29 bytes on wire (232 bits), 29 bytes captured (232 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.512125000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.512125000 UTC + Epoch Arrival Time: 1750610845.512125000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000179000 seconds] + [Time delta from previous displayed frame: 0.000179000 seconds] + [Time since reference or first frame: 59.148904000 seconds] + Frame Number: 62472 + Frame Length: 29 bytes (232 bits) + Capture Length: 29 bytes (232 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ac42010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 1 + [Request in: 62471] + [Time from request: 0.000179000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 30 + +No. Time Source Destination Protocol Length Info + 62473 59.148924 host 1.9.0 USB 36 URB_CONTROL in + +Frame 62473: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.512145000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.512145000 UTC + Epoch Arrival Time: 1750610845.512145000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000020000 seconds] + [Time delta from previous displayed frame: 0.000020000 seconds] + [Time since reference or first frame: 59.148924000 seconds] + Frame Number: 62473 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ac42010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 62474] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 0 (0x0000) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 62474 59.149159 1.9.0 host USB 31 URB_CONTROL in + +Frame 62474: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.512380000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.512380000 UTC + Epoch Arrival Time: 1750610845.512380000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000235000 seconds] + [Time delta from previous displayed frame: 0.000235000 seconds] + [Time since reference or first frame: 59.149159000 seconds] + Frame Number: 62474 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ac42010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 62473] + [Time from request: 0.000235000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 007701 + +No. Time Source Destination Protocol Length Info + 62475 59.149177 host 1.9.0 USB 39 URB_CONTROL out + +Frame 62475: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.512398000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.512398000 UTC + Epoch Arrival Time: 1750610845.512398000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000018000 seconds] + [Time delta from previous displayed frame: 0.000018000 seconds] + [Time since reference or first frame: 59.149177000 seconds] + Frame Number: 62475 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ac42010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 62476] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 62476 59.149291 1.9.0 host USB 28 URB_CONTROL out + +Frame 62476: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.512512000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.512512000 UTC + Epoch Arrival Time: 1750610845.512512000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000114000 seconds] + [Time delta from previous displayed frame: 0.000114000 seconds] + [Time since reference or first frame: 59.149291000 seconds] + Frame Number: 62476 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ac42010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 62475] + [Time from request: 0.000114000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 62477 59.149309 host 1.9.0 USB 39 URB_CONTROL out + +Frame 62477: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.512530000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.512530000 UTC + Epoch Arrival Time: 1750610845.512530000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000018000 seconds] + [Time delta from previous displayed frame: 0.000018000 seconds] + [Time since reference or first frame: 59.149309000 seconds] + Frame Number: 62477 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ac42010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 62478] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 62478 59.149442 1.9.0 host USB 28 URB_CONTROL out + +Frame 62478: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.512663000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.512663000 UTC + Epoch Arrival Time: 1750610845.512663000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000133000 seconds] + [Time delta from previous displayed frame: 0.000133000 seconds] + [Time since reference or first frame: 59.149442000 seconds] + Frame Number: 62478 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ac42010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 62477] + [Time from request: 0.000133000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 62481 59.151809 host 1.9.0 USB 39 URB_CONTROL out + +Frame 62481: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.515030000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.515030000 UTC + Epoch Arrival Time: 1750610845.515030000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001499000 seconds] + [Time delta from previous displayed frame: 0.002367000 seconds] + [Time since reference or first frame: 59.151809000 seconds] + Frame Number: 62481 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ac42010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 62482] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 62482 59.151964 1.9.0 host USB 28 URB_CONTROL out + +Frame 62482: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.515185000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.515185000 UTC + Epoch Arrival Time: 1750610845.515185000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000155000 seconds] + [Time delta from previous displayed frame: 0.000155000 seconds] + [Time since reference or first frame: 59.151964000 seconds] + Frame Number: 62482 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ac42010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 62481] + [Time from request: 0.000155000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 62483 59.151987 host 1.9.0 USB 39 URB_CONTROL out + +Frame 62483: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.515208000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.515208000 UTC + Epoch Arrival Time: 1750610845.515208000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000023000 seconds] + [Time delta from previous displayed frame: 0.000023000 seconds] + [Time since reference or first frame: 59.151987000 seconds] + Frame Number: 62483 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073baea010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 62484] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 62484 59.152127 1.9.0 host USB 28 URB_CONTROL out + +Frame 62484: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.515348000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.515348000 UTC + Epoch Arrival Time: 1750610845.515348000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000140000 seconds] + [Time delta from previous displayed frame: 0.000140000 seconds] + [Time since reference or first frame: 59.152127000 seconds] + Frame Number: 62484 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073baea010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 62483] + [Time from request: 0.000140000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 62485 59.152145 host 1.9.0 USB 36 URB_CONTROL in + +Frame 62485: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.515366000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.515366000 UTC + Epoch Arrival Time: 1750610845.515366000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000018000 seconds] + [Time delta from previous displayed frame: 0.000018000 seconds] + [Time since reference or first frame: 59.152145000 seconds] + Frame Number: 62485 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073baea010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 62488] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0d00 + wIndex: 257 (0x0101) + wLength: 5 + +No. Time Source Destination Protocol Length Info + 62488 59.152337 1.9.0 host USB 33 URB_CONTROL in + +Frame 62488: 33 bytes on wire (264 bits), 33 bytes captured (264 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.515558000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.515558000 UTC + Epoch Arrival Time: 1750610845.515558000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000045000 seconds] + [Time delta from previous displayed frame: 0.000192000 seconds] + [Time since reference or first frame: 59.152337000 seconds] + Frame Number: 62488 + Frame Length: 33 bytes (264 bits) + Capture Length: 33 bytes (264 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073baea010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 5 + [Request in: 62485] + [Time from request: 0.000192000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 0000000200 + +No. Time Source Destination Protocol Length Info + 62489 59.152454 host 1.9.0 USB 36 URB_CONTROL out + +Frame 62489: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.515675000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.515675000 UTC + Epoch Arrival Time: 1750610845.515675000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000117000 seconds] + [Time delta from previous displayed frame: 0.000117000 seconds] + [Time since reference or first frame: 59.152454000 seconds] + Frame Number: 62489 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e69d010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 62490] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0d04 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 62490 59.152532 1.9.0 host USB 28 URB_CONTROL out + +Frame 62490: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.515753000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.515753000 UTC + Epoch Arrival Time: 1750610845.515753000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000078000 seconds] + [Time delta from previous displayed frame: 0.000078000 seconds] + [Time since reference or first frame: 59.152532000 seconds] + Frame Number: 62490 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e69d010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 62489] + [Time from request: 0.000078000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 62491 59.152551 host 1.9.0 USB 36 URB_CONTROL out + +Frame 62491: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.515772000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.515772000 UTC + Epoch Arrival Time: 1750610845.515772000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000019000 seconds] + [Time delta from previous displayed frame: 0.000019000 seconds] + [Time since reference or first frame: 59.152551000 seconds] + Frame Number: 62491 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073eb2a2a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 62492] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0e00 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 62492 59.152631 1.9.0 host USB 28 URB_CONTROL out + +Frame 62492: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.515852000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.515852000 UTC + Epoch Arrival Time: 1750610845.515852000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000080000 seconds] + [Time delta from previous displayed frame: 0.000080000 seconds] + [Time since reference or first frame: 59.152631000 seconds] + Frame Number: 62492 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073eb2a2a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 62491] + [Time from request: 0.000080000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 62493 59.152647 host 1.9.0 USB 36 URB_CONTROL out + +Frame 62493: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.515868000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.515868000 UTC + Epoch Arrival Time: 1750610845.515868000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000016000 seconds] + [Time delta from previous displayed frame: 0.000016000 seconds] + [Time since reference or first frame: 59.152647000 seconds] + Frame Number: 62493 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073baea010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 62494] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0f00 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 62494 59.152711 1.9.0 host USB 28 URB_CONTROL out + +Frame 62494: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.515932000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.515932000 UTC + Epoch Arrival Time: 1750610845.515932000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000064000 seconds] + [Time delta from previous displayed frame: 0.000064000 seconds] + [Time since reference or first frame: 59.152711000 seconds] + Frame Number: 62494 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073baea010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 62493] + [Time from request: 0.000064000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 62495 59.152741 host 1.9.0 USB 36 URB_CONTROL out + +Frame 62495: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.515962000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.515962000 UTC + Epoch Arrival Time: 1750610845.515962000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000030000 seconds] + [Time delta from previous displayed frame: 0.000030000 seconds] + [Time since reference or first frame: 59.152741000 seconds] + Frame Number: 62495 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073baea010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 62496] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x1002 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 62496 59.152808 1.9.0 host USB 28 URB_CONTROL out + +Frame 62496: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.516029000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.516029000 UTC + Epoch Arrival Time: 1750610845.516029000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000067000 seconds] + [Time delta from previous displayed frame: 0.000067000 seconds] + [Time since reference or first frame: 59.152808000 seconds] + Frame Number: 62496 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073baea010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 62495] + [Time from request: 0.000067000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 62497 59.152812 host 1.9.0 USB 36 URB_CONTROL out + +Frame 62497: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.516033000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.516033000 UTC + Epoch Arrival Time: 1750610845.516033000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000004000 seconds] + [Time delta from previous displayed frame: 0.000004000 seconds] + [Time since reference or first frame: 59.152812000 seconds] + Frame Number: 62497 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073baea010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 62498] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x110b + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 62498 59.152874 1.9.0 host USB 28 URB_CONTROL out + +Frame 62498: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.516095000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.516095000 UTC + Epoch Arrival Time: 1750610845.516095000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000062000 seconds] + [Time delta from previous displayed frame: 0.000062000 seconds] + [Time since reference or first frame: 59.152874000 seconds] + Frame Number: 62498 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073baea010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 62497] + [Time from request: 0.000062000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 62499 59.152952 host 1.9.0 USB 39 URB_CONTROL out + +Frame 62499: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.516173000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.516173000 UTC + Epoch Arrival Time: 1750610845.516173000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000078000 seconds] + [Time delta from previous displayed frame: 0.000078000 seconds] + [Time since reference or first frame: 59.152952000 seconds] + Frame Number: 62499 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6424e0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 62500] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 62500 59.153106 1.9.0 host USB 28 URB_CONTROL out + +Frame 62500: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.516327000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.516327000 UTC + Epoch Arrival Time: 1750610845.516327000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000154000 seconds] + [Time delta from previous displayed frame: 0.000154000 seconds] + [Time since reference or first frame: 59.153106000 seconds] + Frame Number: 62500 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6424e0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 62499] + [Time from request: 0.000154000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 62501 59.153115 host 1.9.0 USB 39 URB_CONTROL out + +Frame 62501: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.516336000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.516336000 UTC + Epoch Arrival Time: 1750610845.516336000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000009000 seconds] + [Time delta from previous displayed frame: 0.000009000 seconds] + [Time since reference or first frame: 59.153115000 seconds] + Frame Number: 62501 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073baea010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 62502] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 62502 59.153322 1.9.0 host USB 28 URB_CONTROL out + +Frame 62502: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.516543000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.516543000 UTC + Epoch Arrival Time: 1750610845.516543000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000207000 seconds] + [Time delta from previous displayed frame: 0.000207000 seconds] + [Time since reference or first frame: 59.153322000 seconds] + Frame Number: 62502 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073baea010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 62501] + [Time from request: 0.000207000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 62503 59.153340 host 1.9.0 USB 39 URB_CONTROL out + +Frame 62503: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.516561000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.516561000 UTC + Epoch Arrival Time: 1750610845.516561000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000018000 seconds] + [Time delta from previous displayed frame: 0.000018000 seconds] + [Time since reference or first frame: 59.153340000 seconds] + Frame Number: 62503 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073eb2a2a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 62504] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 62504 59.153468 1.9.0 host USB 28 URB_CONTROL out + +Frame 62504: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.516689000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.516689000 UTC + Epoch Arrival Time: 1750610845.516689000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000128000 seconds] + [Time delta from previous displayed frame: 0.000128000 seconds] + [Time since reference or first frame: 59.153468000 seconds] + Frame Number: 62504 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073eb2a2a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 62503] + [Time from request: 0.000128000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 62505 59.153478 host 1.9.0 USB 36 URB_CONTROL in + +Frame 62505: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.516699000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.516699000 UTC + Epoch Arrival Time: 1750610845.516699000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000010000 seconds] + [Time delta from previous displayed frame: 0.000010000 seconds] + [Time since reference or first frame: 59.153478000 seconds] + Frame Number: 62505 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073baea010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 62506] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 62506 59.153676 1.9.0 host USB 31 URB_CONTROL in + +Frame 62506: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.516897000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.516897000 UTC + Epoch Arrival Time: 1750610845.516897000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000198000 seconds] + [Time delta from previous displayed frame: 0.000198000 seconds] + [Time since reference or first frame: 59.153676000 seconds] + Frame Number: 62506 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073baea010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 62505] + [Time from request: 0.000198000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] +CONTROL response data: 80bb00 + +No. Time Source Destination Protocol Length Info + 62507 59.153697 host 1.9.0 USB 36 URB_CONTROL in + +Frame 62507: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.516918000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.516918000 UTC + Epoch Arrival Time: 1750610845.516918000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000021000 seconds] + [Time delta from previous displayed frame: 0.000021000 seconds] + [Time since reference or first frame: 59.153697000 seconds] + Frame Number: 62507 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073baea010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 62508] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 1 + +No. Time Source Destination Protocol Length Info + 62508 59.153839 1.9.0 host USB 29 URB_CONTROL in + +Frame 62508: 29 bytes on wire (232 bits), 29 bytes captured (232 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.517060000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.517060000 UTC + Epoch Arrival Time: 1750610845.517060000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000142000 seconds] + [Time delta from previous displayed frame: 0.000142000 seconds] + [Time since reference or first frame: 59.153839000 seconds] + Frame Number: 62508 + Frame Length: 29 bytes (232 bits) + Capture Length: 29 bytes (232 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073baea010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 1 + [Request in: 62507] + [Time from request: 0.000142000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 30 + +No. Time Source Destination Protocol Length Info + 62509 59.153857 host 1.9.0 USB 36 URB_CONTROL out + +Frame 62509: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.517078000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.517078000 UTC + Epoch Arrival Time: 1750610845.517078000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000018000 seconds] + [Time delta from previous displayed frame: 0.000018000 seconds] + [Time since reference or first frame: 59.153857000 seconds] + Frame Number: 62509 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073baea010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 62510] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0030 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 62510 59.154086 1.9.0 host USB 28 URB_CONTROL out + +Frame 62510: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:47:25.517307000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:47:25.517307000 UTC + Epoch Arrival Time: 1750610845.517307000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000229000 seconds] + [Time delta from previous displayed frame: 0.000229000 seconds] + [Time since reference or first frame: 59.154086000 seconds] + Frame Number: 62510 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073baea010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 62509] + [Time from request: 0.000229000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] diff --git a/reverse_eng_dataset/48000k_playback_16bitrate_on_connect_event_tascam144mk2.txt b/reverse_eng_dataset/48000k_playback_16bitrate_on_connect_event_tascam144mk2.txt new file mode 100644 index 0000000..e406f8d --- /dev/null +++ b/reverse_eng_dataset/48000k_playback_16bitrate_on_connect_event_tascam144mk2.txt @@ -0,0 +1,3139 @@ +No. Time Source Destination Protocol Length Info + 181 1.711202 host 1.14.0 USB 36 GET DESCRIPTOR Request DEVICE + +Frame 181: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.236207000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.236207000 UTC + Epoch Arrival Time: 1750612889.236207000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000851000 seconds] + [Time delta from previous displayed frame: 0.000000000 seconds] + [Time since reference or first frame: 1.711202000 seconds] + Frame Number: 181 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c717010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 182] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: DEVICE (0x01) + Language Id: no language specified (0x0000) + wLength: 18 + +No. Time Source Destination Protocol Length Info + 182 1.711372 1.14.0 host USB 46 GET DESCRIPTOR Response DEVICE + +Frame 182: 46 bytes on wire (368 bits), 46 bytes captured (368 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.236377000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.236377000 UTC + Epoch Arrival Time: 1750612889.236377000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000170000 seconds] + [Time delta from previous displayed frame: 0.000170000 seconds] + [Time since reference or first frame: 1.711372000 seconds] + Frame Number: 182 + Frame Length: 46 bytes (368 bits) + Capture Length: 46 bytes (368 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c717010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 18 + [Request in: 181] + [Time from request: 0.000170000 seconds] + Control transfer stage: Complete (3) +DEVICE DESCRIPTOR + bLength: 18 + bDescriptorType: 0x01 (DEVICE) + bcdUSB: 0x0200 + bDeviceClass: Vendor Specific (0xff) + bDeviceSubClass: 255 + bDeviceProtocol: 255 + bMaxPacketSize0: 64 + idVendor: TEAC Corp. (0x0644) + idProduct: Unknown (0x8020) + bcdDevice: 0x0100 + iManufacturer: 1 + iProduct: 2 + iSerialNumber: 3 + bNumConfigurations: 1 + +No. Time Source Destination Protocol Length Info + 251 1.779522 host 1.14.0 USB 36 URB_CONTROL in + +Frame 251: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.304527000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.304527000 UTC + Epoch Arrival Time: 1750612889.304527000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001197000 seconds] + [Time delta from previous displayed frame: 0.068150000 seconds] + [Time since reference or first frame: 1.779522000 seconds] + Frame Number: 251 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c7118a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 252] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 86 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 15 + +No. Time Source Destination Protocol Length Info + 252 1.779658 1.14.0 host USB 43 URB_CONTROL in + +Frame 252: 43 bytes on wire (344 bits), 43 bytes captured (344 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.304663000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.304663000 UTC + Epoch Arrival Time: 1750612889.304663000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000136000 seconds] + [Time delta from previous displayed frame: 0.000136000 seconds] + [Time since reference or first frame: 1.779658000 seconds] + Frame Number: 252 + Frame Length: 43 bytes (344 bits) + Capture Length: 43 bytes (344 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c7118a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 15 + [Request in: 251] + [Time from request: 0.000136000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 31020356322e30332020202000ffff + +No. Time Source Destination Protocol Length Info + 253 1.779675 host 1.14.0 USB 36 URB_CONTROL in + +Frame 253: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.304680000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.304680000 UTC + Epoch Arrival Time: 1750612889.304680000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000017000 seconds] + [Time delta from previous displayed frame: 0.000017000 seconds] + [Time since reference or first frame: 1.779675000 seconds] + Frame Number: 253 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739be27c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 254] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 86 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 15 + +No. Time Source Destination Protocol Length Info + 254 1.779851 1.14.0 host USB 43 URB_CONTROL in + +Frame 254: 43 bytes on wire (344 bits), 43 bytes captured (344 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.304856000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.304856000 UTC + Epoch Arrival Time: 1750612889.304856000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000176000 seconds] + [Time delta from previous displayed frame: 0.000176000 seconds] + [Time since reference or first frame: 1.779851000 seconds] + Frame Number: 254 + Frame Length: 43 bytes (344 bits) + Capture Length: 43 bytes (344 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739be27c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 15 + [Request in: 253] + [Time from request: 0.000176000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 31020356322e30332020202000ffff + +No. Time Source Destination Protocol Length Info + 255 1.779860 host 1.14.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 255: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.304865000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.304865000 UTC + Epoch Arrival Time: 1750612889.304865000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000009000 seconds] + [Time delta from previous displayed frame: 0.000009000 seconds] + [Time since reference or first frame: 1.779860000 seconds] + Frame Number: 255 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c53aa70 + IRP USBD_STATUS: Unknown (0xffffde07) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 256] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x01 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 256 1.779983 1.14.0 host USB 42 GET DESCRIPTOR Response STRING + +Frame 256: 42 bytes on wire (336 bits), 42 bytes captured (336 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.304988000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.304988000 UTC + Epoch Arrival Time: 1750612889.304988000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000123000 seconds] + [Time delta from previous displayed frame: 0.000123000 seconds] + [Time since reference or first frame: 1.779983000 seconds] + Frame Number: 256 + Frame Length: 42 bytes (336 bits) + Capture Length: 42 bytes (336 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c53aa70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 14 + [Request in: 255] + [Time from request: 0.000123000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 14 + bDescriptorType: 0x03 (STRING) + bString: TASCAM + +No. Time Source Destination Protocol Length Info + 257 1.780004 host 1.14.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 257: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.305009000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.305009000 UTC + Epoch Arrival Time: 1750612889.305009000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000021000 seconds] + [Time delta from previous displayed frame: 0.000021000 seconds] + [Time since reference or first frame: 1.780004000 seconds] + Frame Number: 257 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c7118a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 258] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x02 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 258 1.780144 1.14.0 host USB 52 GET DESCRIPTOR Response STRING + +Frame 258: 52 bytes on wire (416 bits), 52 bytes captured (416 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.305149000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.305149000 UTC + Epoch Arrival Time: 1750612889.305149000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000140000 seconds] + [Time delta from previous displayed frame: 0.000140000 seconds] + [Time since reference or first frame: 1.780144000 seconds] + Frame Number: 258 + Frame Length: 52 bytes (416 bits) + Capture Length: 52 bytes (416 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c7118a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 24 + [Request in: 257] + [Time from request: 0.000140000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 24 + bDescriptorType: 0x03 (STRING) + bString: US-144 MKII + +No. Time Source Destination Protocol Length Info + 259 1.780161 host 1.14.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 259: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.305166000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.305166000 UTC + Epoch Arrival Time: 1750612889.305166000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000017000 seconds] + [Time delta from previous displayed frame: 0.000017000 seconds] + [Time since reference or first frame: 1.780161000 seconds] + Frame Number: 259 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739be27c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 262] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x03 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 262 1.780372 1.14.0 host USB 62 GET DESCRIPTOR Response STRING + +Frame 262: 62 bytes on wire (496 bits), 62 bytes captured (496 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.305377000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.305377000 UTC + Epoch Arrival Time: 1750612889.305377000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000003000 seconds] + [Time delta from previous displayed frame: 0.000211000 seconds] + [Time since reference or first frame: 1.780372000 seconds] + Frame Number: 262 + Frame Length: 62 bytes (496 bits) + Capture Length: 62 bytes (496 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739be27c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 34 + [Request in: 259] + [Time from request: 0.000211000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 34 + bDescriptorType: 0x03 (STRING) + bString: no serial number + +No. Time Source Destination Protocol Length Info + 263 1.780384 host 1.14.0 USB 36 GET DESCRIPTOR Request CONFIGURATION + +Frame 263: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.305389000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.305389000 UTC + Epoch Arrival Time: 1750612889.305389000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000012000 seconds] + [Time delta from previous displayed frame: 0.000012000 seconds] + [Time since reference or first frame: 1.780384000 seconds] + Frame Number: 263 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c7118a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 264] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: CONFIGURATION (0x02) + Language Id: no language specified (0x0000) + wLength: 1033 + +No. Time Source Destination Protocol Length Info + 264 1.780668 1.14.0 host USB 108 GET DESCRIPTOR Response CONFIGURATION + +Frame 264: 108 bytes on wire (864 bits), 108 bytes captured (864 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.305673000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.305673000 UTC + Epoch Arrival Time: 1750612889.305673000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000284000 seconds] + [Time delta from previous displayed frame: 0.000284000 seconds] + [Time since reference or first frame: 1.780668000 seconds] + Frame Number: 264 + Frame Length: 108 bytes (864 bits) + Capture Length: 108 bytes (864 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c7118a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 80 + [Request in: 263] + [Time from request: 0.000284000 seconds] + Control transfer stage: Complete (3) +CONFIGURATION DESCRIPTOR + bLength: 9 + bDescriptorType: 0x02 (CONFIGURATION) + wTotalLength: 80 + bNumInterfaces: 2 + bConfigurationValue: 1 + iConfiguration: 0 + Configuration bmAttributes: 0x80 NOT SELF-POWERED NO REMOTE-WAKEUP + 1... .... = Must be 1: Must be 1 for USB 1.1 and higher + .0.. .... = Self-Powered: This device is powered from the USB bus + ..0. .... = Remote Wakeup: This device does NOT support remote wakeup + bMaxPower: 240 (480mA) +INTERFACE DESCRIPTOR (0.0): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 0 + bAlternateSetting: 0 + bNumEndpoints: 0 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +INTERFACE DESCRIPTOR (0.1): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 0 + bAlternateSetting: 1 + bNumEndpoints: 3 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x02 OUT Endpoint:2 + 0... .... = Direction: OUT Endpoint + .... 0010 = Endpoint Number: 0x2 + bmAttributes: 0x05 + .... ..01 = Transfertype: Isochronous-Transfer (0x1) + .... 01.. = Synchronisationtype: Asynchronous (0x1) + ..00 .... = Behaviourtype: Data-Endpoint (0x0) + wMaxPacketSize: 156 + ...0 0... .... .... = Transactions per microframe: 1 (0) + .... .000 1001 1100 = Maximum Packet Size: 156 + bInterval: 1 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x83 IN Endpoint:3 + 1... .... = Direction: IN Endpoint + .... 0011 = Endpoint Number: 0x3 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 4 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x04 OUT Endpoint:4 + 0... .... = Direction: OUT Endpoint + .... 0100 = Endpoint Number: 0x4 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 4 +INTERFACE DESCRIPTOR (1.0): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 1 + bAlternateSetting: 0 + bNumEndpoints: 0 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +INTERFACE DESCRIPTOR (1.1): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 1 + bAlternateSetting: 1 + bNumEndpoints: 2 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x81 IN Endpoint:1 + 1... .... = Direction: IN Endpoint + .... 0001 = Endpoint Number: 0x1 + bmAttributes: 0x05 + .... ..01 = Transfertype: Isochronous-Transfer (0x1) + .... 01.. = Synchronisationtype: Asynchronous (0x1) + ..00 .... = Behaviourtype: Data-Endpoint (0x0) + wMaxPacketSize: 64 + ...0 0... .... .... = Transactions per microframe: 1 (0) + .... .000 0100 0000 = Maximum Packet Size: 64 + bInterval: 4 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x86 IN Endpoint:6 + 1... .... = Direction: IN Endpoint + .... 0110 = Endpoint Number: 0x6 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 1 + +No. Time Source Destination Protocol Length Info + 267 1.784258 host 1.14.0 USB 36 GET DESCRIPTOR Request DEVICE + +Frame 267: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.309263000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.309263000 UTC + Epoch Arrival Time: 1750612889.309263000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001933000 seconds] + [Time delta from previous displayed frame: 0.003590000 seconds] + [Time since reference or first frame: 1.784258000 seconds] + Frame Number: 267 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739be27c0 + IRP USBD_STATUS: Unknown (0xffffde07) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 270] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: DEVICE (0x01) + Language Id: no language specified (0x0000) + wLength: 18 + +No. Time Source Destination Protocol Length Info + 270 1.784413 1.14.0 host USB 46 GET DESCRIPTOR Response DEVICE + +Frame 270: 46 bytes on wire (368 bits), 46 bytes captured (368 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.309418000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.309418000 UTC + Epoch Arrival Time: 1750612889.309418000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000097000 seconds] + [Time delta from previous displayed frame: 0.000155000 seconds] + [Time since reference or first frame: 1.784413000 seconds] + Frame Number: 270 + Frame Length: 46 bytes (368 bits) + Capture Length: 46 bytes (368 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739be27c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 18 + [Request in: 267] + [Time from request: 0.000155000 seconds] + Control transfer stage: Complete (3) +DEVICE DESCRIPTOR + bLength: 18 + bDescriptorType: 0x01 (DEVICE) + bcdUSB: 0x0200 + bDeviceClass: Vendor Specific (0xff) + bDeviceSubClass: 255 + bDeviceProtocol: 255 + bMaxPacketSize0: 64 + idVendor: TEAC Corp. (0x0644) + idProduct: Unknown (0x8020) + bcdDevice: 0x0100 + iManufacturer: 1 + iProduct: 2 + iSerialNumber: 3 + bNumConfigurations: 1 + +No. Time Source Destination Protocol Length Info + 271 1.784430 host 1.14.0 USB 36 SET CONFIGURATION Request + +Frame 271: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.309435000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.309435000 UTC + Epoch Arrival Time: 1750612889.309435000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000017000 seconds] + [Time delta from previous displayed frame: 0.000017000 seconds] + [Time since reference or first frame: 1.784430000 seconds] + Frame Number: 271 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c53aa70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 376] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x00 + 0... .... = Direction: Host-to-device + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: SET CONFIGURATION (9) + bConfigurationValue: 1 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 376 2.019162 1.14.0 host USB 28 SET CONFIGURATION Response + +Frame 376: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.544167000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.544167000 UTC + Epoch Arrival Time: 1750612889.544167000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000832000 seconds] + [Time delta from previous displayed frame: 0.234732000 seconds] + [Time since reference or first frame: 2.019162000 seconds] + Frame Number: 376 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c53aa70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 271] + [Time from request: 0.234732000 seconds] + Control transfer stage: Complete (3) + +No. Time Source Destination Protocol Length Info + 449 2.244956 host 1.14.0 USB 36 URB_CONTROL in + +Frame 449: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.769961000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.769961000 UTC + Epoch Arrival Time: 1750612889.769961000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.132626000 seconds] + [Time delta from previous displayed frame: 0.225794000 seconds] + [Time since reference or first frame: 2.244956000 seconds] + Frame Number: 449 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c7118a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 450] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 1 + +No. Time Source Destination Protocol Length Info + 450 2.245153 1.14.0 host USB 29 URB_CONTROL in + +Frame 450: 29 bytes on wire (232 bits), 29 bytes captured (232 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.770158000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.770158000 UTC + Epoch Arrival Time: 1750612889.770158000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000197000 seconds] + [Time delta from previous displayed frame: 0.000197000 seconds] + [Time since reference or first frame: 2.245153000 seconds] + Frame Number: 450 + Frame Length: 29 bytes (232 bits) + Capture Length: 29 bytes (232 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c7118a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 1 + [Request in: 449] + [Time from request: 0.000197000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 12 + +No. Time Source Destination Protocol Length Info + 451 2.245175 host 1.14.0 USB 36 URB_CONTROL out + +Frame 451: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.770180000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.770180000 UTC + Epoch Arrival Time: 1750612889.770180000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000022000 seconds] + [Time delta from previous displayed frame: 0.000022000 seconds] + [Time since reference or first frame: 2.245175000 seconds] + Frame Number: 451 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c717010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 452] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0010 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 452 2.245406 1.14.0 host USB 28 URB_CONTROL out + +Frame 452: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.770411000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.770411000 UTC + Epoch Arrival Time: 1750612889.770411000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000231000 seconds] + [Time delta from previous displayed frame: 0.000231000 seconds] + [Time since reference or first frame: 2.245406000 seconds] + Frame Number: 452 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c717010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 451] + [Time from request: 0.000231000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 457 2.292043 host 1.14.0 USB 36 URB_CONTROL in + +Frame 457: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.817048000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.817048000 UTC + Epoch Arrival Time: 1750612889.817048000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.007704000 seconds] + [Time delta from previous displayed frame: 0.046637000 seconds] + [Time since reference or first frame: 2.292043000 seconds] + Frame Number: 457 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c5da7c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 458] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 0 (0x0000) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 458 2.292247 1.14.0 host USB 31 URB_CONTROL in + +Frame 458: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.817252000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.817252000 UTC + Epoch Arrival Time: 1750612889.817252000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000204000 seconds] + [Time delta from previous displayed frame: 0.000204000 seconds] + [Time since reference or first frame: 2.292247000 seconds] + Frame Number: 458 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c5da7c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 457] + [Time from request: 0.000204000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 44ac00 + +No. Time Source Destination Protocol Length Info + 459 2.292266 host 1.14.0 USB 36 URB_CONTROL in + +Frame 459: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.817271000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.817271000 UTC + Epoch Arrival Time: 1750612889.817271000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000019000 seconds] + [Time delta from previous displayed frame: 0.000019000 seconds] + [Time since reference or first frame: 2.292266000 seconds] + Frame Number: 459 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c5da7c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 460] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 1 + +No. Time Source Destination Protocol Length Info + 460 2.292429 1.14.0 host USB 29 URB_CONTROL in + +Frame 460: 29 bytes on wire (232 bits), 29 bytes captured (232 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.817434000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.817434000 UTC + Epoch Arrival Time: 1750612889.817434000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000163000 seconds] + [Time delta from previous displayed frame: 0.000163000 seconds] + [Time since reference or first frame: 2.292429000 seconds] + Frame Number: 460 + Frame Length: 29 bytes (232 bits) + Capture Length: 29 bytes (232 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c5da7c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 1 + [Request in: 459] + [Time from request: 0.000163000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 10 + +No. Time Source Destination Protocol Length Info + 461 2.292477 host 1.14.0 USB 36 URB_CONTROL in + +Frame 461: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.817482000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.817482000 UTC + Epoch Arrival Time: 1750612889.817482000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000048000 seconds] + [Time delta from previous displayed frame: 0.000048000 seconds] + [Time since reference or first frame: 2.292477000 seconds] + Frame Number: 461 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739be27c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 462] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 0 (0x0000) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 462 2.292647 1.14.0 host USB 31 URB_CONTROL in + +Frame 462: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.817652000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.817652000 UTC + Epoch Arrival Time: 1750612889.817652000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000170000 seconds] + [Time delta from previous displayed frame: 0.000170000 seconds] + [Time since reference or first frame: 2.292647000 seconds] + Frame Number: 462 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739be27c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 461] + [Time from request: 0.000170000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 44ac00 + +No. Time Source Destination Protocol Length Info + 463 2.292666 host 1.14.0 USB 36 URB_CONTROL in + +Frame 463: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.817671000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.817671000 UTC + Epoch Arrival Time: 1750612889.817671000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000019000 seconds] + [Time delta from previous displayed frame: 0.000019000 seconds] + [Time since reference or first frame: 2.292666000 seconds] + Frame Number: 463 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c5da7c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 464] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 0 (0x0000) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 464 2.292853 1.14.0 host USB 31 URB_CONTROL in + +Frame 464: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.817858000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.817858000 UTC + Epoch Arrival Time: 1750612889.817858000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000187000 seconds] + [Time delta from previous displayed frame: 0.000187000 seconds] + [Time since reference or first frame: 2.292853000 seconds] + Frame Number: 464 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c5da7c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 463] + [Time from request: 0.000187000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 44ac00 + +No. Time Source Destination Protocol Length Info + 465 2.292857 host 1.14.0 USB 39 URB_CONTROL out + +Frame 465: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.817862000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.817862000 UTC + Epoch Arrival Time: 1750612889.817862000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000004000 seconds] + [Time delta from previous displayed frame: 0.000004000 seconds] + [Time since reference or first frame: 2.292857000 seconds] + Frame Number: 465 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c5da7c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 466] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 466 2.292968 1.14.0 host USB 28 URB_CONTROL out + +Frame 466: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.817973000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.817973000 UTC + Epoch Arrival Time: 1750612889.817973000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000111000 seconds] + [Time delta from previous displayed frame: 0.000111000 seconds] + [Time since reference or first frame: 2.292968000 seconds] + Frame Number: 466 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c5da7c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 465] + [Time from request: 0.000111000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 467 2.292994 host 1.14.0 USB 39 URB_CONTROL out + +Frame 467: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.817999000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.817999000 UTC + Epoch Arrival Time: 1750612889.817999000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000026000 seconds] + [Time delta from previous displayed frame: 0.000026000 seconds] + [Time since reference or first frame: 2.292994000 seconds] + Frame Number: 467 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c5da7c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 468] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 468 2.293132 1.14.0 host USB 28 URB_CONTROL out + +Frame 468: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.818137000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.818137000 UTC + Epoch Arrival Time: 1750612889.818137000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000138000 seconds] + [Time delta from previous displayed frame: 0.000138000 seconds] + [Time since reference or first frame: 2.293132000 seconds] + Frame Number: 468 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c5da7c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 467] + [Time from request: 0.000138000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 475 2.309686 host 1.14.0 USB 39 URB_CONTROL out + +Frame 475: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.834691000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.834691000 UTC + Epoch Arrival Time: 1750612889.834691000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001325000 seconds] + [Time delta from previous displayed frame: 0.016554000 seconds] + [Time since reference or first frame: 2.309686000 seconds] + Frame Number: 475 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739be27c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 476] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 476 2.309822 1.14.0 host USB 28 URB_CONTROL out + +Frame 476: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.834827000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.834827000 UTC + Epoch Arrival Time: 1750612889.834827000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000136000 seconds] + [Time delta from previous displayed frame: 0.000136000 seconds] + [Time since reference or first frame: 2.309822000 seconds] + Frame Number: 476 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739be27c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 475] + [Time from request: 0.000136000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 477 2.309830 host 1.14.0 USB 39 URB_CONTROL out + +Frame 477: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.834835000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.834835000 UTC + Epoch Arrival Time: 1750612889.834835000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000008000 seconds] + [Time delta from previous displayed frame: 0.000008000 seconds] + [Time since reference or first frame: 2.309830000 seconds] + Frame Number: 477 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739be27c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 478] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 478 2.309991 1.14.0 host USB 28 URB_CONTROL out + +Frame 478: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.834996000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.834996000 UTC + Epoch Arrival Time: 1750612889.834996000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000161000 seconds] + [Time delta from previous displayed frame: 0.000161000 seconds] + [Time since reference or first frame: 2.309991000 seconds] + Frame Number: 478 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739be27c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 477] + [Time from request: 0.000161000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 479 2.309999 host 1.14.0 USB 36 URB_CONTROL in + +Frame 479: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.835004000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.835004000 UTC + Epoch Arrival Time: 1750612889.835004000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000008000 seconds] + [Time delta from previous displayed frame: 0.000008000 seconds] + [Time since reference or first frame: 2.309999000 seconds] + Frame Number: 479 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c611560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 480] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0d00 + wIndex: 257 (0x0101) + wLength: 5 + +No. Time Source Destination Protocol Length Info + 480 2.310235 1.14.0 host USB 33 URB_CONTROL in + +Frame 480: 33 bytes on wire (264 bits), 33 bytes captured (264 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.835240000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.835240000 UTC + Epoch Arrival Time: 1750612889.835240000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000236000 seconds] + [Time delta from previous displayed frame: 0.000236000 seconds] + [Time since reference or first frame: 2.310235000 seconds] + Frame Number: 480 + Frame Length: 33 bytes (264 bits) + Capture Length: 33 bytes (264 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c611560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 5 + [Request in: 479] + [Time from request: 0.000236000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 0492000200 + +No. Time Source Destination Protocol Length Info + 481 2.310243 host 1.14.0 USB 36 URB_CONTROL out + +Frame 481: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.835248000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.835248000 UTC + Epoch Arrival Time: 1750612889.835248000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000008000 seconds] + [Time delta from previous displayed frame: 0.000008000 seconds] + [Time since reference or first frame: 2.310243000 seconds] + Frame Number: 481 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c6a0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 482] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0d04 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 482 2.310322 1.14.0 host USB 28 URB_CONTROL out + +Frame 482: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.835327000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.835327000 UTC + Epoch Arrival Time: 1750612889.835327000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000079000 seconds] + [Time delta from previous displayed frame: 0.000079000 seconds] + [Time since reference or first frame: 2.310322000 seconds] + Frame Number: 482 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c6a0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 481] + [Time from request: 0.000079000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 483 2.310331 host 1.14.0 USB 36 URB_CONTROL out + +Frame 483: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.835336000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.835336000 UTC + Epoch Arrival Time: 1750612889.835336000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000009000 seconds] + [Time delta from previous displayed frame: 0.000009000 seconds] + [Time since reference or first frame: 2.310331000 seconds] + Frame Number: 483 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ef87a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 484] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0e00 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 484 2.310403 1.14.0 host USB 28 URB_CONTROL out + +Frame 484: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.835408000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.835408000 UTC + Epoch Arrival Time: 1750612889.835408000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000072000 seconds] + [Time delta from previous displayed frame: 0.000072000 seconds] + [Time since reference or first frame: 2.310403000 seconds] + Frame Number: 484 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ef87a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 483] + [Time from request: 0.000072000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 485 2.310409 host 1.14.0 USB 36 URB_CONTROL out + +Frame 485: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.835414000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.835414000 UTC + Epoch Arrival Time: 1750612889.835414000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000006000 seconds] + [Time delta from previous displayed frame: 0.000006000 seconds] + [Time since reference or first frame: 2.310409000 seconds] + Frame Number: 485 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ef87a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 486] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0f00 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 486 2.310470 1.14.0 host USB 28 URB_CONTROL out + +Frame 486: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.835475000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.835475000 UTC + Epoch Arrival Time: 1750612889.835475000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000061000 seconds] + [Time delta from previous displayed frame: 0.000061000 seconds] + [Time since reference or first frame: 2.310470000 seconds] + Frame Number: 486 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ef87a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 485] + [Time from request: 0.000061000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 487 2.310477 host 1.14.0 USB 36 URB_CONTROL out + +Frame 487: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.835482000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.835482000 UTC + Epoch Arrival Time: 1750612889.835482000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000007000 seconds] + [Time delta from previous displayed frame: 0.000007000 seconds] + [Time since reference or first frame: 2.310477000 seconds] + Frame Number: 487 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c6a0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 488] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x1002 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 488 2.310543 1.14.0 host USB 28 URB_CONTROL out + +Frame 488: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.835548000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.835548000 UTC + Epoch Arrival Time: 1750612889.835548000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000066000 seconds] + [Time delta from previous displayed frame: 0.000066000 seconds] + [Time since reference or first frame: 2.310543000 seconds] + Frame Number: 488 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c6a0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 487] + [Time from request: 0.000066000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 489 2.310550 host 1.14.0 USB 36 URB_CONTROL out + +Frame 489: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.835555000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.835555000 UTC + Epoch Arrival Time: 1750612889.835555000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000007000 seconds] + [Time delta from previous displayed frame: 0.000007000 seconds] + [Time since reference or first frame: 2.310550000 seconds] + Frame Number: 489 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c6a0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 490] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x110b + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 490 2.310675 1.14.0 host USB 28 URB_CONTROL out + +Frame 490: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.835680000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.835680000 UTC + Epoch Arrival Time: 1750612889.835680000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000125000 seconds] + [Time delta from previous displayed frame: 0.000125000 seconds] + [Time since reference or first frame: 2.310675000 seconds] + Frame Number: 490 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c6a0010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 489] + [Time from request: 0.000125000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 491 2.310728 host 1.14.0 USB 39 URB_CONTROL out + +Frame 491: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.835733000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.835733000 UTC + Epoch Arrival Time: 1750612889.835733000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000053000 seconds] + [Time delta from previous displayed frame: 0.000053000 seconds] + [Time since reference or first frame: 2.310728000 seconds] + Frame Number: 491 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ef87a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 492] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 492 2.310850 1.14.0 host USB 28 URB_CONTROL out + +Frame 492: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.835855000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.835855000 UTC + Epoch Arrival Time: 1750612889.835855000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000122000 seconds] + [Time delta from previous displayed frame: 0.000122000 seconds] + [Time since reference or first frame: 2.310850000 seconds] + Frame Number: 492 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ef87a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 491] + [Time from request: 0.000122000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 493 2.310858 host 1.14.0 USB 39 URB_CONTROL out + +Frame 493: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.835863000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.835863000 UTC + Epoch Arrival Time: 1750612889.835863000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000008000 seconds] + [Time delta from previous displayed frame: 0.000008000 seconds] + [Time since reference or first frame: 2.310858000 seconds] + Frame Number: 493 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ebcba70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 494] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 494 2.311020 1.14.0 host USB 28 URB_CONTROL out + +Frame 494: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.836025000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.836025000 UTC + Epoch Arrival Time: 1750612889.836025000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000162000 seconds] + [Time delta from previous displayed frame: 0.000162000 seconds] + [Time since reference or first frame: 2.311020000 seconds] + Frame Number: 494 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ebcba70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 493] + [Time from request: 0.000162000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 495 2.311030 host 1.14.0 USB 39 URB_CONTROL out + +Frame 495: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.836035000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.836035000 UTC + Epoch Arrival Time: 1750612889.836035000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000010000 seconds] + [Time delta from previous displayed frame: 0.000010000 seconds] + [Time since reference or first frame: 2.311030000 seconds] + Frame Number: 495 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ebcba70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 496] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 496 2.311182 1.14.0 host USB 28 URB_CONTROL out + +Frame 496: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.836187000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.836187000 UTC + Epoch Arrival Time: 1750612889.836187000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000152000 seconds] + [Time delta from previous displayed frame: 0.000152000 seconds] + [Time since reference or first frame: 2.311182000 seconds] + Frame Number: 496 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ebcba70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 495] + [Time from request: 0.000152000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 497 2.311201 host 1.14.0 USB 36 URB_CONTROL in + +Frame 497: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.836206000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.836206000 UTC + Epoch Arrival Time: 1750612889.836206000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000019000 seconds] + [Time delta from previous displayed frame: 0.000019000 seconds] + [Time since reference or first frame: 2.311201000 seconds] + Frame Number: 497 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ebcba70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 498] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 498 2.311398 1.14.0 host USB 31 URB_CONTROL in + +Frame 498: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.836403000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.836403000 UTC + Epoch Arrival Time: 1750612889.836403000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000197000 seconds] + [Time delta from previous displayed frame: 0.000197000 seconds] + [Time since reference or first frame: 2.311398000 seconds] + Frame Number: 498 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ebcba70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 497] + [Time from request: 0.000197000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] +CONTROL response data: 80bb00 + +No. Time Source Destination Protocol Length Info + 499 2.311417 host 1.14.0 USB 36 URB_CONTROL in + +Frame 499: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.836422000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.836422000 UTC + Epoch Arrival Time: 1750612889.836422000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000019000 seconds] + [Time delta from previous displayed frame: 0.000019000 seconds] + [Time since reference or first frame: 2.311417000 seconds] + Frame Number: 499 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c611560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 500] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 1 + +No. Time Source Destination Protocol Length Info + 500 2.311603 1.14.0 host USB 29 URB_CONTROL in + +Frame 500: 29 bytes on wire (232 bits), 29 bytes captured (232 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.836608000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.836608000 UTC + Epoch Arrival Time: 1750612889.836608000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000186000 seconds] + [Time delta from previous displayed frame: 0.000186000 seconds] + [Time since reference or first frame: 2.311603000 seconds] + Frame Number: 500 + Frame Length: 29 bytes (232 bits) + Capture Length: 29 bytes (232 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c611560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 1 + [Request in: 499] + [Time from request: 0.000186000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 10 + +No. Time Source Destination Protocol Length Info + 501 2.311623 host 1.14.0 USB 36 URB_CONTROL out + +Frame 501: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.836628000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.836628000 UTC + Epoch Arrival Time: 1750612889.836628000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000020000 seconds] + [Time delta from previous displayed frame: 0.000020000 seconds] + [Time since reference or first frame: 2.311623000 seconds] + Frame Number: 501 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.14.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c611560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 502] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0030 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 502 2.311853 1.14.0 host USB 28 URB_CONTROL out + +Frame 502: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:21:29.836858000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:21:29.836858000 UTC + Epoch Arrival Time: 1750612889.836858000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000230000 seconds] + [Time delta from previous displayed frame: 0.000230000 seconds] + [Time since reference or first frame: 2.311853000 seconds] + Frame Number: 502 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.14.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c611560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 14 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 501] + [Time from request: 0.000230000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] diff --git a/reverse_eng_dataset/48000k_playback_24bitrate_on_connect_event_tascam144mk2.txt b/reverse_eng_dataset/48000k_playback_24bitrate_on_connect_event_tascam144mk2.txt new file mode 100644 index 0000000..13a274d --- /dev/null +++ b/reverse_eng_dataset/48000k_playback_24bitrate_on_connect_event_tascam144mk2.txt @@ -0,0 +1,3139 @@ +No. Time Source Destination Protocol Length Info + 13993 16.325597 host 1.13.0 USB 36 GET DESCRIPTOR Request DEVICE + +Frame 13993: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:25.532461000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:25.532461000 UTC + Epoch Arrival Time: 1750612765.532461000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 1.439807000 seconds] + [Time delta from previous displayed frame: 0.000000000 seconds] + [Time since reference or first frame: 16.325597000 seconds] + Frame Number: 13993 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c652a80 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 13994] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: DEVICE (0x01) + Language Id: no language specified (0x0000) + wLength: 18 + +No. Time Source Destination Protocol Length Info + 13994 16.325767 1.13.0 host USB 46 GET DESCRIPTOR Response DEVICE + +Frame 13994: 46 bytes on wire (368 bits), 46 bytes captured (368 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:25.532631000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:25.532631000 UTC + Epoch Arrival Time: 1750612765.532631000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000170000 seconds] + [Time delta from previous displayed frame: 0.000170000 seconds] + [Time since reference or first frame: 16.325767000 seconds] + Frame Number: 13994 + Frame Length: 46 bytes (368 bits) + Capture Length: 46 bytes (368 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c652a80 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 18 + [Request in: 13993] + [Time from request: 0.000170000 seconds] + Control transfer stage: Complete (3) +DEVICE DESCRIPTOR + bLength: 18 + bDescriptorType: 0x01 (DEVICE) + bcdUSB: 0x0200 + bDeviceClass: Vendor Specific (0xff) + bDeviceSubClass: 255 + bDeviceProtocol: 255 + bMaxPacketSize0: 64 + idVendor: TEAC Corp. (0x0644) + idProduct: Unknown (0x8020) + bcdDevice: 0x0100 + iManufacturer: 1 + iProduct: 2 + iSerialNumber: 3 + bNumConfigurations: 1 + +No. Time Source Destination Protocol Length Info + 13995 16.393234 host 1.13.0 USB 36 URB_CONTROL in + +Frame 13995: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:25.600098000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:25.600098000 UTC + Epoch Arrival Time: 1750612765.600098000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.067467000 seconds] + [Time delta from previous displayed frame: 0.067467000 seconds] + [Time since reference or first frame: 16.393234000 seconds] + Frame Number: 13995 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073777c2a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 13996] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 86 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 15 + +No. Time Source Destination Protocol Length Info + 13996 16.393386 1.13.0 host USB 43 URB_CONTROL in + +Frame 13996: 43 bytes on wire (344 bits), 43 bytes captured (344 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:25.600250000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:25.600250000 UTC + Epoch Arrival Time: 1750612765.600250000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000152000 seconds] + [Time delta from previous displayed frame: 0.000152000 seconds] + [Time since reference or first frame: 16.393386000 seconds] + Frame Number: 13996 + Frame Length: 43 bytes (344 bits) + Capture Length: 43 bytes (344 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073777c2a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 15 + [Request in: 13995] + [Time from request: 0.000152000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 31020356322e30332020202000ffff + +No. Time Source Destination Protocol Length Info + 13997 16.393409 host 1.13.0 USB 36 URB_CONTROL in + +Frame 13997: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:25.600273000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:25.600273000 UTC + Epoch Arrival Time: 1750612765.600273000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000023000 seconds] + [Time delta from previous displayed frame: 0.000023000 seconds] + [Time since reference or first frame: 16.393409000 seconds] + Frame Number: 13997 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073777c2a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 13998] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 86 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 15 + +No. Time Source Destination Protocol Length Info + 13998 16.393527 1.13.0 host USB 43 URB_CONTROL in + +Frame 13998: 43 bytes on wire (344 bits), 43 bytes captured (344 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:25.600391000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:25.600391000 UTC + Epoch Arrival Time: 1750612765.600391000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000118000 seconds] + [Time delta from previous displayed frame: 0.000118000 seconds] + [Time since reference or first frame: 16.393527000 seconds] + Frame Number: 13998 + Frame Length: 43 bytes (344 bits) + Capture Length: 43 bytes (344 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073777c2a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 15 + [Request in: 13997] + [Time from request: 0.000118000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 31020356322e30332020202000ffff + +No. Time Source Destination Protocol Length Info + 13999 16.393604 host 1.13.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 13999: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:25.600468000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:25.600468000 UTC + Epoch Arrival Time: 1750612765.600468000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000077000 seconds] + [Time delta from previous displayed frame: 0.000077000 seconds] + [Time since reference or first frame: 16.393604000 seconds] + Frame Number: 13999 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073777c2a0 + IRP USBD_STATUS: Unknown (0xffffde07) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 14000] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x01 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 14000 16.393759 1.13.0 host USB 42 GET DESCRIPTOR Response STRING + +Frame 14000: 42 bytes on wire (336 bits), 42 bytes captured (336 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:25.600623000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:25.600623000 UTC + Epoch Arrival Time: 1750612765.600623000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000155000 seconds] + [Time delta from previous displayed frame: 0.000155000 seconds] + [Time since reference or first frame: 16.393759000 seconds] + Frame Number: 14000 + Frame Length: 42 bytes (336 bits) + Capture Length: 42 bytes (336 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073777c2a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 14 + [Request in: 13999] + [Time from request: 0.000155000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 14 + bDescriptorType: 0x03 (STRING) + bString: TASCAM + +No. Time Source Destination Protocol Length Info + 14001 16.393818 host 1.13.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 14001: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:25.600682000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:25.600682000 UTC + Epoch Arrival Time: 1750612765.600682000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000059000 seconds] + [Time delta from previous displayed frame: 0.000059000 seconds] + [Time since reference or first frame: 16.393818000 seconds] + Frame Number: 14001 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073777c2a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 14002] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x02 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 14002 16.394017 1.13.0 host USB 52 GET DESCRIPTOR Response STRING + +Frame 14002: 52 bytes on wire (416 bits), 52 bytes captured (416 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:25.600881000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:25.600881000 UTC + Epoch Arrival Time: 1750612765.600881000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000199000 seconds] + [Time delta from previous displayed frame: 0.000199000 seconds] + [Time since reference or first frame: 16.394017000 seconds] + Frame Number: 14002 + Frame Length: 52 bytes (416 bits) + Capture Length: 52 bytes (416 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073777c2a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 24 + [Request in: 14001] + [Time from request: 0.000199000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 24 + bDescriptorType: 0x03 (STRING) + bString: US-144 MKII + +No. Time Source Destination Protocol Length Info + 14003 16.394087 host 1.13.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 14003: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:25.600951000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:25.600951000 UTC + Epoch Arrival Time: 1750612765.600951000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000070000 seconds] + [Time delta from previous displayed frame: 0.000070000 seconds] + [Time since reference or first frame: 16.394087000 seconds] + Frame Number: 14003 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073777c2a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 14004] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x03 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 14004 16.394259 1.13.0 host USB 62 GET DESCRIPTOR Response STRING + +Frame 14004: 62 bytes on wire (496 bits), 62 bytes captured (496 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:25.601123000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:25.601123000 UTC + Epoch Arrival Time: 1750612765.601123000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000172000 seconds] + [Time delta from previous displayed frame: 0.000172000 seconds] + [Time since reference or first frame: 16.394259000 seconds] + Frame Number: 14004 + Frame Length: 62 bytes (496 bits) + Capture Length: 62 bytes (496 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073777c2a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 34 + [Request in: 14003] + [Time from request: 0.000172000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 34 + bDescriptorType: 0x03 (STRING) + bString: no serial number + +No. Time Source Destination Protocol Length Info + 14005 16.394274 host 1.13.0 USB 36 GET DESCRIPTOR Request CONFIGURATION + +Frame 14005: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:25.601138000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:25.601138000 UTC + Epoch Arrival Time: 1750612765.601138000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000015000 seconds] + [Time delta from previous displayed frame: 0.000015000 seconds] + [Time since reference or first frame: 16.394274000 seconds] + Frame Number: 14005 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde07385137d0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 14006] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: CONFIGURATION (0x02) + Language Id: no language specified (0x0000) + wLength: 1033 + +No. Time Source Destination Protocol Length Info + 14006 16.394565 1.13.0 host USB 108 GET DESCRIPTOR Response CONFIGURATION + +Frame 14006: 108 bytes on wire (864 bits), 108 bytes captured (864 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:25.601429000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:25.601429000 UTC + Epoch Arrival Time: 1750612765.601429000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000291000 seconds] + [Time delta from previous displayed frame: 0.000291000 seconds] + [Time since reference or first frame: 16.394565000 seconds] + Frame Number: 14006 + Frame Length: 108 bytes (864 bits) + Capture Length: 108 bytes (864 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde07385137d0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 80 + [Request in: 14005] + [Time from request: 0.000291000 seconds] + Control transfer stage: Complete (3) +CONFIGURATION DESCRIPTOR + bLength: 9 + bDescriptorType: 0x02 (CONFIGURATION) + wTotalLength: 80 + bNumInterfaces: 2 + bConfigurationValue: 1 + iConfiguration: 0 + Configuration bmAttributes: 0x80 NOT SELF-POWERED NO REMOTE-WAKEUP + 1... .... = Must be 1: Must be 1 for USB 1.1 and higher + .0.. .... = Self-Powered: This device is powered from the USB bus + ..0. .... = Remote Wakeup: This device does NOT support remote wakeup + bMaxPower: 240 (480mA) +INTERFACE DESCRIPTOR (0.0): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 0 + bAlternateSetting: 0 + bNumEndpoints: 0 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +INTERFACE DESCRIPTOR (0.1): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 0 + bAlternateSetting: 1 + bNumEndpoints: 3 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x02 OUT Endpoint:2 + 0... .... = Direction: OUT Endpoint + .... 0010 = Endpoint Number: 0x2 + bmAttributes: 0x05 + .... ..01 = Transfertype: Isochronous-Transfer (0x1) + .... 01.. = Synchronisationtype: Asynchronous (0x1) + ..00 .... = Behaviourtype: Data-Endpoint (0x0) + wMaxPacketSize: 156 + ...0 0... .... .... = Transactions per microframe: 1 (0) + .... .000 1001 1100 = Maximum Packet Size: 156 + bInterval: 1 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x83 IN Endpoint:3 + 1... .... = Direction: IN Endpoint + .... 0011 = Endpoint Number: 0x3 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 4 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x04 OUT Endpoint:4 + 0... .... = Direction: OUT Endpoint + .... 0100 = Endpoint Number: 0x4 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 4 +INTERFACE DESCRIPTOR (1.0): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 1 + bAlternateSetting: 0 + bNumEndpoints: 0 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +INTERFACE DESCRIPTOR (1.1): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 1 + bAlternateSetting: 1 + bNumEndpoints: 2 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x81 IN Endpoint:1 + 1... .... = Direction: IN Endpoint + .... 0001 = Endpoint Number: 0x1 + bmAttributes: 0x05 + .... ..01 = Transfertype: Isochronous-Transfer (0x1) + .... 01.. = Synchronisationtype: Asynchronous (0x1) + ..00 .... = Behaviourtype: Data-Endpoint (0x0) + wMaxPacketSize: 64 + ...0 0... .... .... = Transactions per microframe: 1 (0) + .... .000 0100 0000 = Maximum Packet Size: 64 + bInterval: 4 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x86 IN Endpoint:6 + 1... .... = Direction: IN Endpoint + .... 0110 = Endpoint Number: 0x6 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 1 + +No. Time Source Destination Protocol Length Info + 14007 16.397749 host 1.13.0 USB 36 GET DESCRIPTOR Request DEVICE + +Frame 14007: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:25.604613000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:25.604613000 UTC + Epoch Arrival Time: 1750612765.604613000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.003184000 seconds] + [Time delta from previous displayed frame: 0.003184000 seconds] + [Time since reference or first frame: 16.397749000 seconds] + Frame Number: 14007 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073777c2a0 + IRP USBD_STATUS: Unknown (0xffffde07) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 14008] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: DEVICE (0x01) + Language Id: no language specified (0x0000) + wLength: 18 + +No. Time Source Destination Protocol Length Info + 14008 16.397905 1.13.0 host USB 46 GET DESCRIPTOR Response DEVICE + +Frame 14008: 46 bytes on wire (368 bits), 46 bytes captured (368 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:25.604769000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:25.604769000 UTC + Epoch Arrival Time: 1750612765.604769000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000156000 seconds] + [Time delta from previous displayed frame: 0.000156000 seconds] + [Time since reference or first frame: 16.397905000 seconds] + Frame Number: 14008 + Frame Length: 46 bytes (368 bits) + Capture Length: 46 bytes (368 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073777c2a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 18 + [Request in: 14007] + [Time from request: 0.000156000 seconds] + Control transfer stage: Complete (3) +DEVICE DESCRIPTOR + bLength: 18 + bDescriptorType: 0x01 (DEVICE) + bcdUSB: 0x0200 + bDeviceClass: Vendor Specific (0xff) + bDeviceSubClass: 255 + bDeviceProtocol: 255 + bMaxPacketSize0: 64 + idVendor: TEAC Corp. (0x0644) + idProduct: Unknown (0x8020) + bcdDevice: 0x0100 + iManufacturer: 1 + iProduct: 2 + iSerialNumber: 3 + bNumConfigurations: 1 + +No. Time Source Destination Protocol Length Info + 14009 16.397923 host 1.13.0 USB 36 SET CONFIGURATION Request + +Frame 14009: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:25.604787000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:25.604787000 UTC + Epoch Arrival Time: 1750612765.604787000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000018000 seconds] + [Time delta from previous displayed frame: 0.000018000 seconds] + [Time since reference or first frame: 16.397923000 seconds] + Frame Number: 14009 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073777c2a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 14010] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x00 + 0... .... = Direction: Host-to-device + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: SET CONFIGURATION (9) + bConfigurationValue: 1 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 14010 16.632568 1.13.0 host USB 28 SET CONFIGURATION Response + +Frame 14010: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:25.839432000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:25.839432000 UTC + Epoch Arrival Time: 1750612765.839432000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.234645000 seconds] + [Time delta from previous displayed frame: 0.234645000 seconds] + [Time since reference or first frame: 16.632568000 seconds] + Frame Number: 14010 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073777c2a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 14009] + [Time from request: 0.234645000 seconds] + Control transfer stage: Complete (3) + +No. Time Source Destination Protocol Length Info + 14011 16.848715 host 1.13.0 USB 36 URB_CONTROL in + +Frame 14011: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.055579000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.055579000 UTC + Epoch Arrival Time: 1750612766.055579000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.216147000 seconds] + [Time delta from previous displayed frame: 0.216147000 seconds] + [Time since reference or first frame: 16.848715000 seconds] + Frame Number: 14011 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c695010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 14012] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 1 + +No. Time Source Destination Protocol Length Info + 14012 16.848996 1.13.0 host USB 29 URB_CONTROL in + +Frame 14012: 29 bytes on wire (232 bits), 29 bytes captured (232 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.055860000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.055860000 UTC + Epoch Arrival Time: 1750612766.055860000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000281000 seconds] + [Time delta from previous displayed frame: 0.000281000 seconds] + [Time since reference or first frame: 16.848996000 seconds] + Frame Number: 14012 + Frame Length: 29 bytes (232 bits) + Capture Length: 29 bytes (232 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c695010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 1 + [Request in: 14011] + [Time from request: 0.000281000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 12 + +No. Time Source Destination Protocol Length Info + 14013 16.849023 host 1.13.0 USB 36 URB_CONTROL out + +Frame 14013: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.055887000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.055887000 UTC + Epoch Arrival Time: 1750612766.055887000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000027000 seconds] + [Time delta from previous displayed frame: 0.000027000 seconds] + [Time since reference or first frame: 16.849023000 seconds] + Frame Number: 14013 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c652a80 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 14014] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0010 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 14014 16.849257 1.13.0 host USB 28 URB_CONTROL out + +Frame 14014: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.056121000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.056121000 UTC + Epoch Arrival Time: 1750612766.056121000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000234000 seconds] + [Time delta from previous displayed frame: 0.000234000 seconds] + [Time since reference or first frame: 16.849257000 seconds] + Frame Number: 14014 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c652a80 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 14013] + [Time from request: 0.000234000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 14015 16.895963 host 1.13.0 USB 36 URB_CONTROL in + +Frame 14015: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.102827000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.102827000 UTC + Epoch Arrival Time: 1750612766.102827000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.046706000 seconds] + [Time delta from previous displayed frame: 0.046706000 seconds] + [Time since reference or first frame: 16.895963000 seconds] + Frame Number: 14015 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c652a80 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 14016] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 0 (0x0000) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 14016 16.896163 1.13.0 host USB 31 URB_CONTROL in + +Frame 14016: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.103027000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.103027000 UTC + Epoch Arrival Time: 1750612766.103027000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000200000 seconds] + [Time delta from previous displayed frame: 0.000200000 seconds] + [Time since reference or first frame: 16.896163000 seconds] + Frame Number: 14016 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c652a80 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 14015] + [Time from request: 0.000200000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 44ac00 + +No. Time Source Destination Protocol Length Info + 14017 16.896170 host 1.13.0 USB 36 URB_CONTROL in + +Frame 14017: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.103034000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.103034000 UTC + Epoch Arrival Time: 1750612766.103034000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000007000 seconds] + [Time delta from previous displayed frame: 0.000007000 seconds] + [Time since reference or first frame: 16.896170000 seconds] + Frame Number: 14017 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c652a80 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 14018] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 1 + +No. Time Source Destination Protocol Length Info + 14018 16.896327 1.13.0 host USB 29 URB_CONTROL in + +Frame 14018: 29 bytes on wire (232 bits), 29 bytes captured (232 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.103191000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.103191000 UTC + Epoch Arrival Time: 1750612766.103191000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000157000 seconds] + [Time delta from previous displayed frame: 0.000157000 seconds] + [Time since reference or first frame: 16.896327000 seconds] + Frame Number: 14018 + Frame Length: 29 bytes (232 bits) + Capture Length: 29 bytes (232 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c652a80 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 1 + [Request in: 14017] + [Time from request: 0.000157000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 10 + +No. Time Source Destination Protocol Length Info + 14019 16.896331 host 1.13.0 USB 36 URB_CONTROL in + +Frame 14019: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.103195000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.103195000 UTC + Epoch Arrival Time: 1750612766.103195000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000004000 seconds] + [Time delta from previous displayed frame: 0.000004000 seconds] + [Time since reference or first frame: 16.896331000 seconds] + Frame Number: 14019 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c652a80 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 14020] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 0 (0x0000) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 14020 16.896486 1.13.0 host USB 31 URB_CONTROL in + +Frame 14020: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.103350000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.103350000 UTC + Epoch Arrival Time: 1750612766.103350000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000155000 seconds] + [Time delta from previous displayed frame: 0.000155000 seconds] + [Time since reference or first frame: 16.896486000 seconds] + Frame Number: 14020 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c652a80 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 14019] + [Time from request: 0.000155000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 44ac00 + +No. Time Source Destination Protocol Length Info + 14021 16.896490 host 1.13.0 USB 36 URB_CONTROL in + +Frame 14021: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.103354000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.103354000 UTC + Epoch Arrival Time: 1750612766.103354000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000004000 seconds] + [Time delta from previous displayed frame: 0.000004000 seconds] + [Time since reference or first frame: 16.896490000 seconds] + Frame Number: 14021 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c652a80 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 14022] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 0 (0x0000) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 14022 16.896642 1.13.0 host USB 31 URB_CONTROL in + +Frame 14022: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.103506000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.103506000 UTC + Epoch Arrival Time: 1750612766.103506000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000152000 seconds] + [Time delta from previous displayed frame: 0.000152000 seconds] + [Time since reference or first frame: 16.896642000 seconds] + Frame Number: 14022 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c652a80 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 14021] + [Time from request: 0.000152000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 44ac00 + +No. Time Source Destination Protocol Length Info + 14023 16.896650 host 1.13.0 USB 39 URB_CONTROL out + +Frame 14023: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.103514000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.103514000 UTC + Epoch Arrival Time: 1750612766.103514000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000008000 seconds] + [Time delta from previous displayed frame: 0.000008000 seconds] + [Time since reference or first frame: 16.896650000 seconds] + Frame Number: 14023 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073777c2a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 14024] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 14024 16.896777 1.13.0 host USB 28 URB_CONTROL out + +Frame 14024: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.103641000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.103641000 UTC + Epoch Arrival Time: 1750612766.103641000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000127000 seconds] + [Time delta from previous displayed frame: 0.000127000 seconds] + [Time since reference or first frame: 16.896777000 seconds] + Frame Number: 14024 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073777c2a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 14023] + [Time from request: 0.000127000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 14025 16.896795 host 1.13.0 USB 39 URB_CONTROL out + +Frame 14025: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.103659000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.103659000 UTC + Epoch Arrival Time: 1750612766.103659000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000018000 seconds] + [Time delta from previous displayed frame: 0.000018000 seconds] + [Time since reference or first frame: 16.896795000 seconds] + Frame Number: 14025 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c695010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 14026] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 14026 16.897011 1.13.0 host USB 28 URB_CONTROL out + +Frame 14026: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.103875000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.103875000 UTC + Epoch Arrival Time: 1750612766.103875000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000216000 seconds] + [Time delta from previous displayed frame: 0.000216000 seconds] + [Time since reference or first frame: 16.897011000 seconds] + Frame Number: 14026 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c695010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 14025] + [Time from request: 0.000216000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 14027 16.916920 host 1.13.0 USB 39 URB_CONTROL out + +Frame 14027: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.123784000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.123784000 UTC + Epoch Arrival Time: 1750612766.123784000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.019909000 seconds] + [Time delta from previous displayed frame: 0.019909000 seconds] + [Time since reference or first frame: 16.916920000 seconds] + Frame Number: 14027 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739beb7c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 14028] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 14028 16.917070 1.13.0 host USB 28 URB_CONTROL out + +Frame 14028: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.123934000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.123934000 UTC + Epoch Arrival Time: 1750612766.123934000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000150000 seconds] + [Time delta from previous displayed frame: 0.000150000 seconds] + [Time since reference or first frame: 16.917070000 seconds] + Frame Number: 14028 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739beb7c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 14027] + [Time from request: 0.000150000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 14029 16.917080 host 1.13.0 USB 39 URB_CONTROL out + +Frame 14029: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.123944000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.123944000 UTC + Epoch Arrival Time: 1750612766.123944000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000010000 seconds] + [Time delta from previous displayed frame: 0.000010000 seconds] + [Time since reference or first frame: 16.917080000 seconds] + Frame Number: 14029 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739beb7c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 14030] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 14030 16.917285 1.13.0 host USB 28 URB_CONTROL out + +Frame 14030: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.124149000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.124149000 UTC + Epoch Arrival Time: 1750612766.124149000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000205000 seconds] + [Time delta from previous displayed frame: 0.000205000 seconds] + [Time since reference or first frame: 16.917285000 seconds] + Frame Number: 14030 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739beb7c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 14029] + [Time from request: 0.000205000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 14031 16.917295 host 1.13.0 USB 36 URB_CONTROL in + +Frame 14031: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.124159000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.124159000 UTC + Epoch Arrival Time: 1750612766.124159000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000010000 seconds] + [Time delta from previous displayed frame: 0.000010000 seconds] + [Time since reference or first frame: 16.917295000 seconds] + Frame Number: 14031 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c430a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 14032] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0d00 + wIndex: 257 (0x0101) + wLength: 5 + +No. Time Source Destination Protocol Length Info + 14032 16.917532 1.13.0 host USB 33 URB_CONTROL in + +Frame 14032: 33 bytes on wire (264 bits), 33 bytes captured (264 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.124396000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.124396000 UTC + Epoch Arrival Time: 1750612766.124396000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000237000 seconds] + [Time delta from previous displayed frame: 0.000237000 seconds] + [Time since reference or first frame: 16.917532000 seconds] + Frame Number: 14032 + Frame Length: 33 bytes (264 bits) + Capture Length: 33 bytes (264 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c430a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 5 + [Request in: 14031] + [Time from request: 0.000237000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 0492000200 + +No. Time Source Destination Protocol Length Info + 14033 16.917543 host 1.13.0 USB 36 URB_CONTROL out + +Frame 14033: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.124407000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.124407000 UTC + Epoch Arrival Time: 1750612766.124407000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000011000 seconds] + [Time delta from previous displayed frame: 0.000011000 seconds] + [Time since reference or first frame: 16.917543000 seconds] + Frame Number: 14033 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c430a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 14034] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0d04 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 14034 16.917615 1.13.0 host USB 28 URB_CONTROL out + +Frame 14034: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.124479000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.124479000 UTC + Epoch Arrival Time: 1750612766.124479000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000072000 seconds] + [Time delta from previous displayed frame: 0.000072000 seconds] + [Time since reference or first frame: 16.917615000 seconds] + Frame Number: 14034 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c430a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 14033] + [Time from request: 0.000072000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 14035 16.917673 host 1.13.0 USB 36 URB_CONTROL out + +Frame 14035: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.124537000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.124537000 UTC + Epoch Arrival Time: 1750612766.124537000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000058000 seconds] + [Time delta from previous displayed frame: 0.000058000 seconds] + [Time since reference or first frame: 16.917673000 seconds] + Frame Number: 14035 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739be27c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 14036] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0e00 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 14036 16.917741 1.13.0 host USB 28 URB_CONTROL out + +Frame 14036: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.124605000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.124605000 UTC + Epoch Arrival Time: 1750612766.124605000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000068000 seconds] + [Time delta from previous displayed frame: 0.000068000 seconds] + [Time since reference or first frame: 16.917741000 seconds] + Frame Number: 14036 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739be27c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 14035] + [Time from request: 0.000068000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 14037 16.917747 host 1.13.0 USB 36 URB_CONTROL out + +Frame 14037: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.124611000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.124611000 UTC + Epoch Arrival Time: 1750612766.124611000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000006000 seconds] + [Time delta from previous displayed frame: 0.000006000 seconds] + [Time since reference or first frame: 16.917747000 seconds] + Frame Number: 14037 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c724010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 14038] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0f00 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 14038 16.917809 1.13.0 host USB 28 URB_CONTROL out + +Frame 14038: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.124673000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.124673000 UTC + Epoch Arrival Time: 1750612766.124673000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000062000 seconds] + [Time delta from previous displayed frame: 0.000062000 seconds] + [Time since reference or first frame: 16.917809000 seconds] + Frame Number: 14038 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c724010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 14037] + [Time from request: 0.000062000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 14039 16.917840 host 1.13.0 USB 36 URB_CONTROL out + +Frame 14039: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.124704000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.124704000 UTC + Epoch Arrival Time: 1750612766.124704000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000031000 seconds] + [Time delta from previous displayed frame: 0.000031000 seconds] + [Time since reference or first frame: 16.917840000 seconds] + Frame Number: 14039 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739be27c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 14040] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x1002 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 14040 16.917956 1.13.0 host USB 28 URB_CONTROL out + +Frame 14040: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.124820000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.124820000 UTC + Epoch Arrival Time: 1750612766.124820000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000116000 seconds] + [Time delta from previous displayed frame: 0.000116000 seconds] + [Time since reference or first frame: 16.917956000 seconds] + Frame Number: 14040 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739be27c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 14039] + [Time from request: 0.000116000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 14041 16.917975 host 1.13.0 USB 36 URB_CONTROL out + +Frame 14041: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.124839000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.124839000 UTC + Epoch Arrival Time: 1750612766.124839000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000019000 seconds] + [Time delta from previous displayed frame: 0.000019000 seconds] + [Time since reference or first frame: 16.917975000 seconds] + Frame Number: 14041 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c724010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 14042] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x110b + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 14042 16.918041 1.13.0 host USB 28 URB_CONTROL out + +Frame 14042: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.124905000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.124905000 UTC + Epoch Arrival Time: 1750612766.124905000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000066000 seconds] + [Time delta from previous displayed frame: 0.000066000 seconds] + [Time since reference or first frame: 16.918041000 seconds] + Frame Number: 14042 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c724010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 14041] + [Time from request: 0.000066000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 14043 16.918080 host 1.13.0 USB 39 URB_CONTROL out + +Frame 14043: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.124944000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.124944000 UTC + Epoch Arrival Time: 1750612766.124944000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000039000 seconds] + [Time delta from previous displayed frame: 0.000039000 seconds] + [Time since reference or first frame: 16.918080000 seconds] + Frame Number: 14043 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739be27c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 14044] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 14044 16.918256 1.13.0 host USB 28 URB_CONTROL out + +Frame 14044: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.125120000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.125120000 UTC + Epoch Arrival Time: 1750612766.125120000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000176000 seconds] + [Time delta from previous displayed frame: 0.000176000 seconds] + [Time since reference or first frame: 16.918256000 seconds] + Frame Number: 14044 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739be27c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 14043] + [Time from request: 0.000176000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 14045 16.918264 host 1.13.0 USB 39 URB_CONTROL out + +Frame 14045: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.125128000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.125128000 UTC + Epoch Arrival Time: 1750612766.125128000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000008000 seconds] + [Time delta from previous displayed frame: 0.000008000 seconds] + [Time since reference or first frame: 16.918264000 seconds] + Frame Number: 14045 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c724010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 14046] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 14046 16.918377 1.13.0 host USB 28 URB_CONTROL out + +Frame 14046: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.125241000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.125241000 UTC + Epoch Arrival Time: 1750612766.125241000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000113000 seconds] + [Time delta from previous displayed frame: 0.000113000 seconds] + [Time since reference or first frame: 16.918377000 seconds] + Frame Number: 14046 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c724010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 14045] + [Time from request: 0.000113000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 14047 16.918388 host 1.13.0 USB 39 URB_CONTROL out + +Frame 14047: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.125252000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.125252000 UTC + Epoch Arrival Time: 1750612766.125252000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000011000 seconds] + [Time delta from previous displayed frame: 0.000011000 seconds] + [Time since reference or first frame: 16.918388000 seconds] + Frame Number: 14047 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c724010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 14048] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 14048 16.918543 1.13.0 host USB 28 URB_CONTROL out + +Frame 14048: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.125407000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.125407000 UTC + Epoch Arrival Time: 1750612766.125407000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000155000 seconds] + [Time delta from previous displayed frame: 0.000155000 seconds] + [Time since reference or first frame: 16.918543000 seconds] + Frame Number: 14048 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c724010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 14047] + [Time from request: 0.000155000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 14049 16.918595 host 1.13.0 USB 36 URB_CONTROL in + +Frame 14049: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.125459000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.125459000 UTC + Epoch Arrival Time: 1750612766.125459000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000052000 seconds] + [Time delta from previous displayed frame: 0.000052000 seconds] + [Time since reference or first frame: 16.918595000 seconds] + Frame Number: 14049 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739be27c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 14050] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 14050 16.918759 1.13.0 host USB 31 URB_CONTROL in + +Frame 14050: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.125623000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.125623000 UTC + Epoch Arrival Time: 1750612766.125623000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000164000 seconds] + [Time delta from previous displayed frame: 0.000164000 seconds] + [Time since reference or first frame: 16.918759000 seconds] + Frame Number: 14050 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739be27c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 14049] + [Time from request: 0.000164000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] +CONTROL response data: 80bb00 + +No. Time Source Destination Protocol Length Info + 14051 16.918800 host 1.13.0 USB 36 URB_CONTROL in + +Frame 14051: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.125664000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.125664000 UTC + Epoch Arrival Time: 1750612766.125664000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000041000 seconds] + [Time delta from previous displayed frame: 0.000041000 seconds] + [Time since reference or first frame: 16.918800000 seconds] + Frame Number: 14051 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739be27c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 14052] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 1 + +No. Time Source Destination Protocol Length Info + 14052 16.918957 1.13.0 host USB 29 URB_CONTROL in + +Frame 14052: 29 bytes on wire (232 bits), 29 bytes captured (232 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.125821000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.125821000 UTC + Epoch Arrival Time: 1750612766.125821000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000157000 seconds] + [Time delta from previous displayed frame: 0.000157000 seconds] + [Time since reference or first frame: 16.918957000 seconds] + Frame Number: 14052 + Frame Length: 29 bytes (232 bits) + Capture Length: 29 bytes (232 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739be27c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 1 + [Request in: 14051] + [Time from request: 0.000157000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 10 + +No. Time Source Destination Protocol Length Info + 14053 16.918985 host 1.13.0 USB 36 URB_CONTROL out + +Frame 14053: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.125849000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.125849000 UTC + Epoch Arrival Time: 1750612766.125849000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000028000 seconds] + [Time delta from previous displayed frame: 0.000028000 seconds] + [Time since reference or first frame: 16.918985000 seconds] + Frame Number: 14053 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.13.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e26e560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 14054] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0030 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 14054 16.919214 1.13.0 host USB 28 URB_CONTROL out + +Frame 14054: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:19:26.126078000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:19:26.126078000 UTC + Epoch Arrival Time: 1750612766.126078000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000229000 seconds] + [Time delta from previous displayed frame: 0.000229000 seconds] + [Time since reference or first frame: 16.919214000 seconds] + Frame Number: 14054 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.13.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e26e560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 13 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 14053] + [Time from request: 0.000229000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] diff --git a/reverse_eng_dataset/48000k_playback_sample_rate_change_event_tascam144mk2.txt b/reverse_eng_dataset/48000k_playback_sample_rate_change_event_tascam144mk2.txt new file mode 100644 index 0000000..e6ee5ab --- /dev/null +++ b/reverse_eng_dataset/48000k_playback_sample_rate_change_event_tascam144mk2.txt @@ -0,0 +1,2846 @@ +No. Time Source Destination Protocol Length Info + 2676 1.418377 host 1.1.0 USB 36 SET CONFIGURATION Request + +Frame 2676: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.299132000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.299132000 UTC + Epoch Arrival Time: 1750610061.299132000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.009349000 seconds] + [Time delta from previous displayed frame: 0.009349000 seconds] + [Time since reference or first frame: 1.418377000 seconds] + Frame Number: 2676 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde07398e4010 + IRP USBD_STATUS: Unknown (0x32313335) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2677] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x00 + 0... .... = Direction: Host-to-device + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: SET CONFIGURATION (9) + bConfigurationValue: 0 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 2677 1.418877 1.1.0 host USB 28 SET CONFIGURATION Response + +Frame 2677: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.299632000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.299632000 UTC + Epoch Arrival Time: 1750610061.299632000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000500000 seconds] + [Time delta from previous displayed frame: 0.000500000 seconds] + [Time since reference or first frame: 1.418877000 seconds] + Frame Number: 2677 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde07398e4010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2676] + [Time from request: 0.000500000 seconds] + Control transfer stage: Complete (3) + +No. Time Source Destination Protocol Length Info + 2678 1.418881 host 1.1.0 USB 36 GET DESCRIPTOR Request DEVICE + +Frame 2678: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.299636000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.299636000 UTC + Epoch Arrival Time: 1750610061.299636000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000004000 seconds] + [Time delta from previous displayed frame: 0.000004000 seconds] + [Time since reference or first frame: 1.418881000 seconds] + Frame Number: 2678 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a337010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2679] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: DEVICE (0x01) + Language Id: no language specified (0x0000) + wLength: 18 + +No. Time Source Destination Protocol Length Info + 2679 1.419020 1.1.0 host USB 46 GET DESCRIPTOR Response DEVICE + +Frame 2679: 46 bytes on wire (368 bits), 46 bytes captured (368 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.299775000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.299775000 UTC + Epoch Arrival Time: 1750610061.299775000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000139000 seconds] + [Time delta from previous displayed frame: 0.000139000 seconds] + [Time since reference or first frame: 1.419020000 seconds] + Frame Number: 2679 + Frame Length: 46 bytes (368 bits) + Capture Length: 46 bytes (368 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a337010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 18 + [Request in: 2678] + [Time from request: 0.000139000 seconds] + Control transfer stage: Complete (3) +DEVICE DESCRIPTOR + bLength: 18 + bDescriptorType: 0x01 (DEVICE) + bcdUSB: 0x0200 + bDeviceClass: Vendor Specific (0xff) + bDeviceSubClass: 255 + bDeviceProtocol: 255 + bMaxPacketSize0: 64 + idVendor: TEAC Corp. (0x0644) + idProduct: Unknown (0x8020) + bcdDevice: 0x0100 + iManufacturer: 1 + iProduct: 2 + iSerialNumber: 3 + bNumConfigurations: 1 + +No. Time Source Destination Protocol Length Info + 2680 1.420251 host 1.1.0 USB 36 URB_CONTROL in + +Frame 2680: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.301006000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.301006000 UTC + Epoch Arrival Time: 1750610061.301006000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001231000 seconds] + [Time delta from previous displayed frame: 0.001231000 seconds] + [Time since reference or first frame: 1.420251000 seconds] + Frame Number: 2680 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a348560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2681] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 86 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 15 + +No. Time Source Destination Protocol Length Info + 2681 1.420374 1.1.0 host USB 43 URB_CONTROL in + +Frame 2681: 43 bytes on wire (344 bits), 43 bytes captured (344 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.301129000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.301129000 UTC + Epoch Arrival Time: 1750610061.301129000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000123000 seconds] + [Time delta from previous displayed frame: 0.000123000 seconds] + [Time since reference or first frame: 1.420374000 seconds] + Frame Number: 2681 + Frame Length: 43 bytes (344 bits) + Capture Length: 43 bytes (344 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a348560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 15 + [Request in: 2680] + [Time from request: 0.000123000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 31020356322e30332020202000ffff + +No. Time Source Destination Protocol Length Info + 2682 1.420378 host 1.1.0 USB 36 URB_CONTROL in + +Frame 2682: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.301133000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.301133000 UTC + Epoch Arrival Time: 1750610061.301133000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000004000 seconds] + [Time delta from previous displayed frame: 0.000004000 seconds] + [Time since reference or first frame: 1.420378000 seconds] + Frame Number: 2682 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a348560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2683] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 86 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 15 + +No. Time Source Destination Protocol Length Info + 2683 1.420494 1.1.0 host USB 43 URB_CONTROL in + +Frame 2683: 43 bytes on wire (344 bits), 43 bytes captured (344 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.301249000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.301249000 UTC + Epoch Arrival Time: 1750610061.301249000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000116000 seconds] + [Time delta from previous displayed frame: 0.000116000 seconds] + [Time since reference or first frame: 1.420494000 seconds] + Frame Number: 2683 + Frame Length: 43 bytes (344 bits) + Capture Length: 43 bytes (344 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a348560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 15 + [Request in: 2682] + [Time from request: 0.000116000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 31020356322e30332020202000ffff + +No. Time Source Destination Protocol Length Info + 2684 1.420500 host 1.1.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 2684: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.301255000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.301255000 UTC + Epoch Arrival Time: 1750610061.301255000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000006000 seconds] + [Time delta from previous displayed frame: 0.000006000 seconds] + [Time since reference or first frame: 1.420500000 seconds] + Frame Number: 2684 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde07398e4010 + IRP USBD_STATUS: Unknown (0xffffde07) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2685] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x01 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 2685 1.420616 1.1.0 host USB 42 GET DESCRIPTOR Response STRING + +Frame 2685: 42 bytes on wire (336 bits), 42 bytes captured (336 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.301371000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.301371000 UTC + Epoch Arrival Time: 1750610061.301371000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000116000 seconds] + [Time delta from previous displayed frame: 0.000116000 seconds] + [Time since reference or first frame: 1.420616000 seconds] + Frame Number: 2685 + Frame Length: 42 bytes (336 bits) + Capture Length: 42 bytes (336 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde07398e4010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 14 + [Request in: 2684] + [Time from request: 0.000116000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 14 + bDescriptorType: 0x03 (STRING) + bString: TASCAM + +No. Time Source Destination Protocol Length Info + 2686 1.420629 host 1.1.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 2686: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.301384000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.301384000 UTC + Epoch Arrival Time: 1750610061.301384000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000013000 seconds] + [Time delta from previous displayed frame: 0.000013000 seconds] + [Time since reference or first frame: 1.420629000 seconds] + Frame Number: 2686 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde07398e4010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2687] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x02 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 2687 1.420771 1.1.0 host USB 52 GET DESCRIPTOR Response STRING + +Frame 2687: 52 bytes on wire (416 bits), 52 bytes captured (416 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.301526000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.301526000 UTC + Epoch Arrival Time: 1750610061.301526000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000142000 seconds] + [Time delta from previous displayed frame: 0.000142000 seconds] + [Time since reference or first frame: 1.420771000 seconds] + Frame Number: 2687 + Frame Length: 52 bytes (416 bits) + Capture Length: 52 bytes (416 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde07398e4010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 24 + [Request in: 2686] + [Time from request: 0.000142000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 24 + bDescriptorType: 0x03 (STRING) + bString: US-144 MKII + +No. Time Source Destination Protocol Length Info + 2688 1.420775 host 1.1.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 2688: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.301530000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.301530000 UTC + Epoch Arrival Time: 1750610061.301530000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000004000 seconds] + [Time delta from previous displayed frame: 0.000004000 seconds] + [Time since reference or first frame: 1.420775000 seconds] + Frame Number: 2688 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a348560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2689] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x03 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 2689 1.420908 1.1.0 host USB 62 GET DESCRIPTOR Response STRING + +Frame 2689: 62 bytes on wire (496 bits), 62 bytes captured (496 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.301663000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.301663000 UTC + Epoch Arrival Time: 1750610061.301663000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000133000 seconds] + [Time delta from previous displayed frame: 0.000133000 seconds] + [Time since reference or first frame: 1.420908000 seconds] + Frame Number: 2689 + Frame Length: 62 bytes (496 bits) + Capture Length: 62 bytes (496 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a348560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 34 + [Request in: 2688] + [Time from request: 0.000133000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 34 + bDescriptorType: 0x03 (STRING) + bString: no serial number + +No. Time Source Destination Protocol Length Info + 2690 1.420912 host 1.1.0 USB 36 GET DESCRIPTOR Request CONFIGURATION + +Frame 2690: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.301667000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.301667000 UTC + Epoch Arrival Time: 1750610061.301667000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000004000 seconds] + [Time delta from previous displayed frame: 0.000004000 seconds] + [Time since reference or first frame: 1.420912000 seconds] + Frame Number: 2690 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a348560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2691] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: CONFIGURATION (0x02) + Language Id: no language specified (0x0000) + wLength: 1033 + +No. Time Source Destination Protocol Length Info + 2691 1.421191 1.1.0 host USB 108 GET DESCRIPTOR Response CONFIGURATION + +Frame 2691: 108 bytes on wire (864 bits), 108 bytes captured (864 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.301946000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.301946000 UTC + Epoch Arrival Time: 1750610061.301946000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000279000 seconds] + [Time delta from previous displayed frame: 0.000279000 seconds] + [Time since reference or first frame: 1.421191000 seconds] + Frame Number: 2691 + Frame Length: 108 bytes (864 bits) + Capture Length: 108 bytes (864 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a348560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 80 + [Request in: 2690] + [Time from request: 0.000279000 seconds] + Control transfer stage: Complete (3) +CONFIGURATION DESCRIPTOR + bLength: 9 + bDescriptorType: 0x02 (CONFIGURATION) + wTotalLength: 80 + bNumInterfaces: 2 + bConfigurationValue: 1 + iConfiguration: 0 + Configuration bmAttributes: 0x80 NOT SELF-POWERED NO REMOTE-WAKEUP + 1... .... = Must be 1: Must be 1 for USB 1.1 and higher + .0.. .... = Self-Powered: This device is powered from the USB bus + ..0. .... = Remote Wakeup: This device does NOT support remote wakeup + bMaxPower: 240 (480mA) +INTERFACE DESCRIPTOR (0.0): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 0 + bAlternateSetting: 0 + bNumEndpoints: 0 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +INTERFACE DESCRIPTOR (0.1): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 0 + bAlternateSetting: 1 + bNumEndpoints: 3 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x02 OUT Endpoint:2 + 0... .... = Direction: OUT Endpoint + .... 0010 = Endpoint Number: 0x2 + bmAttributes: 0x05 + .... ..01 = Transfertype: Isochronous-Transfer (0x1) + .... 01.. = Synchronisationtype: Asynchronous (0x1) + ..00 .... = Behaviourtype: Data-Endpoint (0x0) + wMaxPacketSize: 156 + ...0 0... .... .... = Transactions per microframe: 1 (0) + .... .000 1001 1100 = Maximum Packet Size: 156 + bInterval: 1 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x83 IN Endpoint:3 + 1... .... = Direction: IN Endpoint + .... 0011 = Endpoint Number: 0x3 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 4 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x04 OUT Endpoint:4 + 0... .... = Direction: OUT Endpoint + .... 0100 = Endpoint Number: 0x4 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 4 +INTERFACE DESCRIPTOR (1.0): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 1 + bAlternateSetting: 0 + bNumEndpoints: 0 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +INTERFACE DESCRIPTOR (1.1): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 1 + bAlternateSetting: 1 + bNumEndpoints: 2 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x81 IN Endpoint:1 + 1... .... = Direction: IN Endpoint + .... 0001 = Endpoint Number: 0x1 + bmAttributes: 0x05 + .... ..01 = Transfertype: Isochronous-Transfer (0x1) + .... 01.. = Synchronisationtype: Asynchronous (0x1) + ..00 .... = Behaviourtype: Data-Endpoint (0x0) + wMaxPacketSize: 64 + ...0 0... .... .... = Transactions per microframe: 1 (0) + .... .000 0100 0000 = Maximum Packet Size: 64 + bInterval: 4 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x86 IN Endpoint:6 + 1... .... = Direction: IN Endpoint + .... 0110 = Endpoint Number: 0x6 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 1 + +No. Time Source Destination Protocol Length Info + 2692 1.424528 host 1.1.0 USB 36 GET DESCRIPTOR Request DEVICE + +Frame 2692: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.305283000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.305283000 UTC + Epoch Arrival Time: 1750610061.305283000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.003337000 seconds] + [Time delta from previous displayed frame: 0.003337000 seconds] + [Time since reference or first frame: 1.424528000 seconds] + Frame Number: 2692 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a348560 + IRP USBD_STATUS: Unknown (0xffffde07) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2693] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: DEVICE (0x01) + Language Id: no language specified (0x0000) + wLength: 18 + +No. Time Source Destination Protocol Length Info + 2693 1.424665 1.1.0 host USB 46 GET DESCRIPTOR Response DEVICE + +Frame 2693: 46 bytes on wire (368 bits), 46 bytes captured (368 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.305420000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.305420000 UTC + Epoch Arrival Time: 1750610061.305420000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000137000 seconds] + [Time delta from previous displayed frame: 0.000137000 seconds] + [Time since reference or first frame: 1.424665000 seconds] + Frame Number: 2693 + Frame Length: 46 bytes (368 bits) + Capture Length: 46 bytes (368 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a348560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 18 + [Request in: 2692] + [Time from request: 0.000137000 seconds] + Control transfer stage: Complete (3) +DEVICE DESCRIPTOR + bLength: 18 + bDescriptorType: 0x01 (DEVICE) + bcdUSB: 0x0200 + bDeviceClass: Vendor Specific (0xff) + bDeviceSubClass: 255 + bDeviceProtocol: 255 + bMaxPacketSize0: 64 + idVendor: TEAC Corp. (0x0644) + idProduct: Unknown (0x8020) + bcdDevice: 0x0100 + iManufacturer: 1 + iProduct: 2 + iSerialNumber: 3 + bNumConfigurations: 1 + +No. Time Source Destination Protocol Length Info + 2694 1.424668 host 1.1.0 USB 36 SET CONFIGURATION Request + +Frame 2694: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.305423000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.305423000 UTC + Epoch Arrival Time: 1750610061.305423000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000003000 seconds] + [Time delta from previous displayed frame: 0.000003000 seconds] + [Time since reference or first frame: 1.424668000 seconds] + Frame Number: 2694 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a348560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2701] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x00 + 0... .... = Direction: Host-to-device + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: SET CONFIGURATION (9) + bConfigurationValue: 1 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 2701 1.635406 1.1.0 host USB 28 SET CONFIGURATION Response + +Frame 2701: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.516161000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.516161000 UTC + Epoch Arrival Time: 1750610061.516161000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.003341000 seconds] + [Time delta from previous displayed frame: 0.210738000 seconds] + [Time since reference or first frame: 1.635406000 seconds] + Frame Number: 2701 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a348560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2694] + [Time from request: 0.210738000 seconds] + Control transfer stage: Complete (3) + +No. Time Source Destination Protocol Length Info + 2726 1.685398 host 1.1.0 USB 36 URB_CONTROL in + +Frame 2726: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.566153000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.566153000 UTC + Epoch Arrival Time: 1750610061.566153000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.005328000 seconds] + [Time delta from previous displayed frame: 0.049992000 seconds] + [Time since reference or first frame: 1.685398000 seconds] + Frame Number: 2726 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e8010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2727] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 1 + +No. Time Source Destination Protocol Length Info + 2727 1.685581 1.1.0 host USB 29 URB_CONTROL in + +Frame 2727: 29 bytes on wire (232 bits), 29 bytes captured (232 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.566336000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.566336000 UTC + Epoch Arrival Time: 1750610061.566336000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000183000 seconds] + [Time delta from previous displayed frame: 0.000183000 seconds] + [Time since reference or first frame: 1.685581000 seconds] + Frame Number: 2727 + Frame Length: 29 bytes (232 bits) + Capture Length: 29 bytes (232 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e8010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 1 + [Request in: 2726] + [Time from request: 0.000183000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 30 + +No. Time Source Destination Protocol Length Info + 2728 1.685613 host 1.1.0 USB 36 URB_CONTROL in + +Frame 2728: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.566368000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.566368000 UTC + Epoch Arrival Time: 1750610061.566368000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000032000 seconds] + [Time delta from previous displayed frame: 0.000032000 seconds] + [Time since reference or first frame: 1.685613000 seconds] + Frame Number: 2728 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073925d010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2729] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 0 (0x0000) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 2729 1.685764 1.1.0 host USB 31 URB_CONTROL in + +Frame 2729: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.566519000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.566519000 UTC + Epoch Arrival Time: 1750610061.566519000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000151000 seconds] + [Time delta from previous displayed frame: 0.000151000 seconds] + [Time since reference or first frame: 1.685764000 seconds] + Frame Number: 2729 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073925d010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 2728] + [Time from request: 0.000151000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 44ac00 + +No. Time Source Destination Protocol Length Info + 2730 1.685773 host 1.1.0 USB 39 URB_CONTROL out + +Frame 2730: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.566528000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.566528000 UTC + Epoch Arrival Time: 1750610061.566528000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000009000 seconds] + [Time delta from previous displayed frame: 0.000009000 seconds] + [Time since reference or first frame: 1.685773000 seconds] + Frame Number: 2730 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0736ede010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 2731] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 2731 1.686012 1.1.0 host USB 28 URB_CONTROL out + +Frame 2731: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.566767000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.566767000 UTC + Epoch Arrival Time: 1750610061.566767000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000239000 seconds] + [Time delta from previous displayed frame: 0.000239000 seconds] + [Time since reference or first frame: 1.686012000 seconds] + Frame Number: 2731 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0736ede010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2730] + [Time from request: 0.000239000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 2732 1.686033 host 1.1.0 USB 39 URB_CONTROL out + +Frame 2732: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.566788000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.566788000 UTC + Epoch Arrival Time: 1750610061.566788000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000021000 seconds] + [Time delta from previous displayed frame: 0.000021000 seconds] + [Time since reference or first frame: 1.686033000 seconds] + Frame Number: 2732 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073925d010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 2733] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 2733 1.686170 1.1.0 host USB 28 URB_CONTROL out + +Frame 2733: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.566925000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.566925000 UTC + Epoch Arrival Time: 1750610061.566925000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000137000 seconds] + [Time delta from previous displayed frame: 0.000137000 seconds] + [Time since reference or first frame: 1.686170000 seconds] + Frame Number: 2733 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073925d010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2732] + [Time from request: 0.000137000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 2736 1.688376 host 1.1.0 USB 39 URB_CONTROL out + +Frame 2736: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.569131000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.569131000 UTC + Epoch Arrival Time: 1750610061.569131000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000290000 seconds] + [Time delta from previous displayed frame: 0.002206000 seconds] + [Time since reference or first frame: 1.688376000 seconds] + Frame Number: 2736 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0737827010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 2737] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 2737 1.688512 1.1.0 host USB 28 URB_CONTROL out + +Frame 2737: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.569267000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.569267000 UTC + Epoch Arrival Time: 1750610061.569267000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000136000 seconds] + [Time delta from previous displayed frame: 0.000136000 seconds] + [Time since reference or first frame: 1.688512000 seconds] + Frame Number: 2737 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0737827010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2736] + [Time from request: 0.000136000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 2738 1.688530 host 1.1.0 USB 39 URB_CONTROL out + +Frame 2738: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.569285000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.569285000 UTC + Epoch Arrival Time: 1750610061.569285000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000018000 seconds] + [Time delta from previous displayed frame: 0.000018000 seconds] + [Time since reference or first frame: 1.688530000 seconds] + Frame Number: 2738 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e8010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 2739] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 2739 1.688756 1.1.0 host USB 28 URB_CONTROL out + +Frame 2739: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.569511000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.569511000 UTC + Epoch Arrival Time: 1750610061.569511000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000226000 seconds] + [Time delta from previous displayed frame: 0.000226000 seconds] + [Time since reference or first frame: 1.688756000 seconds] + Frame Number: 2739 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e8010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2738] + [Time from request: 0.000226000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 2740 1.688771 host 1.1.0 USB 36 URB_CONTROL in + +Frame 2740: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.569526000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.569526000 UTC + Epoch Arrival Time: 1750610061.569526000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000015000 seconds] + [Time delta from previous displayed frame: 0.000015000 seconds] + [Time since reference or first frame: 1.688771000 seconds] + Frame Number: 2740 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e8010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2741] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0d00 + wIndex: 257 (0x0101) + wLength: 5 + +No. Time Source Destination Protocol Length Info + 2741 1.688977 1.1.0 host USB 33 URB_CONTROL in + +Frame 2741: 33 bytes on wire (264 bits), 33 bytes captured (264 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.569732000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.569732000 UTC + Epoch Arrival Time: 1750610061.569732000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000206000 seconds] + [Time delta from previous displayed frame: 0.000206000 seconds] + [Time since reference or first frame: 1.688977000 seconds] + Frame Number: 2741 + Frame Length: 33 bytes (264 bits) + Capture Length: 33 bytes (264 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e8010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 5 + [Request in: 2740] + [Time from request: 0.000206000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 0000000200 + +No. Time Source Destination Protocol Length Info + 2742 1.688989 host 1.1.0 USB 36 URB_CONTROL out + +Frame 2742: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.569744000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.569744000 UTC + Epoch Arrival Time: 1750610061.569744000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000012000 seconds] + [Time delta from previous displayed frame: 0.000012000 seconds] + [Time since reference or first frame: 1.688989000 seconds] + Frame Number: 2742 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e8010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2743] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0d04 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 2743 1.689050 1.1.0 host USB 28 URB_CONTROL out + +Frame 2743: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.569805000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.569805000 UTC + Epoch Arrival Time: 1750610061.569805000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000061000 seconds] + [Time delta from previous displayed frame: 0.000061000 seconds] + [Time since reference or first frame: 1.689050000 seconds] + Frame Number: 2743 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e8010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2742] + [Time from request: 0.000061000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 2744 1.689060 host 1.1.0 USB 36 URB_CONTROL out + +Frame 2744: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.569815000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.569815000 UTC + Epoch Arrival Time: 1750610061.569815000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000010000 seconds] + [Time delta from previous displayed frame: 0.000010000 seconds] + [Time since reference or first frame: 1.689060000 seconds] + Frame Number: 2744 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a808010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2745] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0e00 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 2745 1.689131 1.1.0 host USB 28 URB_CONTROL out + +Frame 2745: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.569886000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.569886000 UTC + Epoch Arrival Time: 1750610061.569886000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000071000 seconds] + [Time delta from previous displayed frame: 0.000071000 seconds] + [Time since reference or first frame: 1.689131000 seconds] + Frame Number: 2745 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a808010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2744] + [Time from request: 0.000071000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 2746 1.689138 host 1.1.0 USB 36 URB_CONTROL out + +Frame 2746: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.569893000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.569893000 UTC + Epoch Arrival Time: 1750610061.569893000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000007000 seconds] + [Time delta from previous displayed frame: 0.000007000 seconds] + [Time since reference or first frame: 1.689138000 seconds] + Frame Number: 2746 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a50f560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2747] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0f00 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 2747 1.689198 1.1.0 host USB 28 URB_CONTROL out + +Frame 2747: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.569953000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.569953000 UTC + Epoch Arrival Time: 1750610061.569953000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000060000 seconds] + [Time delta from previous displayed frame: 0.000060000 seconds] + [Time since reference or first frame: 1.689198000 seconds] + Frame Number: 2747 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a50f560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2746] + [Time from request: 0.000060000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 2748 1.689203 host 1.1.0 USB 36 URB_CONTROL out + +Frame 2748: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.569958000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.569958000 UTC + Epoch Arrival Time: 1750610061.569958000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000005000 seconds] + [Time delta from previous displayed frame: 0.000005000 seconds] + [Time since reference or first frame: 1.689203000 seconds] + Frame Number: 2748 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a50f560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2749] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x1002 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 2749 1.689261 1.1.0 host USB 28 URB_CONTROL out + +Frame 2749: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.570016000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.570016000 UTC + Epoch Arrival Time: 1750610061.570016000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000058000 seconds] + [Time delta from previous displayed frame: 0.000058000 seconds] + [Time since reference or first frame: 1.689261000 seconds] + Frame Number: 2749 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a50f560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2748] + [Time from request: 0.000058000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 2750 1.689267 host 1.1.0 USB 36 URB_CONTROL out + +Frame 2750: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.570022000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.570022000 UTC + Epoch Arrival Time: 1750610061.570022000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000006000 seconds] + [Time delta from previous displayed frame: 0.000006000 seconds] + [Time since reference or first frame: 1.689267000 seconds] + Frame Number: 2750 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a808010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2751] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x110b + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 2751 1.689328 1.1.0 host USB 28 URB_CONTROL out + +Frame 2751: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.570083000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.570083000 UTC + Epoch Arrival Time: 1750610061.570083000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000061000 seconds] + [Time delta from previous displayed frame: 0.000061000 seconds] + [Time since reference or first frame: 1.689328000 seconds] + Frame Number: 2751 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a808010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2750] + [Time from request: 0.000061000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 2752 1.689379 host 1.1.0 USB 39 URB_CONTROL out + +Frame 2752: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.570134000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.570134000 UTC + Epoch Arrival Time: 1750610061.570134000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000051000 seconds] + [Time delta from previous displayed frame: 0.000051000 seconds] + [Time since reference or first frame: 1.689379000 seconds] + Frame Number: 2752 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a50f560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 2753] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 2753 1.689502 1.1.0 host USB 28 URB_CONTROL out + +Frame 2753: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.570257000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.570257000 UTC + Epoch Arrival Time: 1750610061.570257000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000123000 seconds] + [Time delta from previous displayed frame: 0.000123000 seconds] + [Time since reference or first frame: 1.689502000 seconds] + Frame Number: 2753 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a50f560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2752] + [Time from request: 0.000123000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 2754 1.689515 host 1.1.0 USB 39 URB_CONTROL out + +Frame 2754: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.570270000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.570270000 UTC + Epoch Arrival Time: 1750610061.570270000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000013000 seconds] + [Time delta from previous displayed frame: 0.000013000 seconds] + [Time since reference or first frame: 1.689515000 seconds] + Frame Number: 2754 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e8010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 2755] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 2755 1.689728 1.1.0 host USB 28 URB_CONTROL out + +Frame 2755: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.570483000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.570483000 UTC + Epoch Arrival Time: 1750610061.570483000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000213000 seconds] + [Time delta from previous displayed frame: 0.000213000 seconds] + [Time since reference or first frame: 1.689728000 seconds] + Frame Number: 2755 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e8010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2754] + [Time from request: 0.000213000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 2756 1.689749 host 1.1.0 USB 39 URB_CONTROL out + +Frame 2756: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.570504000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.570504000 UTC + Epoch Arrival Time: 1750610061.570504000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000021000 seconds] + [Time delta from previous displayed frame: 0.000021000 seconds] + [Time since reference or first frame: 1.689749000 seconds] + Frame Number: 2756 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e8010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 2757] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 2757 1.689896 1.1.0 host USB 28 URB_CONTROL out + +Frame 2757: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.570651000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.570651000 UTC + Epoch Arrival Time: 1750610061.570651000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000147000 seconds] + [Time delta from previous displayed frame: 0.000147000 seconds] + [Time since reference or first frame: 1.689896000 seconds] + Frame Number: 2757 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a3e8010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2756] + [Time from request: 0.000147000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 2758 1.689912 host 1.1.0 USB 36 URB_CONTROL in + +Frame 2758: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.570667000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.570667000 UTC + Epoch Arrival Time: 1750610061.570667000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000016000 seconds] + [Time delta from previous displayed frame: 0.000016000 seconds] + [Time since reference or first frame: 1.689912000 seconds] + Frame Number: 2758 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a50f560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2759] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 2759 1.690037 1.1.0 host USB 31 URB_CONTROL in + +Frame 2759: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.570792000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.570792000 UTC + Epoch Arrival Time: 1750610061.570792000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000125000 seconds] + [Time delta from previous displayed frame: 0.000125000 seconds] + [Time since reference or first frame: 1.690037000 seconds] + Frame Number: 2759 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a50f560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 2758] + [Time from request: 0.000125000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] +CONTROL response data: 80bb00 + +No. Time Source Destination Protocol Length Info + 2760 1.690051 host 1.1.0 USB 36 URB_CONTROL in + +Frame 2760: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.570806000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.570806000 UTC + Epoch Arrival Time: 1750610061.570806000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000014000 seconds] + [Time delta from previous displayed frame: 0.000014000 seconds] + [Time since reference or first frame: 1.690051000 seconds] + Frame Number: 2760 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a50f560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2761] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 1 + +No. Time Source Destination Protocol Length Info + 2761 1.690205 1.1.0 host USB 29 URB_CONTROL in + +Frame 2761: 29 bytes on wire (232 bits), 29 bytes captured (232 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.570960000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.570960000 UTC + Epoch Arrival Time: 1750610061.570960000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000154000 seconds] + [Time delta from previous displayed frame: 0.000154000 seconds] + [Time since reference or first frame: 1.690205000 seconds] + Frame Number: 2761 + Frame Length: 29 bytes (232 bits) + Capture Length: 29 bytes (232 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a50f560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 1 + [Request in: 2760] + [Time from request: 0.000154000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 30 + +No. Time Source Destination Protocol Length Info + 2762 1.690219 host 1.1.0 USB 36 URB_CONTROL out + +Frame 2762: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.570974000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.570974000 UTC + Epoch Arrival Time: 1750610061.570974000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000014000 seconds] + [Time delta from previous displayed frame: 0.000014000 seconds] + [Time since reference or first frame: 1.690219000 seconds] + Frame Number: 2762 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a50f560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2763] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0030 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 2763 1.690448 1.1.0 host USB 28 URB_CONTROL out + +Frame 2763: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:34:21.571203000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:34:21.571203000 UTC + Epoch Arrival Time: 1750610061.571203000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000229000 seconds] + [Time delta from previous displayed frame: 0.000229000 seconds] + [Time since reference or first frame: 1.690448000 seconds] + Frame Number: 2763 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a50f560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2762] + [Time from request: 0.000229000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] diff --git a/reverse_eng_dataset/48000k_recording_sample_rate_change_event_tascam144mk2.txt b/reverse_eng_dataset/48000k_recording_sample_rate_change_event_tascam144mk2.txt new file mode 100644 index 0000000..6756bfd --- /dev/null +++ b/reverse_eng_dataset/48000k_recording_sample_rate_change_event_tascam144mk2.txt @@ -0,0 +1,2652 @@ +No. Time Source Destination Protocol Length Info + 3499 2.652291 host 1.9.0 USB 36 SET CONFIGURATION Request + +Frame 3499: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.663274000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.663274000 UTC + Epoch Arrival Time: 1750610997.663274000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.014645000 seconds] + [Time delta from previous displayed frame: 0.014645000 seconds] + [Time since reference or first frame: 2.652291000 seconds] + Frame Number: 3499 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e8c7010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3500] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x00 + 0... .... = Direction: Host-to-device + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: SET CONFIGURATION (9) + bConfigurationValue: 0 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3500 2.652771 1.9.0 host USB 28 SET CONFIGURATION Response + +Frame 3500: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.663754000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.663754000 UTC + Epoch Arrival Time: 1750610997.663754000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000480000 seconds] + [Time delta from previous displayed frame: 0.000480000 seconds] + [Time since reference or first frame: 2.652771000 seconds] + Frame Number: 3500 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e8c7010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3499] + [Time from request: 0.000480000 seconds] + Control transfer stage: Complete (3) + +No. Time Source Destination Protocol Length Info + 3501 2.652788 host 1.9.0 USB 36 GET DESCRIPTOR Request DEVICE + +Frame 3501: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.663771000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.663771000 UTC + Epoch Arrival Time: 1750610997.663771000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000017000 seconds] + [Time delta from previous displayed frame: 0.000017000 seconds] + [Time since reference or first frame: 2.652788000 seconds] + Frame Number: 3501 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e8c7010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3502] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: DEVICE (0x01) + Language Id: no language specified (0x0000) + wLength: 18 + +No. Time Source Destination Protocol Length Info + 3502 2.652880 1.9.0 host USB 46 GET DESCRIPTOR Response DEVICE + +Frame 3502: 46 bytes on wire (368 bits), 46 bytes captured (368 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.663863000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.663863000 UTC + Epoch Arrival Time: 1750610997.663863000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000092000 seconds] + [Time delta from previous displayed frame: 0.000092000 seconds] + [Time since reference or first frame: 2.652880000 seconds] + Frame Number: 3502 + Frame Length: 46 bytes (368 bits) + Capture Length: 46 bytes (368 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e8c7010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 18 + [Request in: 3501] + [Time from request: 0.000092000 seconds] + Control transfer stage: Complete (3) +DEVICE DESCRIPTOR + bLength: 18 + bDescriptorType: 0x01 (DEVICE) + bcdUSB: 0x0200 + bDeviceClass: Vendor Specific (0xff) + bDeviceSubClass: 255 + bDeviceProtocol: 255 + bMaxPacketSize0: 64 + idVendor: TEAC Corp. (0x0644) + idProduct: Unknown (0x8020) + bcdDevice: 0x0100 + iManufacturer: 1 + iProduct: 2 + iSerialNumber: 3 + bNumConfigurations: 1 + +No. Time Source Destination Protocol Length Info + 3503 2.654433 host 1.9.0 USB 36 URB_CONTROL in + +Frame 3503: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.665416000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.665416000 UTC + Epoch Arrival Time: 1750610997.665416000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001553000 seconds] + [Time delta from previous displayed frame: 0.001553000 seconds] + [Time since reference or first frame: 2.654433000 seconds] + Frame Number: 3503 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3504] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 86 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 15 + +No. Time Source Destination Protocol Length Info + 3504 2.654566 1.9.0 host USB 43 URB_CONTROL in + +Frame 3504: 43 bytes on wire (344 bits), 43 bytes captured (344 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.665549000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.665549000 UTC + Epoch Arrival Time: 1750610997.665549000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000133000 seconds] + [Time delta from previous displayed frame: 0.000133000 seconds] + [Time since reference or first frame: 2.654566000 seconds] + Frame Number: 3504 + Frame Length: 43 bytes (344 bits) + Capture Length: 43 bytes (344 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 15 + [Request in: 3503] + [Time from request: 0.000133000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 31020356322e30332020202000ffff + +No. Time Source Destination Protocol Length Info + 3505 2.654583 host 1.9.0 USB 36 URB_CONTROL in + +Frame 3505: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.665566000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.665566000 UTC + Epoch Arrival Time: 1750610997.665566000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000017000 seconds] + [Time delta from previous displayed frame: 0.000017000 seconds] + [Time since reference or first frame: 2.654583000 seconds] + Frame Number: 3505 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3506] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 86 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 15 + +No. Time Source Destination Protocol Length Info + 3506 2.654699 1.9.0 host USB 43 URB_CONTROL in + +Frame 3506: 43 bytes on wire (344 bits), 43 bytes captured (344 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.665682000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.665682000 UTC + Epoch Arrival Time: 1750610997.665682000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000116000 seconds] + [Time delta from previous displayed frame: 0.000116000 seconds] + [Time since reference or first frame: 2.654699000 seconds] + Frame Number: 3506 + Frame Length: 43 bytes (344 bits) + Capture Length: 43 bytes (344 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 15 + [Request in: 3505] + [Time from request: 0.000116000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 31020356322e30332020202000ffff + +No. Time Source Destination Protocol Length Info + 3507 2.654705 host 1.9.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 3507: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.665688000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.665688000 UTC + Epoch Arrival Time: 1750610997.665688000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000006000 seconds] + [Time delta from previous displayed frame: 0.000006000 seconds] + [Time since reference or first frame: 2.654705000 seconds] + Frame Number: 3507 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: Unknown (0xffffde07) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3508] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x01 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 3508 2.654818 1.9.0 host USB 42 GET DESCRIPTOR Response STRING + +Frame 3508: 42 bytes on wire (336 bits), 42 bytes captured (336 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.665801000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.665801000 UTC + Epoch Arrival Time: 1750610997.665801000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000113000 seconds] + [Time delta from previous displayed frame: 0.000113000 seconds] + [Time since reference or first frame: 2.654818000 seconds] + Frame Number: 3508 + Frame Length: 42 bytes (336 bits) + Capture Length: 42 bytes (336 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 14 + [Request in: 3507] + [Time from request: 0.000113000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 14 + bDescriptorType: 0x03 (STRING) + bString: TASCAM + +No. Time Source Destination Protocol Length Info + 3509 2.654832 host 1.9.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 3509: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.665815000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.665815000 UTC + Epoch Arrival Time: 1750610997.665815000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000014000 seconds] + [Time delta from previous displayed frame: 0.000014000 seconds] + [Time since reference or first frame: 2.654832000 seconds] + Frame Number: 3509 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde07304f09f0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3510] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x02 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 3510 2.654981 1.9.0 host USB 52 GET DESCRIPTOR Response STRING + +Frame 3510: 52 bytes on wire (416 bits), 52 bytes captured (416 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.665964000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.665964000 UTC + Epoch Arrival Time: 1750610997.665964000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000149000 seconds] + [Time delta from previous displayed frame: 0.000149000 seconds] + [Time since reference or first frame: 2.654981000 seconds] + Frame Number: 3510 + Frame Length: 52 bytes (416 bits) + Capture Length: 52 bytes (416 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde07304f09f0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 24 + [Request in: 3509] + [Time from request: 0.000149000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 24 + bDescriptorType: 0x03 (STRING) + bString: US-144 MKII + +No. Time Source Destination Protocol Length Info + 3511 2.654989 host 1.9.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 3511: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.665972000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.665972000 UTC + Epoch Arrival Time: 1750610997.665972000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000008000 seconds] + [Time delta from previous displayed frame: 0.000008000 seconds] + [Time since reference or first frame: 2.654989000 seconds] + Frame Number: 3511 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3512] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x03 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 3512 2.655127 1.9.0 host USB 62 GET DESCRIPTOR Response STRING + +Frame 3512: 62 bytes on wire (496 bits), 62 bytes captured (496 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.666110000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.666110000 UTC + Epoch Arrival Time: 1750610997.666110000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000138000 seconds] + [Time delta from previous displayed frame: 0.000138000 seconds] + [Time since reference or first frame: 2.655127000 seconds] + Frame Number: 3512 + Frame Length: 62 bytes (496 bits) + Capture Length: 62 bytes (496 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 34 + [Request in: 3511] + [Time from request: 0.000138000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 34 + bDescriptorType: 0x03 (STRING) + bString: no serial number + +No. Time Source Destination Protocol Length Info + 3513 2.655135 host 1.9.0 USB 36 GET DESCRIPTOR Request CONFIGURATION + +Frame 3513: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.666118000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.666118000 UTC + Epoch Arrival Time: 1750610997.666118000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000008000 seconds] + [Time delta from previous displayed frame: 0.000008000 seconds] + [Time since reference or first frame: 2.655135000 seconds] + Frame Number: 3513 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3514] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: CONFIGURATION (0x02) + Language Id: no language specified (0x0000) + wLength: 1033 + +No. Time Source Destination Protocol Length Info + 3514 2.655400 1.9.0 host USB 108 GET DESCRIPTOR Response CONFIGURATION + +Frame 3514: 108 bytes on wire (864 bits), 108 bytes captured (864 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.666383000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.666383000 UTC + Epoch Arrival Time: 1750610997.666383000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000265000 seconds] + [Time delta from previous displayed frame: 0.000265000 seconds] + [Time since reference or first frame: 2.655400000 seconds] + Frame Number: 3514 + Frame Length: 108 bytes (864 bits) + Capture Length: 108 bytes (864 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 80 + [Request in: 3513] + [Time from request: 0.000265000 seconds] + Control transfer stage: Complete (3) +CONFIGURATION DESCRIPTOR + bLength: 9 + bDescriptorType: 0x02 (CONFIGURATION) + wTotalLength: 80 + bNumInterfaces: 2 + bConfigurationValue: 1 + iConfiguration: 0 + Configuration bmAttributes: 0x80 NOT SELF-POWERED NO REMOTE-WAKEUP + 1... .... = Must be 1: Must be 1 for USB 1.1 and higher + .0.. .... = Self-Powered: This device is powered from the USB bus + ..0. .... = Remote Wakeup: This device does NOT support remote wakeup + bMaxPower: 240 (480mA) +INTERFACE DESCRIPTOR (0.0): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 0 + bAlternateSetting: 0 + bNumEndpoints: 0 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +INTERFACE DESCRIPTOR (0.1): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 0 + bAlternateSetting: 1 + bNumEndpoints: 3 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x02 OUT Endpoint:2 + 0... .... = Direction: OUT Endpoint + .... 0010 = Endpoint Number: 0x2 + bmAttributes: 0x05 + .... ..01 = Transfertype: Isochronous-Transfer (0x1) + .... 01.. = Synchronisationtype: Asynchronous (0x1) + ..00 .... = Behaviourtype: Data-Endpoint (0x0) + wMaxPacketSize: 156 + ...0 0... .... .... = Transactions per microframe: 1 (0) + .... .000 1001 1100 = Maximum Packet Size: 156 + bInterval: 1 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x83 IN Endpoint:3 + 1... .... = Direction: IN Endpoint + .... 0011 = Endpoint Number: 0x3 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 4 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x04 OUT Endpoint:4 + 0... .... = Direction: OUT Endpoint + .... 0100 = Endpoint Number: 0x4 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 4 +INTERFACE DESCRIPTOR (1.0): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 1 + bAlternateSetting: 0 + bNumEndpoints: 0 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +INTERFACE DESCRIPTOR (1.1): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 1 + bAlternateSetting: 1 + bNumEndpoints: 2 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x81 IN Endpoint:1 + 1... .... = Direction: IN Endpoint + .... 0001 = Endpoint Number: 0x1 + bmAttributes: 0x05 + .... ..01 = Transfertype: Isochronous-Transfer (0x1) + .... 01.. = Synchronisationtype: Asynchronous (0x1) + ..00 .... = Behaviourtype: Data-Endpoint (0x0) + wMaxPacketSize: 64 + ...0 0... .... .... = Transactions per microframe: 1 (0) + .... .000 0100 0000 = Maximum Packet Size: 64 + bInterval: 4 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x86 IN Endpoint:6 + 1... .... = Direction: IN Endpoint + .... 0110 = Endpoint Number: 0x6 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 1 + +No. Time Source Destination Protocol Length Info + 3515 2.659038 host 1.9.0 USB 36 GET DESCRIPTOR Request DEVICE + +Frame 3515: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.670021000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.670021000 UTC + Epoch Arrival Time: 1750610997.670021000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.003638000 seconds] + [Time delta from previous displayed frame: 0.003638000 seconds] + [Time since reference or first frame: 2.659038000 seconds] + Frame Number: 3515 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3516] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: DEVICE (0x01) + Language Id: no language specified (0x0000) + wLength: 18 + +No. Time Source Destination Protocol Length Info + 3516 2.659190 1.9.0 host USB 46 GET DESCRIPTOR Response DEVICE + +Frame 3516: 46 bytes on wire (368 bits), 46 bytes captured (368 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.670173000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.670173000 UTC + Epoch Arrival Time: 1750610997.670173000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000152000 seconds] + [Time delta from previous displayed frame: 0.000152000 seconds] + [Time since reference or first frame: 2.659190000 seconds] + Frame Number: 3516 + Frame Length: 46 bytes (368 bits) + Capture Length: 46 bytes (368 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 18 + [Request in: 3515] + [Time from request: 0.000152000 seconds] + Control transfer stage: Complete (3) +DEVICE DESCRIPTOR + bLength: 18 + bDescriptorType: 0x01 (DEVICE) + bcdUSB: 0x0200 + bDeviceClass: Vendor Specific (0xff) + bDeviceSubClass: 255 + bDeviceProtocol: 255 + bMaxPacketSize0: 64 + idVendor: TEAC Corp. (0x0644) + idProduct: Unknown (0x8020) + bcdDevice: 0x0100 + iManufacturer: 1 + iProduct: 2 + iSerialNumber: 3 + bNumConfigurations: 1 + +No. Time Source Destination Protocol Length Info + 3517 2.659206 host 1.9.0 USB 36 SET CONFIGURATION Request + +Frame 3517: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.670189000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.670189000 UTC + Epoch Arrival Time: 1750610997.670189000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000016000 seconds] + [Time delta from previous displayed frame: 0.000016000 seconds] + [Time since reference or first frame: 2.659206000 seconds] + Frame Number: 3517 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3518] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x00 + 0... .... = Direction: Host-to-device + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: SET CONFIGURATION (9) + bConfigurationValue: 1 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3518 2.869636 1.9.0 host USB 28 SET CONFIGURATION Response + +Frame 3518: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.880619000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.880619000 UTC + Epoch Arrival Time: 1750610997.880619000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.210430000 seconds] + [Time delta from previous displayed frame: 0.210430000 seconds] + [Time since reference or first frame: 2.869636000 seconds] + Frame Number: 3518 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3517] + [Time from request: 0.210430000 seconds] + Control transfer stage: Complete (3) + +No. Time Source Destination Protocol Length Info + 3519 2.920359 host 1.9.0 USB 36 URB_CONTROL in + +Frame 3519: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.931342000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.931342000 UTC + Epoch Arrival Time: 1750610997.931342000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.050723000 seconds] + [Time delta from previous displayed frame: 0.050723000 seconds] + [Time since reference or first frame: 2.920359000 seconds] + Frame Number: 3519 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3520] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 1 + +No. Time Source Destination Protocol Length Info + 3520 2.920575 1.9.0 host USB 29 URB_CONTROL in + +Frame 3520: 29 bytes on wire (232 bits), 29 bytes captured (232 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.931558000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.931558000 UTC + Epoch Arrival Time: 1750610997.931558000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000216000 seconds] + [Time delta from previous displayed frame: 0.000216000 seconds] + [Time since reference or first frame: 2.920575000 seconds] + Frame Number: 3520 + Frame Length: 29 bytes (232 bits) + Capture Length: 29 bytes (232 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 1 + [Request in: 3519] + [Time from request: 0.000216000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 30 + +No. Time Source Destination Protocol Length Info + 3521 2.920594 host 1.9.0 USB 36 URB_CONTROL in + +Frame 3521: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.931577000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.931577000 UTC + Epoch Arrival Time: 1750610997.931577000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000019000 seconds] + [Time delta from previous displayed frame: 0.000019000 seconds] + [Time since reference or first frame: 2.920594000 seconds] + Frame Number: 3521 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0737545010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3522] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 0 (0x0000) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 3522 2.920757 1.9.0 host USB 31 URB_CONTROL in + +Frame 3522: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.931740000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.931740000 UTC + Epoch Arrival Time: 1750610997.931740000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000163000 seconds] + [Time delta from previous displayed frame: 0.000163000 seconds] + [Time since reference or first frame: 2.920757000 seconds] + Frame Number: 3522 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0737545010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 3521] + [Time from request: 0.000163000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 80bb00 + +No. Time Source Destination Protocol Length Info + 3523 2.925724 host 1.9.0 USB 39 URB_CONTROL out + +Frame 3523: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.936707000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.936707000 UTC + Epoch Arrival Time: 1750610997.936707000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.004967000 seconds] + [Time delta from previous displayed frame: 0.004967000 seconds] + [Time since reference or first frame: 2.925724000 seconds] + Frame Number: 3523 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0737545010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 3524] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 3524 2.925866 1.9.0 host USB 28 URB_CONTROL out + +Frame 3524: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.936849000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.936849000 UTC + Epoch Arrival Time: 1750610997.936849000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000142000 seconds] + [Time delta from previous displayed frame: 0.000142000 seconds] + [Time since reference or first frame: 2.925866000 seconds] + Frame Number: 3524 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0737545010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3523] + [Time from request: 0.000142000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3525 2.925882 host 1.9.0 USB 39 URB_CONTROL out + +Frame 3525: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.936865000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.936865000 UTC + Epoch Arrival Time: 1750610997.936865000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000016000 seconds] + [Time delta from previous displayed frame: 0.000016000 seconds] + [Time since reference or first frame: 2.925882000 seconds] + Frame Number: 3525 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 3526] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 3526 2.926084 1.9.0 host USB 28 URB_CONTROL out + +Frame 3526: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.937067000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.937067000 UTC + Epoch Arrival Time: 1750610997.937067000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000202000 seconds] + [Time delta from previous displayed frame: 0.000202000 seconds] + [Time since reference or first frame: 2.926084000 seconds] + Frame Number: 3526 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3525] + [Time from request: 0.000202000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3527 2.926098 host 1.9.0 USB 36 URB_CONTROL in + +Frame 3527: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.937081000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.937081000 UTC + Epoch Arrival Time: 1750610997.937081000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000014000 seconds] + [Time delta from previous displayed frame: 0.000014000 seconds] + [Time since reference or first frame: 2.926098000 seconds] + Frame Number: 3527 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3528] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0d00 + wIndex: 257 (0x0101) + wLength: 5 + +No. Time Source Destination Protocol Length Info + 3528 2.926316 1.9.0 host USB 33 URB_CONTROL in + +Frame 3528: 33 bytes on wire (264 bits), 33 bytes captured (264 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.937299000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.937299000 UTC + Epoch Arrival Time: 1750610997.937299000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000218000 seconds] + [Time delta from previous displayed frame: 0.000218000 seconds] + [Time since reference or first frame: 2.926316000 seconds] + Frame Number: 3528 + Frame Length: 33 bytes (264 bits) + Capture Length: 33 bytes (264 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 5 + [Request in: 3527] + [Time from request: 0.000218000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 0000000200 + +No. Time Source Destination Protocol Length Info + 3529 2.926330 host 1.9.0 USB 36 URB_CONTROL out + +Frame 3529: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.937313000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.937313000 UTC + Epoch Arrival Time: 1750610997.937313000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000014000 seconds] + [Time delta from previous displayed frame: 0.000014000 seconds] + [Time since reference or first frame: 2.926330000 seconds] + Frame Number: 3529 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3530] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0d04 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3530 2.926390 1.9.0 host USB 28 URB_CONTROL out + +Frame 3530: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.937373000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.937373000 UTC + Epoch Arrival Time: 1750610997.937373000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000060000 seconds] + [Time delta from previous displayed frame: 0.000060000 seconds] + [Time since reference or first frame: 2.926390000 seconds] + Frame Number: 3530 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3529] + [Time from request: 0.000060000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 3531 2.926395 host 1.9.0 USB 36 URB_CONTROL out + +Frame 3531: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.937378000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.937378000 UTC + Epoch Arrival Time: 1750610997.937378000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000005000 seconds] + [Time delta from previous displayed frame: 0.000005000 seconds] + [Time since reference or first frame: 2.926395000 seconds] + Frame Number: 3531 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3532] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0e00 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3532 2.926455 1.9.0 host USB 28 URB_CONTROL out + +Frame 3532: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.937438000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.937438000 UTC + Epoch Arrival Time: 1750610997.937438000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000060000 seconds] + [Time delta from previous displayed frame: 0.000060000 seconds] + [Time since reference or first frame: 2.926455000 seconds] + Frame Number: 3532 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3531] + [Time from request: 0.000060000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 3533 2.926460 host 1.9.0 USB 36 URB_CONTROL out + +Frame 3533: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.937443000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.937443000 UTC + Epoch Arrival Time: 1750610997.937443000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000005000 seconds] + [Time delta from previous displayed frame: 0.000005000 seconds] + [Time since reference or first frame: 2.926460000 seconds] + Frame Number: 3533 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3534] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0f00 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3534 2.926518 1.9.0 host USB 28 URB_CONTROL out + +Frame 3534: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.937501000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.937501000 UTC + Epoch Arrival Time: 1750610997.937501000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000058000 seconds] + [Time delta from previous displayed frame: 0.000058000 seconds] + [Time since reference or first frame: 2.926518000 seconds] + Frame Number: 3534 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3533] + [Time from request: 0.000058000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 3535 2.926523 host 1.9.0 USB 36 URB_CONTROL out + +Frame 3535: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.937506000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.937506000 UTC + Epoch Arrival Time: 1750610997.937506000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000005000 seconds] + [Time delta from previous displayed frame: 0.000005000 seconds] + [Time since reference or first frame: 2.926523000 seconds] + Frame Number: 3535 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3536] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x1002 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3536 2.926582 1.9.0 host USB 28 URB_CONTROL out + +Frame 3536: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.937565000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.937565000 UTC + Epoch Arrival Time: 1750610997.937565000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000059000 seconds] + [Time delta from previous displayed frame: 0.000059000 seconds] + [Time since reference or first frame: 2.926582000 seconds] + Frame Number: 3536 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3535] + [Time from request: 0.000059000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 3537 2.926587 host 1.9.0 USB 36 URB_CONTROL out + +Frame 3537: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.937570000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.937570000 UTC + Epoch Arrival Time: 1750610997.937570000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000005000 seconds] + [Time delta from previous displayed frame: 0.000005000 seconds] + [Time since reference or first frame: 2.926587000 seconds] + Frame Number: 3537 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3538] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x110b + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3538 2.926647 1.9.0 host USB 28 URB_CONTROL out + +Frame 3538: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.937630000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.937630000 UTC + Epoch Arrival Time: 1750610997.937630000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000060000 seconds] + [Time delta from previous displayed frame: 0.000060000 seconds] + [Time since reference or first frame: 2.926647000 seconds] + Frame Number: 3538 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3537] + [Time from request: 0.000060000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 3539 2.926696 host 1.9.0 USB 39 URB_CONTROL out + +Frame 3539: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.937679000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.937679000 UTC + Epoch Arrival Time: 1750610997.937679000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000049000 seconds] + [Time delta from previous displayed frame: 0.000049000 seconds] + [Time since reference or first frame: 2.926696000 seconds] + Frame Number: 3539 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 3540] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 3540 2.926817 1.9.0 host USB 28 URB_CONTROL out + +Frame 3540: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.937800000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.937800000 UTC + Epoch Arrival Time: 1750610997.937800000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000121000 seconds] + [Time delta from previous displayed frame: 0.000121000 seconds] + [Time since reference or first frame: 2.926817000 seconds] + Frame Number: 3540 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3539] + [Time from request: 0.000121000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3541 2.926820 host 1.9.0 USB 39 URB_CONTROL out + +Frame 3541: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.937803000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.937803000 UTC + Epoch Arrival Time: 1750610997.937803000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000003000 seconds] + [Time delta from previous displayed frame: 0.000003000 seconds] + [Time since reference or first frame: 2.926820000 seconds] + Frame Number: 3541 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 3542] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 3542 2.926980 1.9.0 host USB 28 URB_CONTROL out + +Frame 3542: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.937963000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.937963000 UTC + Epoch Arrival Time: 1750610997.937963000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000160000 seconds] + [Time delta from previous displayed frame: 0.000160000 seconds] + [Time since reference or first frame: 2.926980000 seconds] + Frame Number: 3542 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3541] + [Time from request: 0.000160000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3543 2.926995 host 1.9.0 USB 39 URB_CONTROL out + +Frame 3543: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.937978000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.937978000 UTC + Epoch Arrival Time: 1750610997.937978000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000015000 seconds] + [Time delta from previous displayed frame: 0.000015000 seconds] + [Time since reference or first frame: 2.926995000 seconds] + Frame Number: 3543 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 3544] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 3544 2.927130 1.9.0 host USB 28 URB_CONTROL out + +Frame 3544: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.938113000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.938113000 UTC + Epoch Arrival Time: 1750610997.938113000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000135000 seconds] + [Time delta from previous displayed frame: 0.000135000 seconds] + [Time since reference or first frame: 2.927130000 seconds] + Frame Number: 3544 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3543] + [Time from request: 0.000135000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3545 2.927148 host 1.9.0 USB 36 URB_CONTROL in + +Frame 3545: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.938131000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.938131000 UTC + Epoch Arrival Time: 1750610997.938131000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000018000 seconds] + [Time delta from previous displayed frame: 0.000018000 seconds] + [Time since reference or first frame: 2.927148000 seconds] + Frame Number: 3545 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e62b8e0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3546] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 3546 2.927320 1.9.0 host USB 31 URB_CONTROL in + +Frame 3546: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.938303000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.938303000 UTC + Epoch Arrival Time: 1750610997.938303000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000172000 seconds] + [Time delta from previous displayed frame: 0.000172000 seconds] + [Time since reference or first frame: 2.927320000 seconds] + Frame Number: 3546 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e62b8e0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 3545] + [Time from request: 0.000172000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] +CONTROL response data: 80bb00 + +No. Time Source Destination Protocol Length Info + 3547 2.927337 host 1.9.0 USB 36 URB_CONTROL in + +Frame 3547: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.938320000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.938320000 UTC + Epoch Arrival Time: 1750610997.938320000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000017000 seconds] + [Time delta from previous displayed frame: 0.000017000 seconds] + [Time since reference or first frame: 2.927337000 seconds] + Frame Number: 3547 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3548] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 1 + +No. Time Source Destination Protocol Length Info + 3548 2.927493 1.9.0 host USB 29 URB_CONTROL in + +Frame 3548: 29 bytes on wire (232 bits), 29 bytes captured (232 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.938476000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.938476000 UTC + Epoch Arrival Time: 1750610997.938476000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000156000 seconds] + [Time delta from previous displayed frame: 0.000156000 seconds] + [Time since reference or first frame: 2.927493000 seconds] + Frame Number: 3548 + Frame Length: 29 bytes (232 bits) + Capture Length: 29 bytes (232 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 1 + [Request in: 3547] + [Time from request: 0.000156000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 30 + +No. Time Source Destination Protocol Length Info + 3549 2.927500 host 1.9.0 USB 36 URB_CONTROL out + +Frame 3549: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.938483000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.938483000 UTC + Epoch Arrival Time: 1750610997.938483000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000007000 seconds] + [Time delta from previous displayed frame: 0.000007000 seconds] + [Time since reference or first frame: 2.927500000 seconds] + Frame Number: 3549 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3550] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0030 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3550 2.927728 1.9.0 host USB 28 URB_CONTROL out + +Frame 3550: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:49:57.938711000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:49:57.938711000 UTC + Epoch Arrival Time: 1750610997.938711000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000228000 seconds] + [Time delta from previous displayed frame: 0.000228000 seconds] + [Time since reference or first frame: 2.927728000 seconds] + Frame Number: 3550 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ea70560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3549] + [Time from request: 0.000228000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] diff --git a/reverse_eng_dataset/88200k_playback_sample_rate_change_event_tascam144mk2.txt b/reverse_eng_dataset/88200k_playback_sample_rate_change_event_tascam144mk2.txt new file mode 100644 index 0000000..aa5f603 --- /dev/null +++ b/reverse_eng_dataset/88200k_playback_sample_rate_change_event_tascam144mk2.txt @@ -0,0 +1,2846 @@ +No. Time Source Destination Protocol Length Info + 2818 1.488150 host 1.1.0 USB 36 SET CONFIGURATION Request + +Frame 2818: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:57.841008000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:57.841008000 UTC + Epoch Arrival Time: 1750610157.841008000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000103000 seconds] + [Time delta from previous displayed frame: 0.015130000 seconds] + [Time since reference or first frame: 1.488150000 seconds] + Frame Number: 2818 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739ec2010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2819] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x00 + 0... .... = Direction: Host-to-device + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: SET CONFIGURATION (9) + bConfigurationValue: 0 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 2819 1.488662 1.1.0 host USB 28 SET CONFIGURATION Response + +Frame 2819: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:57.841520000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:57.841520000 UTC + Epoch Arrival Time: 1750610157.841520000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000512000 seconds] + [Time delta from previous displayed frame: 0.000512000 seconds] + [Time since reference or first frame: 1.488662000 seconds] + Frame Number: 2819 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739ec2010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2818] + [Time from request: 0.000512000 seconds] + Control transfer stage: Complete (3) + +No. Time Source Destination Protocol Length Info + 2820 1.488678 host 1.1.0 USB 36 GET DESCRIPTOR Request DEVICE + +Frame 2820: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:57.841536000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:57.841536000 UTC + Epoch Arrival Time: 1750610157.841536000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000016000 seconds] + [Time delta from previous displayed frame: 0.000016000 seconds] + [Time since reference or first frame: 1.488678000 seconds] + Frame Number: 2820 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739ec2010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2821] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: DEVICE (0x01) + Language Id: no language specified (0x0000) + wLength: 18 + +No. Time Source Destination Protocol Length Info + 2821 1.488817 1.1.0 host USB 46 GET DESCRIPTOR Response DEVICE + +Frame 2821: 46 bytes on wire (368 bits), 46 bytes captured (368 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:57.841675000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:57.841675000 UTC + Epoch Arrival Time: 1750610157.841675000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000139000 seconds] + [Time delta from previous displayed frame: 0.000139000 seconds] + [Time since reference or first frame: 1.488817000 seconds] + Frame Number: 2821 + Frame Length: 46 bytes (368 bits) + Capture Length: 46 bytes (368 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0739ec2010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 18 + [Request in: 2820] + [Time from request: 0.000139000 seconds] + Control transfer stage: Complete (3) +DEVICE DESCRIPTOR + bLength: 18 + bDescriptorType: 0x01 (DEVICE) + bcdUSB: 0x0200 + bDeviceClass: Vendor Specific (0xff) + bDeviceSubClass: 255 + bDeviceProtocol: 255 + bMaxPacketSize0: 64 + idVendor: TEAC Corp. (0x0644) + idProduct: Unknown (0x8020) + bcdDevice: 0x0100 + iManufacturer: 1 + iProduct: 2 + iSerialNumber: 3 + bNumConfigurations: 1 + +No. Time Source Destination Protocol Length Info + 2824 1.490110 host 1.1.0 USB 36 URB_CONTROL in + +Frame 2824: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:57.842968000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:57.842968000 UTC + Epoch Arrival Time: 1750610157.842968000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000058000 seconds] + [Time delta from previous displayed frame: 0.001293000 seconds] + [Time since reference or first frame: 1.490110000 seconds] + Frame Number: 2824 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3127c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2825] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 86 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 15 + +No. Time Source Destination Protocol Length Info + 2825 1.490235 1.1.0 host USB 43 URB_CONTROL in + +Frame 2825: 43 bytes on wire (344 bits), 43 bytes captured (344 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:57.843093000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:57.843093000 UTC + Epoch Arrival Time: 1750610157.843093000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000125000 seconds] + [Time delta from previous displayed frame: 0.000125000 seconds] + [Time since reference or first frame: 1.490235000 seconds] + Frame Number: 2825 + Frame Length: 43 bytes (344 bits) + Capture Length: 43 bytes (344 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3127c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 15 + [Request in: 2824] + [Time from request: 0.000125000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 31020356322e30332020202000ffff + +No. Time Source Destination Protocol Length Info + 2826 1.490251 host 1.1.0 USB 36 URB_CONTROL in + +Frame 2826: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:57.843109000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:57.843109000 UTC + Epoch Arrival Time: 1750610157.843109000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000016000 seconds] + [Time delta from previous displayed frame: 0.000016000 seconds] + [Time since reference or first frame: 1.490251000 seconds] + Frame Number: 2826 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073b7e1a20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2827] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 86 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 15 + +No. Time Source Destination Protocol Length Info + 2827 1.490438 1.1.0 host USB 43 URB_CONTROL in + +Frame 2827: 43 bytes on wire (344 bits), 43 bytes captured (344 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:57.843296000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:57.843296000 UTC + Epoch Arrival Time: 1750610157.843296000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000187000 seconds] + [Time delta from previous displayed frame: 0.000187000 seconds] + [Time since reference or first frame: 1.490438000 seconds] + Frame Number: 2827 + Frame Length: 43 bytes (344 bits) + Capture Length: 43 bytes (344 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073b7e1a20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 15 + [Request in: 2826] + [Time from request: 0.000187000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 31020356322e30332020202000ffff + +No. Time Source Destination Protocol Length Info + 2828 1.490451 host 1.1.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 2828: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:57.843309000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:57.843309000 UTC + Epoch Arrival Time: 1750610157.843309000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000013000 seconds] + [Time delta from previous displayed frame: 0.000013000 seconds] + [Time since reference or first frame: 1.490451000 seconds] + Frame Number: 2828 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073b7e1a20 + IRP USBD_STATUS: Unknown (0xffffde07) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2829] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x01 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 2829 1.490564 1.1.0 host USB 42 GET DESCRIPTOR Response STRING + +Frame 2829: 42 bytes on wire (336 bits), 42 bytes captured (336 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:57.843422000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:57.843422000 UTC + Epoch Arrival Time: 1750610157.843422000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000113000 seconds] + [Time delta from previous displayed frame: 0.000113000 seconds] + [Time since reference or first frame: 1.490564000 seconds] + Frame Number: 2829 + Frame Length: 42 bytes (336 bits) + Capture Length: 42 bytes (336 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073b7e1a20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 14 + [Request in: 2828] + [Time from request: 0.000113000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 14 + bDescriptorType: 0x03 (STRING) + bString: TASCAM + +No. Time Source Destination Protocol Length Info + 2830 1.490581 host 1.1.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 2830: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:57.843439000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:57.843439000 UTC + Epoch Arrival Time: 1750610157.843439000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000017000 seconds] + [Time delta from previous displayed frame: 0.000017000 seconds] + [Time since reference or first frame: 1.490581000 seconds] + Frame Number: 2830 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073b7e1a20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2831] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x02 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 2831 1.490713 1.1.0 host USB 52 GET DESCRIPTOR Response STRING + +Frame 2831: 52 bytes on wire (416 bits), 52 bytes captured (416 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:57.843571000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:57.843571000 UTC + Epoch Arrival Time: 1750610157.843571000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000132000 seconds] + [Time delta from previous displayed frame: 0.000132000 seconds] + [Time since reference or first frame: 1.490713000 seconds] + Frame Number: 2831 + Frame Length: 52 bytes (416 bits) + Capture Length: 52 bytes (416 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073b7e1a20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 24 + [Request in: 2830] + [Time from request: 0.000132000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 24 + bDescriptorType: 0x03 (STRING) + bString: US-144 MKII + +No. Time Source Destination Protocol Length Info + 2832 1.490725 host 1.1.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 2832: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:57.843583000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:57.843583000 UTC + Epoch Arrival Time: 1750610157.843583000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000012000 seconds] + [Time delta from previous displayed frame: 0.000012000 seconds] + [Time since reference or first frame: 1.490725000 seconds] + Frame Number: 2832 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073b7e1a20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2833] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x03 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 2833 1.490857 1.1.0 host USB 62 GET DESCRIPTOR Response STRING + +Frame 2833: 62 bytes on wire (496 bits), 62 bytes captured (496 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:57.843715000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:57.843715000 UTC + Epoch Arrival Time: 1750610157.843715000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000132000 seconds] + [Time delta from previous displayed frame: 0.000132000 seconds] + [Time since reference or first frame: 1.490857000 seconds] + Frame Number: 2833 + Frame Length: 62 bytes (496 bits) + Capture Length: 62 bytes (496 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073b7e1a20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 34 + [Request in: 2832] + [Time from request: 0.000132000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 34 + bDescriptorType: 0x03 (STRING) + bString: no serial number + +No. Time Source Destination Protocol Length Info + 2834 1.490871 host 1.1.0 USB 36 GET DESCRIPTOR Request CONFIGURATION + +Frame 2834: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:57.843729000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:57.843729000 UTC + Epoch Arrival Time: 1750610157.843729000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000014000 seconds] + [Time delta from previous displayed frame: 0.000014000 seconds] + [Time since reference or first frame: 1.490871000 seconds] + Frame Number: 2834 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073b7e1a20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2835] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: CONFIGURATION (0x02) + Language Id: no language specified (0x0000) + wLength: 1033 + +No. Time Source Destination Protocol Length Info + 2835 1.491151 1.1.0 host USB 108 GET DESCRIPTOR Response CONFIGURATION + +Frame 2835: 108 bytes on wire (864 bits), 108 bytes captured (864 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:57.844009000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:57.844009000 UTC + Epoch Arrival Time: 1750610157.844009000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000280000 seconds] + [Time delta from previous displayed frame: 0.000280000 seconds] + [Time since reference or first frame: 1.491151000 seconds] + Frame Number: 2835 + Frame Length: 108 bytes (864 bits) + Capture Length: 108 bytes (864 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073b7e1a20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 80 + [Request in: 2834] + [Time from request: 0.000280000 seconds] + Control transfer stage: Complete (3) +CONFIGURATION DESCRIPTOR + bLength: 9 + bDescriptorType: 0x02 (CONFIGURATION) + wTotalLength: 80 + bNumInterfaces: 2 + bConfigurationValue: 1 + iConfiguration: 0 + Configuration bmAttributes: 0x80 NOT SELF-POWERED NO REMOTE-WAKEUP + 1... .... = Must be 1: Must be 1 for USB 1.1 and higher + .0.. .... = Self-Powered: This device is powered from the USB bus + ..0. .... = Remote Wakeup: This device does NOT support remote wakeup + bMaxPower: 240 (480mA) +INTERFACE DESCRIPTOR (0.0): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 0 + bAlternateSetting: 0 + bNumEndpoints: 0 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +INTERFACE DESCRIPTOR (0.1): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 0 + bAlternateSetting: 1 + bNumEndpoints: 3 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x02 OUT Endpoint:2 + 0... .... = Direction: OUT Endpoint + .... 0010 = Endpoint Number: 0x2 + bmAttributes: 0x05 + .... ..01 = Transfertype: Isochronous-Transfer (0x1) + .... 01.. = Synchronisationtype: Asynchronous (0x1) + ..00 .... = Behaviourtype: Data-Endpoint (0x0) + wMaxPacketSize: 156 + ...0 0... .... .... = Transactions per microframe: 1 (0) + .... .000 1001 1100 = Maximum Packet Size: 156 + bInterval: 1 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x83 IN Endpoint:3 + 1... .... = Direction: IN Endpoint + .... 0011 = Endpoint Number: 0x3 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 4 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x04 OUT Endpoint:4 + 0... .... = Direction: OUT Endpoint + .... 0100 = Endpoint Number: 0x4 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 4 +INTERFACE DESCRIPTOR (1.0): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 1 + bAlternateSetting: 0 + bNumEndpoints: 0 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +INTERFACE DESCRIPTOR (1.1): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 1 + bAlternateSetting: 1 + bNumEndpoints: 2 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x81 IN Endpoint:1 + 1... .... = Direction: IN Endpoint + .... 0001 = Endpoint Number: 0x1 + bmAttributes: 0x05 + .... ..01 = Transfertype: Isochronous-Transfer (0x1) + .... 01.. = Synchronisationtype: Asynchronous (0x1) + ..00 .... = Behaviourtype: Data-Endpoint (0x0) + wMaxPacketSize: 64 + ...0 0... .... .... = Transactions per microframe: 1 (0) + .... .000 0100 0000 = Maximum Packet Size: 64 + bInterval: 4 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x86 IN Endpoint:6 + 1... .... = Direction: IN Endpoint + .... 0110 = Endpoint Number: 0x6 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 1 + +No. Time Source Destination Protocol Length Info + 2840 1.494889 host 1.1.0 USB 36 GET DESCRIPTOR Request DEVICE + +Frame 2840: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:57.847747000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:57.847747000 UTC + Epoch Arrival Time: 1750610157.847747000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000835000 seconds] + [Time delta from previous displayed frame: 0.003738000 seconds] + [Time since reference or first frame: 1.494889000 seconds] + Frame Number: 2840 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0738a5f010 + IRP USBD_STATUS: Unknown (0xffffde07) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2841] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: DEVICE (0x01) + Language Id: no language specified (0x0000) + wLength: 18 + +No. Time Source Destination Protocol Length Info + 2841 1.495045 1.1.0 host USB 46 GET DESCRIPTOR Response DEVICE + +Frame 2841: 46 bytes on wire (368 bits), 46 bytes captured (368 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:57.847903000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:57.847903000 UTC + Epoch Arrival Time: 1750610157.847903000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000156000 seconds] + [Time delta from previous displayed frame: 0.000156000 seconds] + [Time since reference or first frame: 1.495045000 seconds] + Frame Number: 2841 + Frame Length: 46 bytes (368 bits) + Capture Length: 46 bytes (368 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0738a5f010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 18 + [Request in: 2840] + [Time from request: 0.000156000 seconds] + Control transfer stage: Complete (3) +DEVICE DESCRIPTOR + bLength: 18 + bDescriptorType: 0x01 (DEVICE) + bcdUSB: 0x0200 + bDeviceClass: Vendor Specific (0xff) + bDeviceSubClass: 255 + bDeviceProtocol: 255 + bMaxPacketSize0: 64 + idVendor: TEAC Corp. (0x0644) + idProduct: Unknown (0x8020) + bcdDevice: 0x0100 + iManufacturer: 1 + iProduct: 2 + iSerialNumber: 3 + bNumConfigurations: 1 + +No. Time Source Destination Protocol Length Info + 2842 1.495063 host 1.1.0 USB 36 SET CONFIGURATION Request + +Frame 2842: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:57.847921000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:57.847921000 UTC + Epoch Arrival Time: 1750610157.847921000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000018000 seconds] + [Time delta from previous displayed frame: 0.000018000 seconds] + [Time since reference or first frame: 1.495063000 seconds] + Frame Number: 2842 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0738a5f010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3049] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x00 + 0... .... = Direction: Host-to-device + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: SET CONFIGURATION (9) + bConfigurationValue: 1 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3049 1.705215 1.1.0 host USB 28 SET CONFIGURATION Response + +Frame 3049: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.058073000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.058073000 UTC + Epoch Arrival Time: 1750610158.058073000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001155000 seconds] + [Time delta from previous displayed frame: 0.210152000 seconds] + [Time since reference or first frame: 1.705215000 seconds] + Frame Number: 3049 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0738a5f010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2842] + [Time from request: 0.210152000 seconds] + Control transfer stage: Complete (3) + +No. Time Source Destination Protocol Length Info + 3100 1.755620 host 1.1.0 USB 36 URB_CONTROL in + +Frame 3100: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.108478000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.108478000 UTC + Epoch Arrival Time: 1750610158.108478000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001548000 seconds] + [Time delta from previous displayed frame: 0.050405000 seconds] + [Time since reference or first frame: 1.755620000 seconds] + Frame Number: 3100 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3127c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3101] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 1 + +No. Time Source Destination Protocol Length Info + 3101 1.755844 1.1.0 host USB 29 URB_CONTROL in + +Frame 3101: 29 bytes on wire (232 bits), 29 bytes captured (232 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.108702000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.108702000 UTC + Epoch Arrival Time: 1750610158.108702000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000224000 seconds] + [Time delta from previous displayed frame: 0.000224000 seconds] + [Time since reference or first frame: 1.755844000 seconds] + Frame Number: 3101 + Frame Length: 29 bytes (232 bits) + Capture Length: 29 bytes (232 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3127c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 1 + [Request in: 3100] + [Time from request: 0.000224000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 30 + +No. Time Source Destination Protocol Length Info + 3102 1.755900 host 1.1.0 USB 36 URB_CONTROL in + +Frame 3102: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.108758000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.108758000 UTC + Epoch Arrival Time: 1750610158.108758000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000056000 seconds] + [Time delta from previous displayed frame: 0.000056000 seconds] + [Time since reference or first frame: 1.755900000 seconds] + Frame Number: 3102 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073b7e1a20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3105] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 0 (0x0000) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 3105 1.756051 1.1.0 host USB 31 URB_CONTROL in + +Frame 3105: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.108909000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.108909000 UTC + Epoch Arrival Time: 1750610158.108909000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000012000 seconds] + [Time delta from previous displayed frame: 0.000151000 seconds] + [Time since reference or first frame: 1.756051000 seconds] + Frame Number: 3105 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073b7e1a20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 3102] + [Time from request: 0.000151000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 80bb00 + +No. Time Source Destination Protocol Length Info + 3106 1.756076 host 1.1.0 USB 39 URB_CONTROL out + +Frame 3106: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.108934000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.108934000 UTC + Epoch Arrival Time: 1750610158.108934000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000025000 seconds] + [Time delta from previous displayed frame: 0.000025000 seconds] + [Time since reference or first frame: 1.756076000 seconds] + Frame Number: 3106 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073b7e1a20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 3107] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 885801 + +No. Time Source Destination Protocol Length Info + 3107 1.756194 1.1.0 host USB 28 URB_CONTROL out + +Frame 3107: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.109052000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.109052000 UTC + Epoch Arrival Time: 1750610158.109052000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000118000 seconds] + [Time delta from previous displayed frame: 0.000118000 seconds] + [Time since reference or first frame: 1.756194000 seconds] + Frame Number: 3107 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073b7e1a20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3106] + [Time from request: 0.000118000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3108 1.756217 host 1.1.0 USB 39 URB_CONTROL out + +Frame 3108: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.109075000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.109075000 UTC + Epoch Arrival Time: 1750610158.109075000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000023000 seconds] + [Time delta from previous displayed frame: 0.000023000 seconds] + [Time since reference or first frame: 1.756217000 seconds] + Frame Number: 3108 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0738a5f010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 3109] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 885801 + +No. Time Source Destination Protocol Length Info + 3109 1.756343 1.1.0 host USB 28 URB_CONTROL out + +Frame 3109: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.109201000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.109201000 UTC + Epoch Arrival Time: 1750610158.109201000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000126000 seconds] + [Time delta from previous displayed frame: 0.000126000 seconds] + [Time since reference or first frame: 1.756343000 seconds] + Frame Number: 3109 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0738a5f010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3108] + [Time from request: 0.000126000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3114 1.760744 host 1.1.0 USB 39 URB_CONTROL out + +Frame 3114: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.113602000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.113602000 UTC + Epoch Arrival Time: 1750610158.113602000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000687000 seconds] + [Time delta from previous displayed frame: 0.004401000 seconds] + [Time since reference or first frame: 1.760744000 seconds] + Frame Number: 3114 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3127c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 3115] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 885801 + +No. Time Source Destination Protocol Length Info + 3115 1.760887 1.1.0 host USB 28 URB_CONTROL out + +Frame 3115: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.113745000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.113745000 UTC + Epoch Arrival Time: 1750610158.113745000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000143000 seconds] + [Time delta from previous displayed frame: 0.000143000 seconds] + [Time since reference or first frame: 1.760887000 seconds] + Frame Number: 3115 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3127c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3114] + [Time from request: 0.000143000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3116 1.760906 host 1.1.0 USB 39 URB_CONTROL out + +Frame 3116: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.113764000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.113764000 UTC + Epoch Arrival Time: 1750610158.113764000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000019000 seconds] + [Time delta from previous displayed frame: 0.000019000 seconds] + [Time since reference or first frame: 1.760906000 seconds] + Frame Number: 3116 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073b7e1a20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 3117] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 885801 + +No. Time Source Destination Protocol Length Info + 3117 1.761045 1.1.0 host USB 28 URB_CONTROL out + +Frame 3117: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.113903000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.113903000 UTC + Epoch Arrival Time: 1750610158.113903000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000139000 seconds] + [Time delta from previous displayed frame: 0.000139000 seconds] + [Time since reference or first frame: 1.761045000 seconds] + Frame Number: 3117 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073b7e1a20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3116] + [Time from request: 0.000139000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3118 1.761062 host 1.1.0 USB 36 URB_CONTROL in + +Frame 3118: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.113920000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.113920000 UTC + Epoch Arrival Time: 1750610158.113920000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000017000 seconds] + [Time delta from previous displayed frame: 0.000017000 seconds] + [Time since reference or first frame: 1.761062000 seconds] + Frame Number: 3118 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073b7e1a20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3119] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0d00 + wIndex: 257 (0x0101) + wLength: 5 + +No. Time Source Destination Protocol Length Info + 3119 1.761265 1.1.0 host USB 33 URB_CONTROL in + +Frame 3119: 33 bytes on wire (264 bits), 33 bytes captured (264 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.114123000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.114123000 UTC + Epoch Arrival Time: 1750610158.114123000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000203000 seconds] + [Time delta from previous displayed frame: 0.000203000 seconds] + [Time since reference or first frame: 1.761265000 seconds] + Frame Number: 3119 + Frame Length: 33 bytes (264 bits) + Capture Length: 33 bytes (264 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073b7e1a20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 5 + [Request in: 3118] + [Time from request: 0.000203000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 0000000800 + +No. Time Source Destination Protocol Length Info + 3120 1.761280 host 1.1.0 USB 36 URB_CONTROL out + +Frame 3120: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.114138000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.114138000 UTC + Epoch Arrival Time: 1750610158.114138000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000015000 seconds] + [Time delta from previous displayed frame: 0.000015000 seconds] + [Time since reference or first frame: 1.761280000 seconds] + Frame Number: 3120 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073b7e1a20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3121] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0d04 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3121 1.761345 1.1.0 host USB 28 URB_CONTROL out + +Frame 3121: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.114203000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.114203000 UTC + Epoch Arrival Time: 1750610158.114203000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000065000 seconds] + [Time delta from previous displayed frame: 0.000065000 seconds] + [Time since reference or first frame: 1.761345000 seconds] + Frame Number: 3121 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073b7e1a20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3120] + [Time from request: 0.000065000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 3122 1.761353 host 1.1.0 USB 36 URB_CONTROL out + +Frame 3122: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.114211000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.114211000 UTC + Epoch Arrival Time: 1750610158.114211000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000008000 seconds] + [Time delta from previous displayed frame: 0.000008000 seconds] + [Time since reference or first frame: 1.761353000 seconds] + Frame Number: 3122 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a34c010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3123] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0e00 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3123 1.761432 1.1.0 host USB 28 URB_CONTROL out + +Frame 3123: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.114290000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.114290000 UTC + Epoch Arrival Time: 1750610158.114290000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000079000 seconds] + [Time delta from previous displayed frame: 0.000079000 seconds] + [Time since reference or first frame: 1.761432000 seconds] + Frame Number: 3123 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a34c010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3122] + [Time from request: 0.000079000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 3124 1.761439 host 1.1.0 USB 36 URB_CONTROL out + +Frame 3124: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.114297000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.114297000 UTC + Epoch Arrival Time: 1750610158.114297000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000007000 seconds] + [Time delta from previous displayed frame: 0.000007000 seconds] + [Time since reference or first frame: 1.761439000 seconds] + Frame Number: 3124 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3127c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3125] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0f00 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3125 1.761501 1.1.0 host USB 28 URB_CONTROL out + +Frame 3125: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.114359000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.114359000 UTC + Epoch Arrival Time: 1750610158.114359000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000062000 seconds] + [Time delta from previous displayed frame: 0.000062000 seconds] + [Time since reference or first frame: 1.761501000 seconds] + Frame Number: 3125 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3127c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3124] + [Time from request: 0.000062000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 3126 1.761507 host 1.1.0 USB 36 URB_CONTROL out + +Frame 3126: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.114365000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.114365000 UTC + Epoch Arrival Time: 1750610158.114365000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000006000 seconds] + [Time delta from previous displayed frame: 0.000006000 seconds] + [Time since reference or first frame: 1.761507000 seconds] + Frame Number: 3126 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3127c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3127] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x1008 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3127 1.761638 1.1.0 host USB 28 URB_CONTROL out + +Frame 3127: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.114496000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.114496000 UTC + Epoch Arrival Time: 1750610158.114496000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000131000 seconds] + [Time delta from previous displayed frame: 0.000131000 seconds] + [Time since reference or first frame: 1.761638000 seconds] + Frame Number: 3127 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3127c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3126] + [Time from request: 0.000131000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 3128 1.761642 host 1.1.0 USB 36 URB_CONTROL out + +Frame 3128: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.114500000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.114500000 UTC + Epoch Arrival Time: 1750610158.114500000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000004000 seconds] + [Time delta from previous displayed frame: 0.000004000 seconds] + [Time since reference or first frame: 1.761642000 seconds] + Frame Number: 3128 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073b7e1a20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3129] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x110b + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3129 1.761701 1.1.0 host USB 28 URB_CONTROL out + +Frame 3129: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.114559000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.114559000 UTC + Epoch Arrival Time: 1750610158.114559000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000059000 seconds] + [Time delta from previous displayed frame: 0.000059000 seconds] + [Time since reference or first frame: 1.761701000 seconds] + Frame Number: 3129 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073b7e1a20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3128] + [Time from request: 0.000059000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 3130 1.761735 host 1.1.0 USB 39 URB_CONTROL out + +Frame 3130: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.114593000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.114593000 UTC + Epoch Arrival Time: 1750610158.114593000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000034000 seconds] + [Time delta from previous displayed frame: 0.000034000 seconds] + [Time since reference or first frame: 1.761735000 seconds] + Frame Number: 3130 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073b7e1a20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 3131] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 885801 + +No. Time Source Destination Protocol Length Info + 3131 1.761858 1.1.0 host USB 28 URB_CONTROL out + +Frame 3131: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.114716000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.114716000 UTC + Epoch Arrival Time: 1750610158.114716000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000123000 seconds] + [Time delta from previous displayed frame: 0.000123000 seconds] + [Time since reference or first frame: 1.761858000 seconds] + Frame Number: 3131 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073b7e1a20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3130] + [Time from request: 0.000123000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3132 1.761873 host 1.1.0 USB 39 URB_CONTROL out + +Frame 3132: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.114731000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.114731000 UTC + Epoch Arrival Time: 1750610158.114731000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000015000 seconds] + [Time delta from previous displayed frame: 0.000015000 seconds] + [Time since reference or first frame: 1.761873000 seconds] + Frame Number: 3132 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073b7e1a20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 3135] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 885801 + +No. Time Source Destination Protocol Length Info + 3135 1.762081 1.1.0 host USB 28 URB_CONTROL out + +Frame 3135: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.114939000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.114939000 UTC + Epoch Arrival Time: 1750610158.114939000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000040000 seconds] + [Time delta from previous displayed frame: 0.000208000 seconds] + [Time since reference or first frame: 1.762081000 seconds] + Frame Number: 3135 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073b7e1a20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3132] + [Time from request: 0.000208000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3136 1.762103 host 1.1.0 USB 39 URB_CONTROL out + +Frame 3136: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.114961000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.114961000 UTC + Epoch Arrival Time: 1750610158.114961000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000022000 seconds] + [Time delta from previous displayed frame: 0.000022000 seconds] + [Time since reference or first frame: 1.762103000 seconds] + Frame Number: 3136 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3127c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 3137] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 885801 + +No. Time Source Destination Protocol Length Info + 3137 1.762244 1.1.0 host USB 28 URB_CONTROL out + +Frame 3137: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.115102000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.115102000 UTC + Epoch Arrival Time: 1750610158.115102000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000141000 seconds] + [Time delta from previous displayed frame: 0.000141000 seconds] + [Time since reference or first frame: 1.762244000 seconds] + Frame Number: 3137 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3127c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3136] + [Time from request: 0.000141000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3138 1.762251 host 1.1.0 USB 36 URB_CONTROL in + +Frame 3138: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.115109000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.115109000 UTC + Epoch Arrival Time: 1750610158.115109000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000007000 seconds] + [Time delta from previous displayed frame: 0.000007000 seconds] + [Time since reference or first frame: 1.762251000 seconds] + Frame Number: 3138 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0738a5f010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3139] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 3139 1.762429 1.1.0 host USB 31 URB_CONTROL in + +Frame 3139: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.115287000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.115287000 UTC + Epoch Arrival Time: 1750610158.115287000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000178000 seconds] + [Time delta from previous displayed frame: 0.000178000 seconds] + [Time since reference or first frame: 1.762429000 seconds] + Frame Number: 3139 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0738a5f010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 3138] + [Time from request: 0.000178000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] +CONTROL response data: 885801 + +No. Time Source Destination Protocol Length Info + 3140 1.762446 host 1.1.0 USB 36 URB_CONTROL in + +Frame 3140: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.115304000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.115304000 UTC + Epoch Arrival Time: 1750610158.115304000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000017000 seconds] + [Time delta from previous displayed frame: 0.000017000 seconds] + [Time since reference or first frame: 1.762446000 seconds] + Frame Number: 3140 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0738a5f010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3141] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 1 + +No. Time Source Destination Protocol Length Info + 3141 1.762606 1.1.0 host USB 29 URB_CONTROL in + +Frame 3141: 29 bytes on wire (232 bits), 29 bytes captured (232 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.115464000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.115464000 UTC + Epoch Arrival Time: 1750610158.115464000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000160000 seconds] + [Time delta from previous displayed frame: 0.000160000 seconds] + [Time since reference or first frame: 1.762606000 seconds] + Frame Number: 3141 + Frame Length: 29 bytes (232 bits) + Capture Length: 29 bytes (232 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0738a5f010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 1 + [Request in: 3140] + [Time from request: 0.000160000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 30 + +No. Time Source Destination Protocol Length Info + 3142 1.762623 host 1.1.0 USB 36 URB_CONTROL out + +Frame 3142: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.115481000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.115481000 UTC + Epoch Arrival Time: 1750610158.115481000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000017000 seconds] + [Time delta from previous displayed frame: 0.000017000 seconds] + [Time since reference or first frame: 1.762623000 seconds] + Frame Number: 3142 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0738a5f010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3143] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0030 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3143 1.762850 1.1.0 host USB 28 URB_CONTROL out + +Frame 3143: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:35:58.115708000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:35:58.115708000 UTC + Epoch Arrival Time: 1750610158.115708000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000227000 seconds] + [Time delta from previous displayed frame: 0.000227000 seconds] + [Time since reference or first frame: 1.762850000 seconds] + Frame Number: 3143 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0738a5f010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3142] + [Time from request: 0.000227000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] diff --git a/reverse_eng_dataset/88200k_recording_sample_rate_change_event_tascam144mk2.txt b/reverse_eng_dataset/88200k_recording_sample_rate_change_event_tascam144mk2.txt new file mode 100644 index 0000000..bb61a55 --- /dev/null +++ b/reverse_eng_dataset/88200k_recording_sample_rate_change_event_tascam144mk2.txt @@ -0,0 +1,2846 @@ +No. Time Source Destination Protocol Length Info + 3723 2.858505 host 1.9.0 USB 36 SET CONFIGURATION Request + +Frame 3723: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:27.995654000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:27.995654000 UTC + Epoch Arrival Time: 1750611987.995654000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001120000 seconds] + [Time delta from previous displayed frame: 0.029151000 seconds] + [Time since reference or first frame: 2.858505000 seconds] + Frame Number: 3723 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e7a6010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3724] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x00 + 0... .... = Direction: Host-to-device + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: SET CONFIGURATION (9) + bConfigurationValue: 0 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3724 2.858971 1.9.0 host USB 28 SET CONFIGURATION Response + +Frame 3724: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:27.996120000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:27.996120000 UTC + Epoch Arrival Time: 1750611987.996120000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000466000 seconds] + [Time delta from previous displayed frame: 0.000466000 seconds] + [Time since reference or first frame: 2.858971000 seconds] + Frame Number: 3724 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e7a6010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3723] + [Time from request: 0.000466000 seconds] + Control transfer stage: Complete (3) + +No. Time Source Destination Protocol Length Info + 3725 2.858987 host 1.9.0 USB 36 GET DESCRIPTOR Request DEVICE + +Frame 3725: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:27.996136000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:27.996136000 UTC + Epoch Arrival Time: 1750611987.996136000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000016000 seconds] + [Time delta from previous displayed frame: 0.000016000 seconds] + [Time since reference or first frame: 2.858987000 seconds] + Frame Number: 3725 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e7a6010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3726] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: DEVICE (0x01) + Language Id: no language specified (0x0000) + wLength: 18 + +No. Time Source Destination Protocol Length Info + 3726 2.859129 1.9.0 host USB 46 GET DESCRIPTOR Response DEVICE + +Frame 3726: 46 bytes on wire (368 bits), 46 bytes captured (368 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:27.996278000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:27.996278000 UTC + Epoch Arrival Time: 1750611987.996278000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000142000 seconds] + [Time delta from previous displayed frame: 0.000142000 seconds] + [Time since reference or first frame: 2.859129000 seconds] + Frame Number: 3726 + Frame Length: 46 bytes (368 bits) + Capture Length: 46 bytes (368 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e7a6010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 18 + [Request in: 3725] + [Time from request: 0.000142000 seconds] + Control transfer stage: Complete (3) +DEVICE DESCRIPTOR + bLength: 18 + bDescriptorType: 0x01 (DEVICE) + bcdUSB: 0x0200 + bDeviceClass: Vendor Specific (0xff) + bDeviceSubClass: 255 + bDeviceProtocol: 255 + bMaxPacketSize0: 64 + idVendor: TEAC Corp. (0x0644) + idProduct: Unknown (0x8020) + bcdDevice: 0x0100 + iManufacturer: 1 + iProduct: 2 + iSerialNumber: 3 + bNumConfigurations: 1 + +No. Time Source Destination Protocol Length Info + 3729 2.860980 host 1.9.0 USB 36 URB_CONTROL in + +Frame 3729: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:27.998129000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:27.998129000 UTC + Epoch Arrival Time: 1750611987.998129000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001598000 seconds] + [Time delta from previous displayed frame: 0.001851000 seconds] + [Time since reference or first frame: 2.860980000 seconds] + Frame Number: 3729 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0bc010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3730] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 86 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 15 + +No. Time Source Destination Protocol Length Info + 3730 2.861109 1.9.0 host USB 43 URB_CONTROL in + +Frame 3730: 43 bytes on wire (344 bits), 43 bytes captured (344 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:27.998258000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:27.998258000 UTC + Epoch Arrival Time: 1750611987.998258000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000129000 seconds] + [Time delta from previous displayed frame: 0.000129000 seconds] + [Time since reference or first frame: 2.861109000 seconds] + Frame Number: 3730 + Frame Length: 43 bytes (344 bits) + Capture Length: 43 bytes (344 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0bc010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 15 + [Request in: 3729] + [Time from request: 0.000129000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 31020356322e30332020202000ffff + +No. Time Source Destination Protocol Length Info + 3731 2.861128 host 1.9.0 USB 36 URB_CONTROL in + +Frame 3731: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:27.998277000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:27.998277000 UTC + Epoch Arrival Time: 1750611987.998277000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000019000 seconds] + [Time delta from previous displayed frame: 0.000019000 seconds] + [Time since reference or first frame: 2.861128000 seconds] + Frame Number: 3731 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e7a6010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3732] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 86 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 15 + +No. Time Source Destination Protocol Length Info + 3732 2.861280 1.9.0 host USB 43 URB_CONTROL in + +Frame 3732: 43 bytes on wire (344 bits), 43 bytes captured (344 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:27.998429000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:27.998429000 UTC + Epoch Arrival Time: 1750611987.998429000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000152000 seconds] + [Time delta from previous displayed frame: 0.000152000 seconds] + [Time since reference or first frame: 2.861280000 seconds] + Frame Number: 3732 + Frame Length: 43 bytes (344 bits) + Capture Length: 43 bytes (344 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e7a6010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 15 + [Request in: 3731] + [Time from request: 0.000152000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 31020356322e30332020202000ffff + +No. Time Source Destination Protocol Length Info + 3733 2.861296 host 1.9.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 3733: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:27.998445000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:27.998445000 UTC + Epoch Arrival Time: 1750611987.998445000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000016000 seconds] + [Time delta from previous displayed frame: 0.000016000 seconds] + [Time since reference or first frame: 2.861296000 seconds] + Frame Number: 3733 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0bc010 + IRP USBD_STATUS: Unknown (0xffffde07) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3736] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x01 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 3736 2.861411 1.9.0 host USB 42 GET DESCRIPTOR Response STRING + +Frame 3736: 42 bytes on wire (336 bits), 42 bytes captured (336 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:27.998560000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:27.998560000 UTC + Epoch Arrival Time: 1750611987.998560000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000047000 seconds] + [Time delta from previous displayed frame: 0.000115000 seconds] + [Time since reference or first frame: 2.861411000 seconds] + Frame Number: 3736 + Frame Length: 42 bytes (336 bits) + Capture Length: 42 bytes (336 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0bc010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 14 + [Request in: 3733] + [Time from request: 0.000115000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 14 + bDescriptorType: 0x03 (STRING) + bString: TASCAM + +No. Time Source Destination Protocol Length Info + 3737 2.861416 host 1.9.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 3737: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:27.998565000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:27.998565000 UTC + Epoch Arrival Time: 1750611987.998565000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000005000 seconds] + [Time delta from previous displayed frame: 0.000005000 seconds] + [Time since reference or first frame: 2.861416000 seconds] + Frame Number: 3737 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0bc010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3738] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x02 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 3738 2.861552 1.9.0 host USB 52 GET DESCRIPTOR Response STRING + +Frame 3738: 52 bytes on wire (416 bits), 52 bytes captured (416 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:27.998701000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:27.998701000 UTC + Epoch Arrival Time: 1750611987.998701000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000136000 seconds] + [Time delta from previous displayed frame: 0.000136000 seconds] + [Time since reference or first frame: 2.861552000 seconds] + Frame Number: 3738 + Frame Length: 52 bytes (416 bits) + Capture Length: 52 bytes (416 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0bc010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 24 + [Request in: 3737] + [Time from request: 0.000136000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 24 + bDescriptorType: 0x03 (STRING) + bString: US-144 MKII + +No. Time Source Destination Protocol Length Info + 3739 2.861565 host 1.9.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 3739: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:27.998714000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:27.998714000 UTC + Epoch Arrival Time: 1750611987.998714000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000013000 seconds] + [Time delta from previous displayed frame: 0.000013000 seconds] + [Time since reference or first frame: 2.861565000 seconds] + Frame Number: 3739 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0bc010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3740] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x03 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 3740 2.861709 1.9.0 host USB 62 GET DESCRIPTOR Response STRING + +Frame 3740: 62 bytes on wire (496 bits), 62 bytes captured (496 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:27.998858000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:27.998858000 UTC + Epoch Arrival Time: 1750611987.998858000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000144000 seconds] + [Time delta from previous displayed frame: 0.000144000 seconds] + [Time since reference or first frame: 2.861709000 seconds] + Frame Number: 3740 + Frame Length: 62 bytes (496 bits) + Capture Length: 62 bytes (496 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0bc010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 34 + [Request in: 3739] + [Time from request: 0.000144000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 34 + bDescriptorType: 0x03 (STRING) + bString: no serial number + +No. Time Source Destination Protocol Length Info + 3741 2.861748 host 1.9.0 USB 36 GET DESCRIPTOR Request CONFIGURATION + +Frame 3741: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:27.998897000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:27.998897000 UTC + Epoch Arrival Time: 1750611987.998897000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000039000 seconds] + [Time delta from previous displayed frame: 0.000039000 seconds] + [Time since reference or first frame: 2.861748000 seconds] + Frame Number: 3741 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3e0560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3742] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: CONFIGURATION (0x02) + Language Id: no language specified (0x0000) + wLength: 1033 + +No. Time Source Destination Protocol Length Info + 3742 2.862058 1.9.0 host USB 108 GET DESCRIPTOR Response CONFIGURATION + +Frame 3742: 108 bytes on wire (864 bits), 108 bytes captured (864 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:27.999207000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:27.999207000 UTC + Epoch Arrival Time: 1750611987.999207000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000310000 seconds] + [Time delta from previous displayed frame: 0.000310000 seconds] + [Time since reference or first frame: 2.862058000 seconds] + Frame Number: 3742 + Frame Length: 108 bytes (864 bits) + Capture Length: 108 bytes (864 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3e0560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 80 + [Request in: 3741] + [Time from request: 0.000310000 seconds] + Control transfer stage: Complete (3) +CONFIGURATION DESCRIPTOR + bLength: 9 + bDescriptorType: 0x02 (CONFIGURATION) + wTotalLength: 80 + bNumInterfaces: 2 + bConfigurationValue: 1 + iConfiguration: 0 + Configuration bmAttributes: 0x80 NOT SELF-POWERED NO REMOTE-WAKEUP + 1... .... = Must be 1: Must be 1 for USB 1.1 and higher + .0.. .... = Self-Powered: This device is powered from the USB bus + ..0. .... = Remote Wakeup: This device does NOT support remote wakeup + bMaxPower: 240 (480mA) +INTERFACE DESCRIPTOR (0.0): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 0 + bAlternateSetting: 0 + bNumEndpoints: 0 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +INTERFACE DESCRIPTOR (0.1): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 0 + bAlternateSetting: 1 + bNumEndpoints: 3 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x02 OUT Endpoint:2 + 0... .... = Direction: OUT Endpoint + .... 0010 = Endpoint Number: 0x2 + bmAttributes: 0x05 + .... ..01 = Transfertype: Isochronous-Transfer (0x1) + .... 01.. = Synchronisationtype: Asynchronous (0x1) + ..00 .... = Behaviourtype: Data-Endpoint (0x0) + wMaxPacketSize: 156 + ...0 0... .... .... = Transactions per microframe: 1 (0) + .... .000 1001 1100 = Maximum Packet Size: 156 + bInterval: 1 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x83 IN Endpoint:3 + 1... .... = Direction: IN Endpoint + .... 0011 = Endpoint Number: 0x3 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 4 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x04 OUT Endpoint:4 + 0... .... = Direction: OUT Endpoint + .... 0100 = Endpoint Number: 0x4 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 4 +INTERFACE DESCRIPTOR (1.0): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 1 + bAlternateSetting: 0 + bNumEndpoints: 0 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +INTERFACE DESCRIPTOR (1.1): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 1 + bAlternateSetting: 1 + bNumEndpoints: 2 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x81 IN Endpoint:1 + 1... .... = Direction: IN Endpoint + .... 0001 = Endpoint Number: 0x1 + bmAttributes: 0x05 + .... ..01 = Transfertype: Isochronous-Transfer (0x1) + .... 01.. = Synchronisationtype: Asynchronous (0x1) + ..00 .... = Behaviourtype: Data-Endpoint (0x0) + wMaxPacketSize: 64 + ...0 0... .... .... = Transactions per microframe: 1 (0) + .... .000 0100 0000 = Maximum Packet Size: 64 + bInterval: 4 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x86 IN Endpoint:6 + 1... .... = Direction: IN Endpoint + .... 0110 = Endpoint Number: 0x6 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 1 + +No. Time Source Destination Protocol Length Info + 3747 2.867292 host 1.9.0 USB 36 GET DESCRIPTOR Request DEVICE + +Frame 3747: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.004441000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.004441000 UTC + Epoch Arrival Time: 1750611988.004441000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001908000 seconds] + [Time delta from previous displayed frame: 0.005234000 seconds] + [Time since reference or first frame: 2.867292000 seconds] + Frame Number: 3747 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3e0560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3750] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: DEVICE (0x01) + Language Id: no language specified (0x0000) + wLength: 18 + +No. Time Source Destination Protocol Length Info + 3750 2.867427 1.9.0 host USB 46 GET DESCRIPTOR Response DEVICE + +Frame 3750: 46 bytes on wire (368 bits), 46 bytes captured (368 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.004576000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.004576000 UTC + Epoch Arrival Time: 1750611988.004576000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000018000 seconds] + [Time delta from previous displayed frame: 0.000135000 seconds] + [Time since reference or first frame: 2.867427000 seconds] + Frame Number: 3750 + Frame Length: 46 bytes (368 bits) + Capture Length: 46 bytes (368 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3e0560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 18 + [Request in: 3747] + [Time from request: 0.000135000 seconds] + Control transfer stage: Complete (3) +DEVICE DESCRIPTOR + bLength: 18 + bDescriptorType: 0x01 (DEVICE) + bcdUSB: 0x0200 + bDeviceClass: Vendor Specific (0xff) + bDeviceSubClass: 255 + bDeviceProtocol: 255 + bMaxPacketSize0: 64 + idVendor: TEAC Corp. (0x0644) + idProduct: Unknown (0x8020) + bcdDevice: 0x0100 + iManufacturer: 1 + iProduct: 2 + iSerialNumber: 3 + bNumConfigurations: 1 + +No. Time Source Destination Protocol Length Info + 3751 2.867441 host 1.9.0 USB 36 SET CONFIGURATION Request + +Frame 3751: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.004590000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.004590000 UTC + Epoch Arrival Time: 1750611988.004590000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000014000 seconds] + [Time delta from previous displayed frame: 0.000014000 seconds] + [Time since reference or first frame: 2.867441000 seconds] + Frame Number: 3751 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ef69010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3864] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x00 + 0... .... = Direction: Host-to-device + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: SET CONFIGURATION (9) + bConfigurationValue: 1 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3864 3.077618 1.9.0 host USB 28 SET CONFIGURATION Response + +Frame 3864: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.214767000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.214767000 UTC + Epoch Arrival Time: 1750611988.214767000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.076190000 seconds] + [Time delta from previous displayed frame: 0.210177000 seconds] + [Time since reference or first frame: 3.077618000 seconds] + Frame Number: 3864 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ef69010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3751] + [Time from request: 0.210177000 seconds] + Control transfer stage: Complete (3) + +No. Time Source Destination Protocol Length Info + 3877 3.128031 host 1.9.0 USB 36 URB_CONTROL in + +Frame 3877: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.265180000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.265180000 UTC + Epoch Arrival Time: 1750611988.265180000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000617000 seconds] + [Time delta from previous displayed frame: 0.050413000 seconds] + [Time since reference or first frame: 3.128031000 seconds] + Frame Number: 3877 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0bc010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3878] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 1 + +No. Time Source Destination Protocol Length Info + 3878 3.128223 1.9.0 host USB 29 URB_CONTROL in + +Frame 3878: 29 bytes on wire (232 bits), 29 bytes captured (232 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.265372000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.265372000 UTC + Epoch Arrival Time: 1750611988.265372000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000192000 seconds] + [Time delta from previous displayed frame: 0.000192000 seconds] + [Time since reference or first frame: 3.128223000 seconds] + Frame Number: 3878 + Frame Length: 29 bytes (232 bits) + Capture Length: 29 bytes (232 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0bc010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 1 + [Request in: 3877] + [Time from request: 0.000192000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 30 + +No. Time Source Destination Protocol Length Info + 3879 3.128263 host 1.9.0 USB 36 URB_CONTROL in + +Frame 3879: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.265412000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.265412000 UTC + Epoch Arrival Time: 1750611988.265412000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000040000 seconds] + [Time delta from previous displayed frame: 0.000040000 seconds] + [Time since reference or first frame: 3.128263000 seconds] + Frame Number: 3879 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0bc010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3880] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 0 (0x0000) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 3880 3.128438 1.9.0 host USB 31 URB_CONTROL in + +Frame 3880: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.265587000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.265587000 UTC + Epoch Arrival Time: 1750611988.265587000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000175000 seconds] + [Time delta from previous displayed frame: 0.000175000 seconds] + [Time since reference or first frame: 3.128438000 seconds] + Frame Number: 3880 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0bc010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 3879] + [Time from request: 0.000175000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 80bb00 + +No. Time Source Destination Protocol Length Info + 3881 3.128446 host 1.9.0 USB 39 URB_CONTROL out + +Frame 3881: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.265595000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.265595000 UTC + Epoch Arrival Time: 1750611988.265595000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000008000 seconds] + [Time delta from previous displayed frame: 0.000008000 seconds] + [Time since reference or first frame: 3.128446000 seconds] + Frame Number: 3881 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0bc010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 3882] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 885801 + +No. Time Source Destination Protocol Length Info + 3882 3.128560 1.9.0 host USB 28 URB_CONTROL out + +Frame 3882: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.265709000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.265709000 UTC + Epoch Arrival Time: 1750611988.265709000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000114000 seconds] + [Time delta from previous displayed frame: 0.000114000 seconds] + [Time since reference or first frame: 3.128560000 seconds] + Frame Number: 3882 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0bc010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3881] + [Time from request: 0.000114000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3883 3.128580 host 1.9.0 USB 39 URB_CONTROL out + +Frame 3883: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.265729000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.265729000 UTC + Epoch Arrival Time: 1750611988.265729000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000020000 seconds] + [Time delta from previous displayed frame: 0.000020000 seconds] + [Time since reference or first frame: 3.128580000 seconds] + Frame Number: 3883 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e270010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 3884] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 885801 + +No. Time Source Destination Protocol Length Info + 3884 3.128781 1.9.0 host USB 28 URB_CONTROL out + +Frame 3884: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.265930000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.265930000 UTC + Epoch Arrival Time: 1750611988.265930000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000201000 seconds] + [Time delta from previous displayed frame: 0.000201000 seconds] + [Time since reference or first frame: 3.128781000 seconds] + Frame Number: 3884 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e270010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3883] + [Time from request: 0.000201000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3889 3.132280 host 1.9.0 USB 39 URB_CONTROL out + +Frame 3889: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.269429000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.269429000 UTC + Epoch Arrival Time: 1750611988.269429000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000889000 seconds] + [Time delta from previous displayed frame: 0.003499000 seconds] + [Time since reference or first frame: 3.132280000 seconds] + Frame Number: 3889 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e270010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 3890] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 885801 + +No. Time Source Destination Protocol Length Info + 3890 3.132414 1.9.0 host USB 28 URB_CONTROL out + +Frame 3890: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.269563000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.269563000 UTC + Epoch Arrival Time: 1750611988.269563000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000134000 seconds] + [Time delta from previous displayed frame: 0.000134000 seconds] + [Time since reference or first frame: 3.132414000 seconds] + Frame Number: 3890 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e270010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3889] + [Time from request: 0.000134000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3891 3.132430 host 1.9.0 USB 39 URB_CONTROL out + +Frame 3891: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.269579000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.269579000 UTC + Epoch Arrival Time: 1750611988.269579000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000016000 seconds] + [Time delta from previous displayed frame: 0.000016000 seconds] + [Time since reference or first frame: 3.132430000 seconds] + Frame Number: 3891 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0bc010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 3892] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 885801 + +No. Time Source Destination Protocol Length Info + 3892 3.132572 1.9.0 host USB 28 URB_CONTROL out + +Frame 3892: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.269721000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.269721000 UTC + Epoch Arrival Time: 1750611988.269721000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000142000 seconds] + [Time delta from previous displayed frame: 0.000142000 seconds] + [Time since reference or first frame: 3.132572000 seconds] + Frame Number: 3892 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0bc010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3891] + [Time from request: 0.000142000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3893 3.132581 host 1.9.0 USB 36 URB_CONTROL in + +Frame 3893: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.269730000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.269730000 UTC + Epoch Arrival Time: 1750611988.269730000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000009000 seconds] + [Time delta from previous displayed frame: 0.000009000 seconds] + [Time since reference or first frame: 3.132581000 seconds] + Frame Number: 3893 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073edd5010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3894] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0d00 + wIndex: 257 (0x0101) + wLength: 5 + +No. Time Source Destination Protocol Length Info + 3894 3.132802 1.9.0 host USB 33 URB_CONTROL in + +Frame 3894: 33 bytes on wire (264 bits), 33 bytes captured (264 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.269951000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.269951000 UTC + Epoch Arrival Time: 1750611988.269951000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000221000 seconds] + [Time delta from previous displayed frame: 0.000221000 seconds] + [Time since reference or first frame: 3.132802000 seconds] + Frame Number: 3894 + Frame Length: 33 bytes (264 bits) + Capture Length: 33 bytes (264 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073edd5010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 5 + [Request in: 3893] + [Time from request: 0.000221000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 0000000800 + +No. Time Source Destination Protocol Length Info + 3895 3.132814 host 1.9.0 USB 36 URB_CONTROL out + +Frame 3895: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.269963000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.269963000 UTC + Epoch Arrival Time: 1750611988.269963000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000012000 seconds] + [Time delta from previous displayed frame: 0.000012000 seconds] + [Time since reference or first frame: 3.132814000 seconds] + Frame Number: 3895 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0bc010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3896] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0d04 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3896 3.132875 1.9.0 host USB 28 URB_CONTROL out + +Frame 3896: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.270024000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.270024000 UTC + Epoch Arrival Time: 1750611988.270024000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000061000 seconds] + [Time delta from previous displayed frame: 0.000061000 seconds] + [Time since reference or first frame: 3.132875000 seconds] + Frame Number: 3896 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0bc010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3895] + [Time from request: 0.000061000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 3897 3.132881 host 1.9.0 USB 36 URB_CONTROL out + +Frame 3897: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.270030000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.270030000 UTC + Epoch Arrival Time: 1750611988.270030000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000006000 seconds] + [Time delta from previous displayed frame: 0.000006000 seconds] + [Time since reference or first frame: 3.132881000 seconds] + Frame Number: 3897 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073edd5010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3898] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0e00 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3898 3.132939 1.9.0 host USB 28 URB_CONTROL out + +Frame 3898: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.270088000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.270088000 UTC + Epoch Arrival Time: 1750611988.270088000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000058000 seconds] + [Time delta from previous displayed frame: 0.000058000 seconds] + [Time since reference or first frame: 3.132939000 seconds] + Frame Number: 3898 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073edd5010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3897] + [Time from request: 0.000058000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 3899 3.132945 host 1.9.0 USB 36 URB_CONTROL out + +Frame 3899: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.270094000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.270094000 UTC + Epoch Arrival Time: 1750611988.270094000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000006000 seconds] + [Time delta from previous displayed frame: 0.000006000 seconds] + [Time since reference or first frame: 3.132945000 seconds] + Frame Number: 3899 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073edd5010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3900] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0f00 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3900 3.133001 1.9.0 host USB 28 URB_CONTROL out + +Frame 3900: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.270150000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.270150000 UTC + Epoch Arrival Time: 1750611988.270150000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000056000 seconds] + [Time delta from previous displayed frame: 0.000056000 seconds] + [Time since reference or first frame: 3.133001000 seconds] + Frame Number: 3900 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073edd5010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3899] + [Time from request: 0.000056000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 3901 3.133006 host 1.9.0 USB 36 URB_CONTROL out + +Frame 3901: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.270155000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.270155000 UTC + Epoch Arrival Time: 1750611988.270155000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000005000 seconds] + [Time delta from previous displayed frame: 0.000005000 seconds] + [Time since reference or first frame: 3.133006000 seconds] + Frame Number: 3901 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073edd5010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3902] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x1008 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3902 3.133063 1.9.0 host USB 28 URB_CONTROL out + +Frame 3902: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.270212000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.270212000 UTC + Epoch Arrival Time: 1750611988.270212000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000057000 seconds] + [Time delta from previous displayed frame: 0.000057000 seconds] + [Time since reference or first frame: 3.133063000 seconds] + Frame Number: 3902 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073edd5010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3901] + [Time from request: 0.000057000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 3903 3.133068 host 1.9.0 USB 36 URB_CONTROL out + +Frame 3903: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.270217000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.270217000 UTC + Epoch Arrival Time: 1750611988.270217000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000005000 seconds] + [Time delta from previous displayed frame: 0.000005000 seconds] + [Time since reference or first frame: 3.133068000 seconds] + Frame Number: 3903 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073edd5010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3904] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x110b + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3904 3.133125 1.9.0 host USB 28 URB_CONTROL out + +Frame 3904: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.270274000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.270274000 UTC + Epoch Arrival Time: 1750611988.270274000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000057000 seconds] + [Time delta from previous displayed frame: 0.000057000 seconds] + [Time since reference or first frame: 3.133125000 seconds] + Frame Number: 3904 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073edd5010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3903] + [Time from request: 0.000057000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 3905 3.133167 host 1.9.0 USB 39 URB_CONTROL out + +Frame 3905: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.270316000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.270316000 UTC + Epoch Arrival Time: 1750611988.270316000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000042000 seconds] + [Time delta from previous displayed frame: 0.000042000 seconds] + [Time since reference or first frame: 3.133167000 seconds] + Frame Number: 3905 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073edd5010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 3906] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 885801 + +No. Time Source Destination Protocol Length Info + 3906 3.133284 1.9.0 host USB 28 URB_CONTROL out + +Frame 3906: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.270433000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.270433000 UTC + Epoch Arrival Time: 1750611988.270433000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000117000 seconds] + [Time delta from previous displayed frame: 0.000117000 seconds] + [Time since reference or first frame: 3.133284000 seconds] + Frame Number: 3906 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073edd5010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3905] + [Time from request: 0.000117000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3907 3.133306 host 1.9.0 USB 39 URB_CONTROL out + +Frame 3907: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.270455000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.270455000 UTC + Epoch Arrival Time: 1750611988.270455000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000022000 seconds] + [Time delta from previous displayed frame: 0.000022000 seconds] + [Time since reference or first frame: 3.133306000 seconds] + Frame Number: 3907 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c025560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 3910] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 885801 + +No. Time Source Destination Protocol Length Info + 3910 3.133415 1.9.0 host USB 28 URB_CONTROL out + +Frame 3910: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.270564000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.270564000 UTC + Epoch Arrival Time: 1750611988.270564000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000040000 seconds] + [Time delta from previous displayed frame: 0.000109000 seconds] + [Time since reference or first frame: 3.133415000 seconds] + Frame Number: 3910 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c025560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3907] + [Time from request: 0.000109000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3911 3.133425 host 1.9.0 USB 39 URB_CONTROL out + +Frame 3911: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.270574000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.270574000 UTC + Epoch Arrival Time: 1750611988.270574000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000010000 seconds] + [Time delta from previous displayed frame: 0.000010000 seconds] + [Time since reference or first frame: 3.133425000 seconds] + Frame Number: 3911 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073edd5010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 3912] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 885801 + +No. Time Source Destination Protocol Length Info + 3912 3.133605 1.9.0 host USB 28 URB_CONTROL out + +Frame 3912: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.270754000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.270754000 UTC + Epoch Arrival Time: 1750611988.270754000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000180000 seconds] + [Time delta from previous displayed frame: 0.000180000 seconds] + [Time since reference or first frame: 3.133605000 seconds] + Frame Number: 3912 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073edd5010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3911] + [Time from request: 0.000180000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3913 3.133618 host 1.9.0 USB 36 URB_CONTROL in + +Frame 3913: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.270767000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.270767000 UTC + Epoch Arrival Time: 1750611988.270767000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000013000 seconds] + [Time delta from previous displayed frame: 0.000013000 seconds] + [Time since reference or first frame: 3.133618000 seconds] + Frame Number: 3913 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0bc010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3914] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 3914 3.133805 1.9.0 host USB 31 URB_CONTROL in + +Frame 3914: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.270954000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.270954000 UTC + Epoch Arrival Time: 1750611988.270954000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000187000 seconds] + [Time delta from previous displayed frame: 0.000187000 seconds] + [Time since reference or first frame: 3.133805000 seconds] + Frame Number: 3914 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0bc010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 3913] + [Time from request: 0.000187000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] +CONTROL response data: 885801 + +No. Time Source Destination Protocol Length Info + 3915 3.133817 host 1.9.0 USB 36 URB_CONTROL in + +Frame 3915: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.270966000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.270966000 UTC + Epoch Arrival Time: 1750611988.270966000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000012000 seconds] + [Time delta from previous displayed frame: 0.000012000 seconds] + [Time since reference or first frame: 3.133817000 seconds] + Frame Number: 3915 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0bc010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3916] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 1 + +No. Time Source Destination Protocol Length Info + 3916 3.133981 1.9.0 host USB 29 URB_CONTROL in + +Frame 3916: 29 bytes on wire (232 bits), 29 bytes captured (232 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.271130000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.271130000 UTC + Epoch Arrival Time: 1750611988.271130000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000164000 seconds] + [Time delta from previous displayed frame: 0.000164000 seconds] + [Time since reference or first frame: 3.133981000 seconds] + Frame Number: 3916 + Frame Length: 29 bytes (232 bits) + Capture Length: 29 bytes (232 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0bc010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 1 + [Request in: 3915] + [Time from request: 0.000164000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 30 + +No. Time Source Destination Protocol Length Info + 3917 3.133993 host 1.9.0 USB 36 URB_CONTROL out + +Frame 3917: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.271142000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.271142000 UTC + Epoch Arrival Time: 1750611988.271142000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000012000 seconds] + [Time delta from previous displayed frame: 0.000012000 seconds] + [Time since reference or first frame: 3.133993000 seconds] + Frame Number: 3917 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0bc010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3918] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0030 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3918 3.134229 1.9.0 host USB 28 URB_CONTROL out + +Frame 3918: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:06:28.271378000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:06:28.271378000 UTC + Epoch Arrival Time: 1750611988.271378000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000236000 seconds] + [Time delta from previous displayed frame: 0.000236000 seconds] + [Time since reference or first frame: 3.134229000 seconds] + Frame Number: 3918 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0bc010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3917] + [Time from request: 0.000236000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] diff --git a/reverse_eng_dataset/96000k_playback_sample_rate_change_event_tascam144mk2.txt b/reverse_eng_dataset/96000k_playback_sample_rate_change_event_tascam144mk2.txt new file mode 100644 index 0000000..ec94954 --- /dev/null +++ b/reverse_eng_dataset/96000k_playback_sample_rate_change_event_tascam144mk2.txt @@ -0,0 +1,2846 @@ +No. Time Source Destination Protocol Length Info + 4168 2.215149 host 1.1.0 USB 36 SET CONFIGURATION Request + +Frame 4168: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.487442000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.487442000 UTC + Epoch Arrival Time: 1750610210.487442000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.010523000 seconds] + [Time delta from previous displayed frame: 0.010523000 seconds] + [Time since reference or first frame: 2.215149000 seconds] + Frame Number: 4168 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3127c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4169] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x00 + 0... .... = Direction: Host-to-device + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: SET CONFIGURATION (9) + bConfigurationValue: 0 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 4169 2.215576 1.1.0 host USB 28 SET CONFIGURATION Response + +Frame 4169: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.487869000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.487869000 UTC + Epoch Arrival Time: 1750610210.487869000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000427000 seconds] + [Time delta from previous displayed frame: 0.000427000 seconds] + [Time since reference or first frame: 2.215576000 seconds] + Frame Number: 4169 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3127c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4168] + [Time from request: 0.000427000 seconds] + Control transfer stage: Complete (3) + +No. Time Source Destination Protocol Length Info + 4170 2.215588 host 1.1.0 USB 36 GET DESCRIPTOR Request DEVICE + +Frame 4170: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.487881000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.487881000 UTC + Epoch Arrival Time: 1750610210.487881000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000012000 seconds] + [Time delta from previous displayed frame: 0.000012000 seconds] + [Time since reference or first frame: 2.215588000 seconds] + Frame Number: 4170 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3127c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4171] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: DEVICE (0x01) + Language Id: no language specified (0x0000) + wLength: 18 + +No. Time Source Destination Protocol Length Info + 4171 2.215729 1.1.0 host USB 46 GET DESCRIPTOR Response DEVICE + +Frame 4171: 46 bytes on wire (368 bits), 46 bytes captured (368 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.488022000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.488022000 UTC + Epoch Arrival Time: 1750610210.488022000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000141000 seconds] + [Time delta from previous displayed frame: 0.000141000 seconds] + [Time since reference or first frame: 2.215729000 seconds] + Frame Number: 4171 + Frame Length: 46 bytes (368 bits) + Capture Length: 46 bytes (368 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3127c0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 18 + [Request in: 4170] + [Time from request: 0.000141000 seconds] + Control transfer stage: Complete (3) +DEVICE DESCRIPTOR + bLength: 18 + bDescriptorType: 0x01 (DEVICE) + bcdUSB: 0x0200 + bDeviceClass: Vendor Specific (0xff) + bDeviceSubClass: 255 + bDeviceProtocol: 255 + bMaxPacketSize0: 64 + idVendor: TEAC Corp. (0x0644) + idProduct: Unknown (0x8020) + bcdDevice: 0x0100 + iManufacturer: 1 + iProduct: 2 + iSerialNumber: 3 + bNumConfigurations: 1 + +No. Time Source Destination Protocol Length Info + 4172 2.216977 host 1.1.0 USB 36 URB_CONTROL in + +Frame 4172: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.489270000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.489270000 UTC + Epoch Arrival Time: 1750610210.489270000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001248000 seconds] + [Time delta from previous displayed frame: 0.001248000 seconds] + [Time since reference or first frame: 2.216977000 seconds] + Frame Number: 4172 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4173] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 86 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 15 + +No. Time Source Destination Protocol Length Info + 4173 2.217107 1.1.0 host USB 43 URB_CONTROL in + +Frame 4173: 43 bytes on wire (344 bits), 43 bytes captured (344 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.489400000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.489400000 UTC + Epoch Arrival Time: 1750610210.489400000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000130000 seconds] + [Time delta from previous displayed frame: 0.000130000 seconds] + [Time since reference or first frame: 2.217107000 seconds] + Frame Number: 4173 + Frame Length: 43 bytes (344 bits) + Capture Length: 43 bytes (344 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 15 + [Request in: 4172] + [Time from request: 0.000130000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 31020356322e30332020202000ffff + +No. Time Source Destination Protocol Length Info + 4174 2.217119 host 1.1.0 USB 36 URB_CONTROL in + +Frame 4174: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.489412000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.489412000 UTC + Epoch Arrival Time: 1750610210.489412000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000012000 seconds] + [Time delta from previous displayed frame: 0.000012000 seconds] + [Time since reference or first frame: 2.217119000 seconds] + Frame Number: 4174 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4175] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 86 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 15 + +No. Time Source Destination Protocol Length Info + 4175 2.217301 1.1.0 host USB 43 URB_CONTROL in + +Frame 4175: 43 bytes on wire (344 bits), 43 bytes captured (344 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.489594000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.489594000 UTC + Epoch Arrival Time: 1750610210.489594000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000182000 seconds] + [Time delta from previous displayed frame: 0.000182000 seconds] + [Time since reference or first frame: 2.217301000 seconds] + Frame Number: 4175 + Frame Length: 43 bytes (344 bits) + Capture Length: 43 bytes (344 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 15 + [Request in: 4174] + [Time from request: 0.000182000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 31020356322e30332020202000ffff + +No. Time Source Destination Protocol Length Info + 4176 2.217313 host 1.1.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 4176: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.489606000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.489606000 UTC + Epoch Arrival Time: 1750610210.489606000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000012000 seconds] + [Time delta from previous displayed frame: 0.000012000 seconds] + [Time since reference or first frame: 2.217313000 seconds] + Frame Number: 4176 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: Unknown (0xffffde07) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4177] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x01 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 4177 2.217426 1.1.0 host USB 42 GET DESCRIPTOR Response STRING + +Frame 4177: 42 bytes on wire (336 bits), 42 bytes captured (336 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.489719000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.489719000 UTC + Epoch Arrival Time: 1750610210.489719000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000113000 seconds] + [Time delta from previous displayed frame: 0.000113000 seconds] + [Time since reference or first frame: 2.217426000 seconds] + Frame Number: 4177 + Frame Length: 42 bytes (336 bits) + Capture Length: 42 bytes (336 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 14 + [Request in: 4176] + [Time from request: 0.000113000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 14 + bDescriptorType: 0x03 (STRING) + bString: TASCAM + +No. Time Source Destination Protocol Length Info + 4178 2.217442 host 1.1.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 4178: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.489735000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.489735000 UTC + Epoch Arrival Time: 1750610210.489735000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000016000 seconds] + [Time delta from previous displayed frame: 0.000016000 seconds] + [Time since reference or first frame: 2.217442000 seconds] + Frame Number: 4178 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4179] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x02 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 4179 2.217576 1.1.0 host USB 52 GET DESCRIPTOR Response STRING + +Frame 4179: 52 bytes on wire (416 bits), 52 bytes captured (416 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.489869000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.489869000 UTC + Epoch Arrival Time: 1750610210.489869000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000134000 seconds] + [Time delta from previous displayed frame: 0.000134000 seconds] + [Time since reference or first frame: 2.217576000 seconds] + Frame Number: 4179 + Frame Length: 52 bytes (416 bits) + Capture Length: 52 bytes (416 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 24 + [Request in: 4178] + [Time from request: 0.000134000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 24 + bDescriptorType: 0x03 (STRING) + bString: US-144 MKII + +No. Time Source Destination Protocol Length Info + 4180 2.217588 host 1.1.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 4180: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.489881000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.489881000 UTC + Epoch Arrival Time: 1750610210.489881000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000012000 seconds] + [Time delta from previous displayed frame: 0.000012000 seconds] + [Time since reference or first frame: 2.217588000 seconds] + Frame Number: 4180 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4181] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x03 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 4181 2.217720 1.1.0 host USB 62 GET DESCRIPTOR Response STRING + +Frame 4181: 62 bytes on wire (496 bits), 62 bytes captured (496 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.490013000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.490013000 UTC + Epoch Arrival Time: 1750610210.490013000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000132000 seconds] + [Time delta from previous displayed frame: 0.000132000 seconds] + [Time since reference or first frame: 2.217720000 seconds] + Frame Number: 4181 + Frame Length: 62 bytes (496 bits) + Capture Length: 62 bytes (496 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 34 + [Request in: 4180] + [Time from request: 0.000132000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 34 + bDescriptorType: 0x03 (STRING) + bString: no serial number + +No. Time Source Destination Protocol Length Info + 4182 2.217732 host 1.1.0 USB 36 GET DESCRIPTOR Request CONFIGURATION + +Frame 4182: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.490025000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.490025000 UTC + Epoch Arrival Time: 1750610210.490025000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000012000 seconds] + [Time delta from previous displayed frame: 0.000012000 seconds] + [Time since reference or first frame: 2.217732000 seconds] + Frame Number: 4182 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4183] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: CONFIGURATION (0x02) + Language Id: no language specified (0x0000) + wLength: 1033 + +No. Time Source Destination Protocol Length Info + 4183 2.218015 1.1.0 host USB 108 GET DESCRIPTOR Response CONFIGURATION + +Frame 4183: 108 bytes on wire (864 bits), 108 bytes captured (864 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.490308000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.490308000 UTC + Epoch Arrival Time: 1750610210.490308000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000283000 seconds] + [Time delta from previous displayed frame: 0.000283000 seconds] + [Time since reference or first frame: 2.218015000 seconds] + Frame Number: 4183 + Frame Length: 108 bytes (864 bits) + Capture Length: 108 bytes (864 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 80 + [Request in: 4182] + [Time from request: 0.000283000 seconds] + Control transfer stage: Complete (3) +CONFIGURATION DESCRIPTOR + bLength: 9 + bDescriptorType: 0x02 (CONFIGURATION) + wTotalLength: 80 + bNumInterfaces: 2 + bConfigurationValue: 1 + iConfiguration: 0 + Configuration bmAttributes: 0x80 NOT SELF-POWERED NO REMOTE-WAKEUP + 1... .... = Must be 1: Must be 1 for USB 1.1 and higher + .0.. .... = Self-Powered: This device is powered from the USB bus + ..0. .... = Remote Wakeup: This device does NOT support remote wakeup + bMaxPower: 240 (480mA) +INTERFACE DESCRIPTOR (0.0): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 0 + bAlternateSetting: 0 + bNumEndpoints: 0 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +INTERFACE DESCRIPTOR (0.1): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 0 + bAlternateSetting: 1 + bNumEndpoints: 3 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x02 OUT Endpoint:2 + 0... .... = Direction: OUT Endpoint + .... 0010 = Endpoint Number: 0x2 + bmAttributes: 0x05 + .... ..01 = Transfertype: Isochronous-Transfer (0x1) + .... 01.. = Synchronisationtype: Asynchronous (0x1) + ..00 .... = Behaviourtype: Data-Endpoint (0x0) + wMaxPacketSize: 156 + ...0 0... .... .... = Transactions per microframe: 1 (0) + .... .000 1001 1100 = Maximum Packet Size: 156 + bInterval: 1 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x83 IN Endpoint:3 + 1... .... = Direction: IN Endpoint + .... 0011 = Endpoint Number: 0x3 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 4 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x04 OUT Endpoint:4 + 0... .... = Direction: OUT Endpoint + .... 0100 = Endpoint Number: 0x4 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 4 +INTERFACE DESCRIPTOR (1.0): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 1 + bAlternateSetting: 0 + bNumEndpoints: 0 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +INTERFACE DESCRIPTOR (1.1): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 1 + bAlternateSetting: 1 + bNumEndpoints: 2 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x81 IN Endpoint:1 + 1... .... = Direction: IN Endpoint + .... 0001 = Endpoint Number: 0x1 + bmAttributes: 0x05 + .... ..01 = Transfertype: Isochronous-Transfer (0x1) + .... 01.. = Synchronisationtype: Asynchronous (0x1) + ..00 .... = Behaviourtype: Data-Endpoint (0x0) + wMaxPacketSize: 64 + ...0 0... .... .... = Transactions per microframe: 1 (0) + .... .000 0100 0000 = Maximum Packet Size: 64 + bInterval: 4 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x86 IN Endpoint:6 + 1... .... = Direction: IN Endpoint + .... 0110 = Endpoint Number: 0x6 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 1 + +No. Time Source Destination Protocol Length Info + 4184 2.221312 host 1.1.0 USB 36 GET DESCRIPTOR Request DEVICE + +Frame 4184: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.493605000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.493605000 UTC + Epoch Arrival Time: 1750610210.493605000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.003297000 seconds] + [Time delta from previous displayed frame: 0.003297000 seconds] + [Time since reference or first frame: 2.221312000 seconds] + Frame Number: 4184 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: Unknown (0xffffde07) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4185] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: DEVICE (0x01) + Language Id: no language specified (0x0000) + wLength: 18 + +No. Time Source Destination Protocol Length Info + 4185 2.221461 1.1.0 host USB 46 GET DESCRIPTOR Response DEVICE + +Frame 4185: 46 bytes on wire (368 bits), 46 bytes captured (368 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.493754000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.493754000 UTC + Epoch Arrival Time: 1750610210.493754000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000149000 seconds] + [Time delta from previous displayed frame: 0.000149000 seconds] + [Time since reference or first frame: 2.221461000 seconds] + Frame Number: 4185 + Frame Length: 46 bytes (368 bits) + Capture Length: 46 bytes (368 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 18 + [Request in: 4184] + [Time from request: 0.000149000 seconds] + Control transfer stage: Complete (3) +DEVICE DESCRIPTOR + bLength: 18 + bDescriptorType: 0x01 (DEVICE) + bcdUSB: 0x0200 + bDeviceClass: Vendor Specific (0xff) + bDeviceSubClass: 255 + bDeviceProtocol: 255 + bMaxPacketSize0: 64 + idVendor: TEAC Corp. (0x0644) + idProduct: Unknown (0x8020) + bcdDevice: 0x0100 + iManufacturer: 1 + iProduct: 2 + iSerialNumber: 3 + bNumConfigurations: 1 + +No. Time Source Destination Protocol Length Info + 4186 2.221474 host 1.1.0 USB 36 SET CONFIGURATION Request + +Frame 4186: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.493767000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.493767000 UTC + Epoch Arrival Time: 1750610210.493767000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000013000 seconds] + [Time delta from previous displayed frame: 0.000013000 seconds] + [Time since reference or first frame: 2.221474000 seconds] + Frame Number: 4186 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4287] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x00 + 0... .... = Direction: Host-to-device + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: SET CONFIGURATION (9) + bConfigurationValue: 1 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 4287 2.431796 1.1.0 host USB 28 SET CONFIGURATION Response + +Frame 4287: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.704089000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.704089000 UTC + Epoch Arrival Time: 1750610210.704089000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001095000 seconds] + [Time delta from previous displayed frame: 0.210322000 seconds] + [Time since reference or first frame: 2.431796000 seconds] + Frame Number: 4287 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4186] + [Time from request: 0.210322000 seconds] + Control transfer stage: Complete (3) + +No. Time Source Destination Protocol Length Info + 4320 2.481365 host 1.1.0 USB 36 URB_CONTROL in + +Frame 4320: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.753658000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.753658000 UTC + Epoch Arrival Time: 1750610210.753658000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000664000 seconds] + [Time delta from previous displayed frame: 0.049569000 seconds] + [Time since reference or first frame: 2.481365000 seconds] + Frame Number: 4320 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3f4010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4321] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 1 + +No. Time Source Destination Protocol Length Info + 4321 2.481608 1.1.0 host USB 29 URB_CONTROL in + +Frame 4321: 29 bytes on wire (232 bits), 29 bytes captured (232 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.753901000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.753901000 UTC + Epoch Arrival Time: 1750610210.753901000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000243000 seconds] + [Time delta from previous displayed frame: 0.000243000 seconds] + [Time since reference or first frame: 2.481608000 seconds] + Frame Number: 4321 + Frame Length: 29 bytes (232 bits) + Capture Length: 29 bytes (232 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3f4010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 1 + [Request in: 4320] + [Time from request: 0.000243000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 30 + +No. Time Source Destination Protocol Length Info + 4322 2.481639 host 1.1.0 USB 36 URB_CONTROL in + +Frame 4322: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.753932000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.753932000 UTC + Epoch Arrival Time: 1750610210.753932000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000031000 seconds] + [Time delta from previous displayed frame: 0.000031000 seconds] + [Time since reference or first frame: 2.481639000 seconds] + Frame Number: 4322 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3f4010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4323] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 0 (0x0000) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 4323 2.481808 1.1.0 host USB 31 URB_CONTROL in + +Frame 4323: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.754101000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.754101000 UTC + Epoch Arrival Time: 1750610210.754101000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000169000 seconds] + [Time delta from previous displayed frame: 0.000169000 seconds] + [Time since reference or first frame: 2.481808000 seconds] + Frame Number: 4323 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3f4010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 4322] + [Time from request: 0.000169000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 885801 + +No. Time Source Destination Protocol Length Info + 4324 2.481834 host 1.1.0 USB 39 URB_CONTROL out + +Frame 4324: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.754127000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.754127000 UTC + Epoch Arrival Time: 1750610210.754127000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000026000 seconds] + [Time delta from previous displayed frame: 0.000026000 seconds] + [Time since reference or first frame: 2.481834000 seconds] + Frame Number: 4324 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3f4010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 4325] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 007701 + +No. Time Source Destination Protocol Length Info + 4325 2.481966 1.1.0 host USB 28 URB_CONTROL out + +Frame 4325: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.754259000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.754259000 UTC + Epoch Arrival Time: 1750610210.754259000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000132000 seconds] + [Time delta from previous displayed frame: 0.000132000 seconds] + [Time since reference or first frame: 2.481966000 seconds] + Frame Number: 4325 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3f4010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4324] + [Time from request: 0.000132000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 4326 2.481989 host 1.1.0 USB 39 URB_CONTROL out + +Frame 4326: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.754282000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.754282000 UTC + Epoch Arrival Time: 1750610210.754282000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000023000 seconds] + [Time delta from previous displayed frame: 0.000023000 seconds] + [Time since reference or first frame: 2.481989000 seconds] + Frame Number: 4326 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3f4010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 4327] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 007701 + +No. Time Source Destination Protocol Length Info + 4327 2.482182 1.1.0 host USB 28 URB_CONTROL out + +Frame 4327: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.754475000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.754475000 UTC + Epoch Arrival Time: 1750610210.754475000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000193000 seconds] + [Time delta from previous displayed frame: 0.000193000 seconds] + [Time since reference or first frame: 2.482182000 seconds] + Frame Number: 4327 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3f4010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4326] + [Time from request: 0.000193000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 4330 2.487246 host 1.1.0 USB 39 URB_CONTROL out + +Frame 4330: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.759539000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.759539000 UTC + Epoch Arrival Time: 1750610210.759539000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000577000 seconds] + [Time delta from previous displayed frame: 0.005064000 seconds] + [Time since reference or first frame: 2.487246000 seconds] + Frame Number: 4330 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0737827010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 4331] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 007701 + +No. Time Source Destination Protocol Length Info + 4331 2.487388 1.1.0 host USB 28 URB_CONTROL out + +Frame 4331: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.759681000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.759681000 UTC + Epoch Arrival Time: 1750610210.759681000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000142000 seconds] + [Time delta from previous displayed frame: 0.000142000 seconds] + [Time since reference or first frame: 2.487388000 seconds] + Frame Number: 4331 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0737827010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4330] + [Time from request: 0.000142000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 4332 2.487418 host 1.1.0 USB 39 URB_CONTROL out + +Frame 4332: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.759711000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.759711000 UTC + Epoch Arrival Time: 1750610210.759711000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000030000 seconds] + [Time delta from previous displayed frame: 0.000030000 seconds] + [Time since reference or first frame: 2.487418000 seconds] + Frame Number: 4332 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a54ea70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 4333] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 007701 + +No. Time Source Destination Protocol Length Info + 4333 2.487603 1.1.0 host USB 28 URB_CONTROL out + +Frame 4333: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.759896000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.759896000 UTC + Epoch Arrival Time: 1750610210.759896000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000185000 seconds] + [Time delta from previous displayed frame: 0.000185000 seconds] + [Time since reference or first frame: 2.487603000 seconds] + Frame Number: 4333 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073a54ea70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4332] + [Time from request: 0.000185000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 4334 2.487625 host 1.1.0 USB 36 URB_CONTROL in + +Frame 4334: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.759918000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.759918000 UTC + Epoch Arrival Time: 1750610210.759918000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000022000 seconds] + [Time delta from previous displayed frame: 0.000022000 seconds] + [Time since reference or first frame: 2.487625000 seconds] + Frame Number: 4334 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4335] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0d00 + wIndex: 257 (0x0101) + wLength: 5 + +No. Time Source Destination Protocol Length Info + 4335 2.487826 1.1.0 host USB 33 URB_CONTROL in + +Frame 4335: 33 bytes on wire (264 bits), 33 bytes captured (264 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.760119000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.760119000 UTC + Epoch Arrival Time: 1750610210.760119000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000201000 seconds] + [Time delta from previous displayed frame: 0.000201000 seconds] + [Time since reference or first frame: 2.487826000 seconds] + Frame Number: 4335 + Frame Length: 33 bytes (264 bits) + Capture Length: 33 bytes (264 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 5 + [Request in: 4334] + [Time from request: 0.000201000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 0000000a00 + +No. Time Source Destination Protocol Length Info + 4336 2.487843 host 1.1.0 USB 36 URB_CONTROL out + +Frame 4336: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.760136000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.760136000 UTC + Epoch Arrival Time: 1750610210.760136000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000017000 seconds] + [Time delta from previous displayed frame: 0.000017000 seconds] + [Time since reference or first frame: 2.487843000 seconds] + Frame Number: 4336 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4337] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0d04 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 4337 2.487907 1.1.0 host USB 28 URB_CONTROL out + +Frame 4337: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.760200000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.760200000 UTC + Epoch Arrival Time: 1750610210.760200000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000064000 seconds] + [Time delta from previous displayed frame: 0.000064000 seconds] + [Time since reference or first frame: 2.487907000 seconds] + Frame Number: 4337 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4336] + [Time from request: 0.000064000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 4338 2.487910 host 1.1.0 USB 36 URB_CONTROL out + +Frame 4338: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.760203000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.760203000 UTC + Epoch Arrival Time: 1750610210.760203000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000003000 seconds] + [Time delta from previous displayed frame: 0.000003000 seconds] + [Time since reference or first frame: 2.487910000 seconds] + Frame Number: 4338 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4339] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0e00 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 4339 2.487969 1.1.0 host USB 28 URB_CONTROL out + +Frame 4339: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.760262000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.760262000 UTC + Epoch Arrival Time: 1750610210.760262000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000059000 seconds] + [Time delta from previous displayed frame: 0.000059000 seconds] + [Time since reference or first frame: 2.487969000 seconds] + Frame Number: 4339 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4338] + [Time from request: 0.000059000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 4340 2.487973 host 1.1.0 USB 36 URB_CONTROL out + +Frame 4340: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.760266000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.760266000 UTC + Epoch Arrival Time: 1750610210.760266000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000004000 seconds] + [Time delta from previous displayed frame: 0.000004000 seconds] + [Time since reference or first frame: 2.487973000 seconds] + Frame Number: 4340 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4341] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0f00 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 4341 2.488031 1.1.0 host USB 28 URB_CONTROL out + +Frame 4341: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.760324000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.760324000 UTC + Epoch Arrival Time: 1750610210.760324000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000058000 seconds] + [Time delta from previous displayed frame: 0.000058000 seconds] + [Time since reference or first frame: 2.488031000 seconds] + Frame Number: 4341 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4340] + [Time from request: 0.000058000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 4342 2.488041 host 1.1.0 USB 36 URB_CONTROL out + +Frame 4342: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.760334000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.760334000 UTC + Epoch Arrival Time: 1750610210.760334000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000010000 seconds] + [Time delta from previous displayed frame: 0.000010000 seconds] + [Time since reference or first frame: 2.488041000 seconds] + Frame Number: 4342 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3f4010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4343] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x100a + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 4343 2.488113 1.1.0 host USB 28 URB_CONTROL out + +Frame 4343: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.760406000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.760406000 UTC + Epoch Arrival Time: 1750610210.760406000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000072000 seconds] + [Time delta from previous displayed frame: 0.000072000 seconds] + [Time since reference or first frame: 2.488113000 seconds] + Frame Number: 4343 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3f4010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4342] + [Time from request: 0.000072000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 4344 2.488122 host 1.1.0 USB 36 URB_CONTROL out + +Frame 4344: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.760415000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.760415000 UTC + Epoch Arrival Time: 1750610210.760415000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000009000 seconds] + [Time delta from previous displayed frame: 0.000009000 seconds] + [Time since reference or first frame: 2.488122000 seconds] + Frame Number: 4344 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3f4010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4345] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x110b + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 4345 2.488251 1.1.0 host USB 28 URB_CONTROL out + +Frame 4345: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.760544000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.760544000 UTC + Epoch Arrival Time: 1750610210.760544000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000129000 seconds] + [Time delta from previous displayed frame: 0.000129000 seconds] + [Time since reference or first frame: 2.488251000 seconds] + Frame Number: 4345 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3f4010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4344] + [Time from request: 0.000129000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 4346 2.488305 host 1.1.0 USB 39 URB_CONTROL out + +Frame 4346: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.760598000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.760598000 UTC + Epoch Arrival Time: 1750610210.760598000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000054000 seconds] + [Time delta from previous displayed frame: 0.000054000 seconds] + [Time since reference or first frame: 2.488305000 seconds] + Frame Number: 4346 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3f4010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 4347] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 007701 + +No. Time Source Destination Protocol Length Info + 4347 2.488422 1.1.0 host USB 28 URB_CONTROL out + +Frame 4347: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.760715000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.760715000 UTC + Epoch Arrival Time: 1750610210.760715000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000117000 seconds] + [Time delta from previous displayed frame: 0.000117000 seconds] + [Time since reference or first frame: 2.488422000 seconds] + Frame Number: 4347 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e3f4010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4346] + [Time from request: 0.000117000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 4348 2.488430 host 1.1.0 USB 39 URB_CONTROL out + +Frame 4348: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.760723000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.760723000 UTC + Epoch Arrival Time: 1750610210.760723000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000008000 seconds] + [Time delta from previous displayed frame: 0.000008000 seconds] + [Time since reference or first frame: 2.488430000 seconds] + Frame Number: 4348 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0737827010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 4349] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 007701 + +No. Time Source Destination Protocol Length Info + 4349 2.488587 1.1.0 host USB 28 URB_CONTROL out + +Frame 4349: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.760880000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.760880000 UTC + Epoch Arrival Time: 1750610210.760880000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000157000 seconds] + [Time delta from previous displayed frame: 0.000157000 seconds] + [Time since reference or first frame: 2.488587000 seconds] + Frame Number: 4349 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0737827010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4348] + [Time from request: 0.000157000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 4350 2.488614 host 1.1.0 USB 39 URB_CONTROL out + +Frame 4350: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.760907000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.760907000 UTC + Epoch Arrival Time: 1750610210.760907000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000027000 seconds] + [Time delta from previous displayed frame: 0.000027000 seconds] + [Time since reference or first frame: 2.488614000 seconds] + Frame Number: 4350 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 4353] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 007701 + +No. Time Source Destination Protocol Length Info + 4353 2.488745 1.1.0 host USB 28 URB_CONTROL out + +Frame 4353: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.761038000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.761038000 UTC + Epoch Arrival Time: 1750610210.761038000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000092000 seconds] + [Time delta from previous displayed frame: 0.000131000 seconds] + [Time since reference or first frame: 2.488745000 seconds] + Frame Number: 4353 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4350] + [Time from request: 0.000131000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 4354 2.488752 host 1.1.0 USB 36 URB_CONTROL in + +Frame 4354: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.761045000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.761045000 UTC + Epoch Arrival Time: 1750610210.761045000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000007000 seconds] + [Time delta from previous displayed frame: 0.000007000 seconds] + [Time since reference or first frame: 2.488752000 seconds] + Frame Number: 4354 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0737827010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4355] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 4355 2.488950 1.1.0 host USB 31 URB_CONTROL in + +Frame 4355: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.761243000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.761243000 UTC + Epoch Arrival Time: 1750610210.761243000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000198000 seconds] + [Time delta from previous displayed frame: 0.000198000 seconds] + [Time since reference or first frame: 2.488950000 seconds] + Frame Number: 4355 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde0737827010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 4354] + [Time from request: 0.000198000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] +CONTROL response data: 007701 + +No. Time Source Destination Protocol Length Info + 4356 2.488965 host 1.1.0 USB 36 URB_CONTROL in + +Frame 4356: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.761258000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.761258000 UTC + Epoch Arrival Time: 1750610210.761258000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000015000 seconds] + [Time delta from previous displayed frame: 0.000015000 seconds] + [Time since reference or first frame: 2.488965000 seconds] + Frame Number: 4356 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4357] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 1 + +No. Time Source Destination Protocol Length Info + 4357 2.489124 1.1.0 host USB 29 URB_CONTROL in + +Frame 4357: 29 bytes on wire (232 bits), 29 bytes captured (232 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.761417000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.761417000 UTC + Epoch Arrival Time: 1750610210.761417000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000159000 seconds] + [Time delta from previous displayed frame: 0.000159000 seconds] + [Time since reference or first frame: 2.489124000 seconds] + Frame Number: 4357 + Frame Length: 29 bytes (232 bits) + Capture Length: 29 bytes (232 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 1 + [Request in: 4356] + [Time from request: 0.000159000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 30 + +No. Time Source Destination Protocol Length Info + 4358 2.489138 host 1.1.0 USB 36 URB_CONTROL out + +Frame 4358: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.761431000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.761431000 UTC + Epoch Arrival Time: 1750610210.761431000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000014000 seconds] + [Time delta from previous displayed frame: 0.000014000 seconds] + [Time since reference or first frame: 2.489138000 seconds] + Frame Number: 4358 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.1.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 4359] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0030 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 4359 2.489376 1.1.0 host USB 28 URB_CONTROL out + +Frame 4359: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:36:50.761669000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:36:50.761669000 UTC + Epoch Arrival Time: 1750610210.761669000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000238000 seconds] + [Time delta from previous displayed frame: 0.000238000 seconds] + [Time since reference or first frame: 2.489376000 seconds] + Frame Number: 4359 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.1.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e6bd8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 1 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 4358] + [Time from request: 0.000238000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] diff --git a/reverse_eng_dataset/96000k_recording_sample_rate_change_event_tascam144mk2.txt b/reverse_eng_dataset/96000k_recording_sample_rate_change_event_tascam144mk2.txt new file mode 100644 index 0000000..7c87561 --- /dev/null +++ b/reverse_eng_dataset/96000k_recording_sample_rate_change_event_tascam144mk2.txt @@ -0,0 +1,2846 @@ +No. Time Source Destination Protocol Length Info + 2785 2.347817 host 1.9.0 USB 36 SET CONFIGURATION Request + +Frame 2785: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.286825000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.286825000 UTC + Epoch Arrival Time: 1750611916.286825000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.011362000 seconds] + [Time delta from previous displayed frame: 0.011362000 seconds] + [Time since reference or first frame: 2.347817000 seconds] + Frame Number: 2785 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0ee010 + IRP USBD_STATUS: Unknown (0x32357b22) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2786] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x00 + 0... .... = Direction: Host-to-device + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: SET CONFIGURATION (9) + bConfigurationValue: 0 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 2786 2.348229 1.9.0 host USB 28 SET CONFIGURATION Response + +Frame 2786: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.287237000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.287237000 UTC + Epoch Arrival Time: 1750611916.287237000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000412000 seconds] + [Time delta from previous displayed frame: 0.000412000 seconds] + [Time since reference or first frame: 2.348229000 seconds] + Frame Number: 2786 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0ee010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2785] + [Time from request: 0.000412000 seconds] + Control transfer stage: Complete (3) + +No. Time Source Destination Protocol Length Info + 2787 2.348251 host 1.9.0 USB 36 GET DESCRIPTOR Request DEVICE + +Frame 2787: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.287259000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.287259000 UTC + Epoch Arrival Time: 1750611916.287259000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000022000 seconds] + [Time delta from previous displayed frame: 0.000022000 seconds] + [Time since reference or first frame: 2.348251000 seconds] + Frame Number: 2787 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ebeeab0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2788] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: DEVICE (0x01) + Language Id: no language specified (0x0000) + wLength: 18 + +No. Time Source Destination Protocol Length Info + 2788 2.348419 1.9.0 host USB 46 GET DESCRIPTOR Response DEVICE + +Frame 2788: 46 bytes on wire (368 bits), 46 bytes captured (368 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.287427000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.287427000 UTC + Epoch Arrival Time: 1750611916.287427000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000168000 seconds] + [Time delta from previous displayed frame: 0.000168000 seconds] + [Time since reference or first frame: 2.348419000 seconds] + Frame Number: 2788 + Frame Length: 46 bytes (368 bits) + Capture Length: 46 bytes (368 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ebeeab0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 18 + [Request in: 2787] + [Time from request: 0.000168000 seconds] + Control transfer stage: Complete (3) +DEVICE DESCRIPTOR + bLength: 18 + bDescriptorType: 0x01 (DEVICE) + bcdUSB: 0x0200 + bDeviceClass: Vendor Specific (0xff) + bDeviceSubClass: 255 + bDeviceProtocol: 255 + bMaxPacketSize0: 64 + idVendor: TEAC Corp. (0x0644) + idProduct: Unknown (0x8020) + bcdDevice: 0x0100 + iManufacturer: 1 + iProduct: 2 + iSerialNumber: 3 + bNumConfigurations: 1 + +No. Time Source Destination Protocol Length Info + 2789 2.349824 host 1.9.0 USB 36 URB_CONTROL in + +Frame 2789: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.288832000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.288832000 UTC + Epoch Arrival Time: 1750611916.288832000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001405000 seconds] + [Time delta from previous displayed frame: 0.001405000 seconds] + [Time since reference or first frame: 2.349824000 seconds] + Frame Number: 2789 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e925560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2790] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 86 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 15 + +No. Time Source Destination Protocol Length Info + 2790 2.349941 1.9.0 host USB 43 URB_CONTROL in + +Frame 2790: 43 bytes on wire (344 bits), 43 bytes captured (344 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.288949000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.288949000 UTC + Epoch Arrival Time: 1750611916.288949000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000117000 seconds] + [Time delta from previous displayed frame: 0.000117000 seconds] + [Time since reference or first frame: 2.349941000 seconds] + Frame Number: 2790 + Frame Length: 43 bytes (344 bits) + Capture Length: 43 bytes (344 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e925560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 15 + [Request in: 2789] + [Time from request: 0.000117000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 31020356322e30332020202000ffff + +No. Time Source Destination Protocol Length Info + 2791 2.349944 host 1.9.0 USB 36 URB_CONTROL in + +Frame 2791: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.288952000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.288952000 UTC + Epoch Arrival Time: 1750611916.288952000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000003000 seconds] + [Time delta from previous displayed frame: 0.000003000 seconds] + [Time since reference or first frame: 2.349944000 seconds] + Frame Number: 2791 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e925560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2792] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 86 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 15 + +No. Time Source Destination Protocol Length Info + 2792 2.350105 1.9.0 host USB 43 URB_CONTROL in + +Frame 2792: 43 bytes on wire (344 bits), 43 bytes captured (344 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.289113000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.289113000 UTC + Epoch Arrival Time: 1750611916.289113000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000161000 seconds] + [Time delta from previous displayed frame: 0.000161000 seconds] + [Time since reference or first frame: 2.350105000 seconds] + Frame Number: 2792 + Frame Length: 43 bytes (344 bits) + Capture Length: 43 bytes (344 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e925560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 15 + [Request in: 2791] + [Time from request: 0.000161000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 31020356322e30332020202000ffff + +No. Time Source Destination Protocol Length Info + 2793 2.350108 host 1.9.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 2793: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.289116000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.289116000 UTC + Epoch Arrival Time: 1750611916.289116000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000003000 seconds] + [Time delta from previous displayed frame: 0.000003000 seconds] + [Time since reference or first frame: 2.350108000 seconds] + Frame Number: 2793 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e925560 + IRP USBD_STATUS: Unknown (0xffffde07) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2794] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x01 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 2794 2.350217 1.9.0 host USB 42 GET DESCRIPTOR Response STRING + +Frame 2794: 42 bytes on wire (336 bits), 42 bytes captured (336 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.289225000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.289225000 UTC + Epoch Arrival Time: 1750611916.289225000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000109000 seconds] + [Time delta from previous displayed frame: 0.000109000 seconds] + [Time since reference or first frame: 2.350217000 seconds] + Frame Number: 2794 + Frame Length: 42 bytes (336 bits) + Capture Length: 42 bytes (336 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e925560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 14 + [Request in: 2793] + [Time from request: 0.000109000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 14 + bDescriptorType: 0x03 (STRING) + bString: TASCAM + +No. Time Source Destination Protocol Length Info + 2795 2.350221 host 1.9.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 2795: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.289229000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.289229000 UTC + Epoch Arrival Time: 1750611916.289229000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000004000 seconds] + [Time delta from previous displayed frame: 0.000004000 seconds] + [Time since reference or first frame: 2.350221000 seconds] + Frame Number: 2795 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e925560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2796] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x02 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 2796 2.350355 1.9.0 host USB 52 GET DESCRIPTOR Response STRING + +Frame 2796: 52 bytes on wire (416 bits), 52 bytes captured (416 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.289363000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.289363000 UTC + Epoch Arrival Time: 1750611916.289363000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000134000 seconds] + [Time delta from previous displayed frame: 0.000134000 seconds] + [Time since reference or first frame: 2.350355000 seconds] + Frame Number: 2796 + Frame Length: 52 bytes (416 bits) + Capture Length: 52 bytes (416 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e925560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 24 + [Request in: 2795] + [Time from request: 0.000134000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 24 + bDescriptorType: 0x03 (STRING) + bString: US-144 MKII + +No. Time Source Destination Protocol Length Info + 2797 2.350358 host 1.9.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 2797: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.289366000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.289366000 UTC + Epoch Arrival Time: 1750611916.289366000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000003000 seconds] + [Time delta from previous displayed frame: 0.000003000 seconds] + [Time since reference or first frame: 2.350358000 seconds] + Frame Number: 2797 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e925560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2798] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x03 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 2798 2.350488 1.9.0 host USB 62 GET DESCRIPTOR Response STRING + +Frame 2798: 62 bytes on wire (496 bits), 62 bytes captured (496 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.289496000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.289496000 UTC + Epoch Arrival Time: 1750611916.289496000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000130000 seconds] + [Time delta from previous displayed frame: 0.000130000 seconds] + [Time since reference or first frame: 2.350488000 seconds] + Frame Number: 2798 + Frame Length: 62 bytes (496 bits) + Capture Length: 62 bytes (496 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e925560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 34 + [Request in: 2797] + [Time from request: 0.000130000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 34 + bDescriptorType: 0x03 (STRING) + bString: no serial number + +No. Time Source Destination Protocol Length Info + 2799 2.350491 host 1.9.0 USB 36 GET DESCRIPTOR Request CONFIGURATION + +Frame 2799: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.289499000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.289499000 UTC + Epoch Arrival Time: 1750611916.289499000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000003000 seconds] + [Time delta from previous displayed frame: 0.000003000 seconds] + [Time since reference or first frame: 2.350491000 seconds] + Frame Number: 2799 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e925560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2800] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: CONFIGURATION (0x02) + Language Id: no language specified (0x0000) + wLength: 1033 + +No. Time Source Destination Protocol Length Info + 2800 2.350754 1.9.0 host USB 108 GET DESCRIPTOR Response CONFIGURATION + +Frame 2800: 108 bytes on wire (864 bits), 108 bytes captured (864 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.289762000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.289762000 UTC + Epoch Arrival Time: 1750611916.289762000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000263000 seconds] + [Time delta from previous displayed frame: 0.000263000 seconds] + [Time since reference or first frame: 2.350754000 seconds] + Frame Number: 2800 + Frame Length: 108 bytes (864 bits) + Capture Length: 108 bytes (864 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e925560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 80 + [Request in: 2799] + [Time from request: 0.000263000 seconds] + Control transfer stage: Complete (3) +CONFIGURATION DESCRIPTOR + bLength: 9 + bDescriptorType: 0x02 (CONFIGURATION) + wTotalLength: 80 + bNumInterfaces: 2 + bConfigurationValue: 1 + iConfiguration: 0 + Configuration bmAttributes: 0x80 NOT SELF-POWERED NO REMOTE-WAKEUP + 1... .... = Must be 1: Must be 1 for USB 1.1 and higher + .0.. .... = Self-Powered: This device is powered from the USB bus + ..0. .... = Remote Wakeup: This device does NOT support remote wakeup + bMaxPower: 240 (480mA) +INTERFACE DESCRIPTOR (0.0): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 0 + bAlternateSetting: 0 + bNumEndpoints: 0 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +INTERFACE DESCRIPTOR (0.1): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 0 + bAlternateSetting: 1 + bNumEndpoints: 3 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x02 OUT Endpoint:2 + 0... .... = Direction: OUT Endpoint + .... 0010 = Endpoint Number: 0x2 + bmAttributes: 0x05 + .... ..01 = Transfertype: Isochronous-Transfer (0x1) + .... 01.. = Synchronisationtype: Asynchronous (0x1) + ..00 .... = Behaviourtype: Data-Endpoint (0x0) + wMaxPacketSize: 156 + ...0 0... .... .... = Transactions per microframe: 1 (0) + .... .000 1001 1100 = Maximum Packet Size: 156 + bInterval: 1 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x83 IN Endpoint:3 + 1... .... = Direction: IN Endpoint + .... 0011 = Endpoint Number: 0x3 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 4 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x04 OUT Endpoint:4 + 0... .... = Direction: OUT Endpoint + .... 0100 = Endpoint Number: 0x4 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 4 +INTERFACE DESCRIPTOR (1.0): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 1 + bAlternateSetting: 0 + bNumEndpoints: 0 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +INTERFACE DESCRIPTOR (1.1): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 1 + bAlternateSetting: 1 + bNumEndpoints: 2 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x81 IN Endpoint:1 + 1... .... = Direction: IN Endpoint + .... 0001 = Endpoint Number: 0x1 + bmAttributes: 0x05 + .... ..01 = Transfertype: Isochronous-Transfer (0x1) + .... 01.. = Synchronisationtype: Asynchronous (0x1) + ..00 .... = Behaviourtype: Data-Endpoint (0x0) + wMaxPacketSize: 64 + ...0 0... .... .... = Transactions per microframe: 1 (0) + .... .000 0100 0000 = Maximum Packet Size: 64 + bInterval: 4 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x86 IN Endpoint:6 + 1... .... = Direction: IN Endpoint + .... 0110 = Endpoint Number: 0x6 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 1 + +No. Time Source Destination Protocol Length Info + 2801 2.353709 host 1.9.0 USB 36 GET DESCRIPTOR Request DEVICE + +Frame 2801: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.292717000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.292717000 UTC + Epoch Arrival Time: 1750611916.292717000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.002955000 seconds] + [Time delta from previous displayed frame: 0.002955000 seconds] + [Time since reference or first frame: 2.353709000 seconds] + Frame Number: 2801 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c014560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2802] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: DEVICE (0x01) + Language Id: no language specified (0x0000) + wLength: 18 + +No. Time Source Destination Protocol Length Info + 2802 2.353801 1.9.0 host USB 46 GET DESCRIPTOR Response DEVICE + +Frame 2802: 46 bytes on wire (368 bits), 46 bytes captured (368 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.292809000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.292809000 UTC + Epoch Arrival Time: 1750611916.292809000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000092000 seconds] + [Time delta from previous displayed frame: 0.000092000 seconds] + [Time since reference or first frame: 2.353801000 seconds] + Frame Number: 2802 + Frame Length: 46 bytes (368 bits) + Capture Length: 46 bytes (368 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c014560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 18 + [Request in: 2801] + [Time from request: 0.000092000 seconds] + Control transfer stage: Complete (3) +DEVICE DESCRIPTOR + bLength: 18 + bDescriptorType: 0x01 (DEVICE) + bcdUSB: 0x0200 + bDeviceClass: Vendor Specific (0xff) + bDeviceSubClass: 255 + bDeviceProtocol: 255 + bMaxPacketSize0: 64 + idVendor: TEAC Corp. (0x0644) + idProduct: Unknown (0x8020) + bcdDevice: 0x0100 + iManufacturer: 1 + iProduct: 2 + iSerialNumber: 3 + bNumConfigurations: 1 + +No. Time Source Destination Protocol Length Info + 2803 2.353809 host 1.9.0 USB 36 SET CONFIGURATION Request + +Frame 2803: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.292817000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.292817000 UTC + Epoch Arrival Time: 1750611916.292817000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000008000 seconds] + [Time delta from previous displayed frame: 0.000008000 seconds] + [Time since reference or first frame: 2.353809000 seconds] + Frame Number: 2803 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ebeeab0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2886] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x00 + 0... .... = Direction: Host-to-device + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: SET CONFIGURATION (9) + bConfigurationValue: 1 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 2886 2.564122 1.9.0 host USB 28 SET CONFIGURATION Response + +Frame 2886: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.503130000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.503130000 UTC + Epoch Arrival Time: 1750611916.503130000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000641000 seconds] + [Time delta from previous displayed frame: 0.210313000 seconds] + [Time since reference or first frame: 2.564122000 seconds] + Frame Number: 2886 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ebeeab0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2803] + [Time from request: 0.210313000 seconds] + Control transfer stage: Complete (3) + +No. Time Source Destination Protocol Length Info + 2937 2.614131 host 1.9.0 USB 36 URB_CONTROL in + +Frame 2937: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.553139000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.553139000 UTC + Epoch Arrival Time: 1750611916.553139000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000618000 seconds] + [Time delta from previous displayed frame: 0.050009000 seconds] + [Time since reference or first frame: 2.614131000 seconds] + Frame Number: 2937 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c00c010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2938] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 1 + +No. Time Source Destination Protocol Length Info + 2938 2.614373 1.9.0 host USB 29 URB_CONTROL in + +Frame 2938: 29 bytes on wire (232 bits), 29 bytes captured (232 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.553381000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.553381000 UTC + Epoch Arrival Time: 1750611916.553381000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000242000 seconds] + [Time delta from previous displayed frame: 0.000242000 seconds] + [Time since reference or first frame: 2.614373000 seconds] + Frame Number: 2938 + Frame Length: 29 bytes (232 bits) + Capture Length: 29 bytes (232 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c00c010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 1 + [Request in: 2937] + [Time from request: 0.000242000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 30 + +No. Time Source Destination Protocol Length Info + 2939 2.614408 host 1.9.0 USB 36 URB_CONTROL in + +Frame 2939: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.553416000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.553416000 UTC + Epoch Arrival Time: 1750611916.553416000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000035000 seconds] + [Time delta from previous displayed frame: 0.000035000 seconds] + [Time since reference or first frame: 2.614408000 seconds] + Frame Number: 2939 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c00c010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2940] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 0 (0x0000) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 2940 2.614594 1.9.0 host USB 31 URB_CONTROL in + +Frame 2940: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.553602000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.553602000 UTC + Epoch Arrival Time: 1750611916.553602000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000186000 seconds] + [Time delta from previous displayed frame: 0.000186000 seconds] + [Time since reference or first frame: 2.614594000 seconds] + Frame Number: 2940 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c00c010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 2939] + [Time from request: 0.000186000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 885801 + +No. Time Source Destination Protocol Length Info + 2941 2.614657 host 1.9.0 USB 39 URB_CONTROL out + +Frame 2941: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.553665000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.553665000 UTC + Epoch Arrival Time: 1750611916.553665000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000063000 seconds] + [Time delta from previous displayed frame: 0.000063000 seconds] + [Time since reference or first frame: 2.614657000 seconds] + Frame Number: 2941 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c00c010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 2942] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 007701 + +No. Time Source Destination Protocol Length Info + 2942 2.614793 1.9.0 host USB 28 URB_CONTROL out + +Frame 2942: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.553801000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.553801000 UTC + Epoch Arrival Time: 1750611916.553801000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000136000 seconds] + [Time delta from previous displayed frame: 0.000136000 seconds] + [Time since reference or first frame: 2.614793000 seconds] + Frame Number: 2942 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c00c010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2941] + [Time from request: 0.000136000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 2943 2.614845 host 1.9.0 USB 39 URB_CONTROL out + +Frame 2943: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.553853000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.553853000 UTC + Epoch Arrival Time: 1750611916.553853000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000052000 seconds] + [Time delta from previous displayed frame: 0.000052000 seconds] + [Time since reference or first frame: 2.614845000 seconds] + Frame Number: 2943 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ef7aa20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 2944] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 007701 + +No. Time Source Destination Protocol Length Info + 2944 2.615046 1.9.0 host USB 28 URB_CONTROL out + +Frame 2944: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.554054000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.554054000 UTC + Epoch Arrival Time: 1750611916.554054000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000201000 seconds] + [Time delta from previous displayed frame: 0.000201000 seconds] + [Time since reference or first frame: 2.615046000 seconds] + Frame Number: 2944 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ef7aa20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2943] + [Time from request: 0.000201000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 2949 2.618842 host 1.9.0 USB 39 URB_CONTROL out + +Frame 2949: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.557850000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.557850000 UTC + Epoch Arrival Time: 1750611916.557850000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001382000 seconds] + [Time delta from previous displayed frame: 0.003796000 seconds] + [Time since reference or first frame: 2.618842000 seconds] + Frame Number: 2949 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ef7aa20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 2950] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 007701 + +No. Time Source Destination Protocol Length Info + 2950 2.618996 1.9.0 host USB 28 URB_CONTROL out + +Frame 2950: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.558004000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.558004000 UTC + Epoch Arrival Time: 1750611916.558004000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000154000 seconds] + [Time delta from previous displayed frame: 0.000154000 seconds] + [Time since reference or first frame: 2.618996000 seconds] + Frame Number: 2950 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ef7aa20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2949] + [Time from request: 0.000154000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 2951 2.619011 host 1.9.0 USB 39 URB_CONTROL out + +Frame 2951: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.558019000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.558019000 UTC + Epoch Arrival Time: 1750611916.558019000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000015000 seconds] + [Time delta from previous displayed frame: 0.000015000 seconds] + [Time since reference or first frame: 2.619011000 seconds] + Frame Number: 2951 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e270010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 2952] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 007701 + +No. Time Source Destination Protocol Length Info + 2952 2.619127 1.9.0 host USB 28 URB_CONTROL out + +Frame 2952: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.558135000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.558135000 UTC + Epoch Arrival Time: 1750611916.558135000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000116000 seconds] + [Time delta from previous displayed frame: 0.000116000 seconds] + [Time since reference or first frame: 2.619127000 seconds] + Frame Number: 2952 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e270010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2951] + [Time from request: 0.000116000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 2953 2.619131 host 1.9.0 USB 36 URB_CONTROL in + +Frame 2953: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.558139000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.558139000 UTC + Epoch Arrival Time: 1750611916.558139000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000004000 seconds] + [Time delta from previous displayed frame: 0.000004000 seconds] + [Time since reference or first frame: 2.619131000 seconds] + Frame Number: 2953 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e270010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2954] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0d00 + wIndex: 257 (0x0101) + wLength: 5 + +No. Time Source Destination Protocol Length Info + 2954 2.619366 1.9.0 host USB 33 URB_CONTROL in + +Frame 2954: 33 bytes on wire (264 bits), 33 bytes captured (264 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.558374000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.558374000 UTC + Epoch Arrival Time: 1750611916.558374000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000235000 seconds] + [Time delta from previous displayed frame: 0.000235000 seconds] + [Time since reference or first frame: 2.619366000 seconds] + Frame Number: 2954 + Frame Length: 33 bytes (264 bits) + Capture Length: 33 bytes (264 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e270010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 5 + [Request in: 2953] + [Time from request: 0.000235000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 0000000a00 + +No. Time Source Destination Protocol Length Info + 2955 2.619379 host 1.9.0 USB 36 URB_CONTROL out + +Frame 2955: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.558387000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.558387000 UTC + Epoch Arrival Time: 1750611916.558387000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000013000 seconds] + [Time delta from previous displayed frame: 0.000013000 seconds] + [Time since reference or first frame: 2.619379000 seconds] + Frame Number: 2955 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e270010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2956] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0d04 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 2956 2.619439 1.9.0 host USB 28 URB_CONTROL out + +Frame 2956: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.558447000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.558447000 UTC + Epoch Arrival Time: 1750611916.558447000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000060000 seconds] + [Time delta from previous displayed frame: 0.000060000 seconds] + [Time since reference or first frame: 2.619439000 seconds] + Frame Number: 2956 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e270010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2955] + [Time from request: 0.000060000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 2958 2.619447 host 1.9.0 USB 36 URB_CONTROL out + +Frame 2958: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.558455000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.558455000 UTC + Epoch Arrival Time: 1750611916.558455000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000004000 seconds] + [Time delta from previous displayed frame: 0.000008000 seconds] + [Time since reference or first frame: 2.619447000 seconds] + Frame Number: 2958 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ef7aa20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2960] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0e00 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 2960 2.619513 1.9.0 host USB 28 URB_CONTROL out + +Frame 2960: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.558521000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.558521000 UTC + Epoch Arrival Time: 1750611916.558521000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000064000 seconds] + [Time delta from previous displayed frame: 0.000066000 seconds] + [Time since reference or first frame: 2.619513000 seconds] + Frame Number: 2960 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ef7aa20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2958] + [Time from request: 0.000066000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 2961 2.619519 host 1.9.0 USB 36 URB_CONTROL out + +Frame 2961: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.558527000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.558527000 UTC + Epoch Arrival Time: 1750611916.558527000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000006000 seconds] + [Time delta from previous displayed frame: 0.000006000 seconds] + [Time since reference or first frame: 2.619519000 seconds] + Frame Number: 2961 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ef7aa20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2962] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0f00 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 2962 2.619577 1.9.0 host USB 28 URB_CONTROL out + +Frame 2962: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.558585000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.558585000 UTC + Epoch Arrival Time: 1750611916.558585000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000058000 seconds] + [Time delta from previous displayed frame: 0.000058000 seconds] + [Time since reference or first frame: 2.619577000 seconds] + Frame Number: 2962 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ef7aa20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2961] + [Time from request: 0.000058000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 2963 2.619583 host 1.9.0 USB 36 URB_CONTROL out + +Frame 2963: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.558591000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.558591000 UTC + Epoch Arrival Time: 1750611916.558591000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000006000 seconds] + [Time delta from previous displayed frame: 0.000006000 seconds] + [Time since reference or first frame: 2.619583000 seconds] + Frame Number: 2963 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ef7aa20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2964] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x100a + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 2964 2.619640 1.9.0 host USB 28 URB_CONTROL out + +Frame 2964: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.558648000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.558648000 UTC + Epoch Arrival Time: 1750611916.558648000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000057000 seconds] + [Time delta from previous displayed frame: 0.000057000 seconds] + [Time since reference or first frame: 2.619640000 seconds] + Frame Number: 2964 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ef7aa20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2963] + [Time from request: 0.000057000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 2965 2.619648 host 1.9.0 USB 36 URB_CONTROL out + +Frame 2965: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.558656000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.558656000 UTC + Epoch Arrival Time: 1750611916.558656000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000008000 seconds] + [Time delta from previous displayed frame: 0.000008000 seconds] + [Time since reference or first frame: 2.619648000 seconds] + Frame Number: 2965 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0eb010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2966] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x110b + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 2966 2.619723 1.9.0 host USB 28 URB_CONTROL out + +Frame 2966: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.558731000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.558731000 UTC + Epoch Arrival Time: 1750611916.558731000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000075000 seconds] + [Time delta from previous displayed frame: 0.000075000 seconds] + [Time since reference or first frame: 2.619723000 seconds] + Frame Number: 2966 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0eb010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2965] + [Time from request: 0.000075000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 2967 2.619757 host 1.9.0 USB 39 URB_CONTROL out + +Frame 2967: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.558765000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.558765000 UTC + Epoch Arrival Time: 1750611916.558765000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000034000 seconds] + [Time delta from previous displayed frame: 0.000034000 seconds] + [Time since reference or first frame: 2.619757000 seconds] + Frame Number: 2967 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0eb010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 2968] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 007701 + +No. Time Source Destination Protocol Length Info + 2968 2.619877 1.9.0 host USB 28 URB_CONTROL out + +Frame 2968: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.558885000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.558885000 UTC + Epoch Arrival Time: 1750611916.558885000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000120000 seconds] + [Time delta from previous displayed frame: 0.000120000 seconds] + [Time since reference or first frame: 2.619877000 seconds] + Frame Number: 2968 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073c0eb010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2967] + [Time from request: 0.000120000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 2969 2.619897 host 1.9.0 USB 39 URB_CONTROL out + +Frame 2969: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.558905000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.558905000 UTC + Epoch Arrival Time: 1750611916.558905000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000020000 seconds] + [Time delta from previous displayed frame: 0.000020000 seconds] + [Time since reference or first frame: 2.619897000 seconds] + Frame Number: 2969 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ef7aa20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 2970] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 007701 + +No. Time Source Destination Protocol Length Info + 2970 2.620037 1.9.0 host USB 28 URB_CONTROL out + +Frame 2970: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.559045000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.559045000 UTC + Epoch Arrival Time: 1750611916.559045000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000140000 seconds] + [Time delta from previous displayed frame: 0.000140000 seconds] + [Time since reference or first frame: 2.620037000 seconds] + Frame Number: 2970 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ef7aa20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2969] + [Time from request: 0.000140000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 2971 2.620058 host 1.9.0 USB 39 URB_CONTROL out + +Frame 2971: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.559066000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.559066000 UTC + Epoch Arrival Time: 1750611916.559066000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000021000 seconds] + [Time delta from previous displayed frame: 0.000021000 seconds] + [Time since reference or first frame: 2.620058000 seconds] + Frame Number: 2971 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ef7aa20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 2972] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 007701 + +No. Time Source Destination Protocol Length Info + 2972 2.620201 1.9.0 host USB 28 URB_CONTROL out + +Frame 2972: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.559209000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.559209000 UTC + Epoch Arrival Time: 1750611916.559209000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000143000 seconds] + [Time delta from previous displayed frame: 0.000143000 seconds] + [Time since reference or first frame: 2.620201000 seconds] + Frame Number: 2972 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ef7aa20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2971] + [Time from request: 0.000143000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 2973 2.620218 host 1.9.0 USB 36 URB_CONTROL in + +Frame 2973: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.559226000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.559226000 UTC + Epoch Arrival Time: 1750611916.559226000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000017000 seconds] + [Time delta from previous displayed frame: 0.000017000 seconds] + [Time since reference or first frame: 2.620218000 seconds] + Frame Number: 2973 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ef7aa20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2974] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 2974 2.620443 1.9.0 host USB 31 URB_CONTROL in + +Frame 2974: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.559451000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.559451000 UTC + Epoch Arrival Time: 1750611916.559451000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000225000 seconds] + [Time delta from previous displayed frame: 0.000225000 seconds] + [Time since reference or first frame: 2.620443000 seconds] + Frame Number: 2974 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073ef7aa20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 2973] + [Time from request: 0.000225000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] +CONTROL response data: 007701 + +No. Time Source Destination Protocol Length Info + 2975 2.620462 host 1.9.0 USB 36 URB_CONTROL in + +Frame 2975: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.559470000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.559470000 UTC + Epoch Arrival Time: 1750611916.559470000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000019000 seconds] + [Time delta from previous displayed frame: 0.000019000 seconds] + [Time since reference or first frame: 2.620462000 seconds] + Frame Number: 2975 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e270010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2976] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 1 + +No. Time Source Destination Protocol Length Info + 2976 2.620616 1.9.0 host USB 29 URB_CONTROL in + +Frame 2976: 29 bytes on wire (232 bits), 29 bytes captured (232 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.559624000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.559624000 UTC + Epoch Arrival Time: 1750611916.559624000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000154000 seconds] + [Time delta from previous displayed frame: 0.000154000 seconds] + [Time since reference or first frame: 2.620616000 seconds] + Frame Number: 2976 + Frame Length: 29 bytes (232 bits) + Capture Length: 29 bytes (232 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e270010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 1 + [Request in: 2975] + [Time from request: 0.000154000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 30 + +No. Time Source Destination Protocol Length Info + 2977 2.620627 host 1.9.0 USB 36 URB_CONTROL out + +Frame 2977: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.559635000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.559635000 UTC + Epoch Arrival Time: 1750611916.559635000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000011000 seconds] + [Time delta from previous displayed frame: 0.000011000 seconds] + [Time since reference or first frame: 2.620627000 seconds] + Frame Number: 2977 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.9.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e270010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 2978] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0030 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 2978 2.620853 1.9.0 host USB 28 URB_CONTROL out + +Frame 2978: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 19:05:16.559861000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 17:05:16.559861000 UTC + Epoch Arrival Time: 1750611916.559861000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000226000 seconds] + [Time delta from previous displayed frame: 0.000226000 seconds] + [Time since reference or first frame: 2.620853000 seconds] + Frame Number: 2978 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.9.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffde073e270010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 9 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 2977] + [Time from request: 0.000226000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] diff --git a/reverse_eng_dataset/init_config_tascam144mk2.txt b/reverse_eng_dataset/init_config_tascam144mk2.txt new file mode 100644 index 0000000..2d87028 --- /dev/null +++ b/reverse_eng_dataset/init_config_tascam144mk2.txt @@ -0,0 +1,2126 @@ +No. Time Source Destination Protocol Length Info + 179 2.061083 host 1.6.0 USB 36 URB_CONTROL in + +Frame 179: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.769392000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.769392000 UTC + Epoch Arrival Time: 1750608950.769392000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.223524000 seconds] + [Time delta from previous displayed frame: 0.223524000 seconds] + [Time since reference or first frame: 2.061083000 seconds] + Frame Number: 179 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.6.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80cacbec5e0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 6 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 180] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 1 + +No. Time Source Destination Protocol Length Info + 180 2.061402 1.6.0 host USB 29 URB_CONTROL in + +Frame 180: 29 bytes on wire (232 bits), 29 bytes captured (232 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.769711000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.769711000 UTC + Epoch Arrival Time: 1750608950.769711000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000319000 seconds] + [Time delta from previous displayed frame: 0.000319000 seconds] + [Time since reference or first frame: 2.061402000 seconds] + Frame Number: 180 + Frame Length: 29 bytes (232 bits) + Capture Length: 29 bytes (232 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.6.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80cacbec5e0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 6 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 1 + [Request in: 179] + [Time from request: 0.000319000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 12 + +No. Time Source Destination Protocol Length Info + 181 2.061540 host 1.6.0 USB 36 URB_CONTROL out + +Frame 181: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.769849000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.769849000 UTC + Epoch Arrival Time: 1750608950.769849000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000138000 seconds] + [Time delta from previous displayed frame: 0.000138000 seconds] + [Time since reference or first frame: 2.061540000 seconds] + Frame Number: 181 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.6.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80cac0714b0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 6 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 182] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0010 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 182 2.061803 1.6.0 host USB 28 URB_CONTROL out + +Frame 182: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.770112000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.770112000 UTC + Epoch Arrival Time: 1750608950.770112000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000263000 seconds] + [Time delta from previous displayed frame: 0.000263000 seconds] + [Time since reference or first frame: 2.061803000 seconds] + Frame Number: 182 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.6.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80cac0714b0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 6 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 181] + [Time from request: 0.000263000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 183 2.108878 host 1.6.0 USB 36 URB_CONTROL in + +Frame 183: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.817187000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.817187000 UTC + Epoch Arrival Time: 1750608950.817187000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.047075000 seconds] + [Time delta from previous displayed frame: 0.047075000 seconds] + [Time since reference or first frame: 2.108878000 seconds] + Frame Number: 183 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.6.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80cac0714b0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 6 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 184] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 0 (0x0000) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 184 2.109143 1.6.0 host USB 31 URB_CONTROL in + +Frame 184: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.817452000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.817452000 UTC + Epoch Arrival Time: 1750608950.817452000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000265000 seconds] + [Time delta from previous displayed frame: 0.000265000 seconds] + [Time since reference or first frame: 2.109143000 seconds] + Frame Number: 184 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.6.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80cac0714b0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 6 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 183] + [Time from request: 0.000265000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 44ac00 + +No. Time Source Destination Protocol Length Info + 185 2.109255 host 1.6.0 USB 36 URB_CONTROL in + +Frame 185: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.817564000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.817564000 UTC + Epoch Arrival Time: 1750608950.817564000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000112000 seconds] + [Time delta from previous displayed frame: 0.000112000 seconds] + [Time since reference or first frame: 2.109255000 seconds] + Frame Number: 185 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.6.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80cac1dea70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 6 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 186] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 1 + +No. Time Source Destination Protocol Length Info + 186 2.109487 1.6.0 host USB 29 URB_CONTROL in + +Frame 186: 29 bytes on wire (232 bits), 29 bytes captured (232 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.817796000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.817796000 UTC + Epoch Arrival Time: 1750608950.817796000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000232000 seconds] + [Time delta from previous displayed frame: 0.000232000 seconds] + [Time since reference or first frame: 2.109487000 seconds] + Frame Number: 186 + Frame Length: 29 bytes (232 bits) + Capture Length: 29 bytes (232 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.6.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80cac1dea70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 6 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 1 + [Request in: 185] + [Time from request: 0.000232000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 10 + +No. Time Source Destination Protocol Length Info + 187 2.109527 host 1.6.0 USB 36 URB_CONTROL in + +Frame 187: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.817836000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.817836000 UTC + Epoch Arrival Time: 1750608950.817836000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000040000 seconds] + [Time delta from previous displayed frame: 0.000040000 seconds] + [Time since reference or first frame: 2.109527000 seconds] + Frame Number: 187 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.6.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80cac0714b0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 6 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 188] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 0 (0x0000) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 188 2.109721 1.6.0 host USB 31 URB_CONTROL in + +Frame 188: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.818030000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.818030000 UTC + Epoch Arrival Time: 1750608950.818030000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000194000 seconds] + [Time delta from previous displayed frame: 0.000194000 seconds] + [Time since reference or first frame: 2.109721000 seconds] + Frame Number: 188 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.6.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80cac0714b0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 6 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 187] + [Time from request: 0.000194000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 44ac00 + +No. Time Source Destination Protocol Length Info + 189 2.109747 host 1.6.0 USB 36 URB_CONTROL in + +Frame 189: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.818056000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.818056000 UTC + Epoch Arrival Time: 1750608950.818056000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000026000 seconds] + [Time delta from previous displayed frame: 0.000026000 seconds] + [Time since reference or first frame: 2.109747000 seconds] + Frame Number: 189 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.6.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80cac0714b0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 6 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 190] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 0 (0x0000) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 190 2.109889 1.6.0 host USB 31 URB_CONTROL in + +Frame 190: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.818198000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.818198000 UTC + Epoch Arrival Time: 1750608950.818198000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000142000 seconds] + [Time delta from previous displayed frame: 0.000142000 seconds] + [Time since reference or first frame: 2.109889000 seconds] + Frame Number: 190 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.6.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80cac0714b0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 6 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 189] + [Time from request: 0.000142000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 44ac00 + +No. Time Source Destination Protocol Length Info + 191 2.109911 host 1.6.0 USB 39 URB_CONTROL out + +Frame 191: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.818220000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.818220000 UTC + Epoch Arrival Time: 1750608950.818220000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000022000 seconds] + [Time delta from previous displayed frame: 0.000022000 seconds] + [Time since reference or first frame: 2.109911000 seconds] + Frame Number: 191 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.6.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80caf6ad560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 6 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 192] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 192 2.110065 1.6.0 host USB 28 URB_CONTROL out + +Frame 192: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.818374000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.818374000 UTC + Epoch Arrival Time: 1750608950.818374000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000154000 seconds] + [Time delta from previous displayed frame: 0.000154000 seconds] + [Time since reference or first frame: 2.110065000 seconds] + Frame Number: 192 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.6.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80caf6ad560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 6 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 191] + [Time from request: 0.000154000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 193 2.110081 host 1.6.0 USB 39 URB_CONTROL out + +Frame 193: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.818390000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.818390000 UTC + Epoch Arrival Time: 1750608950.818390000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000016000 seconds] + [Time delta from previous displayed frame: 0.000016000 seconds] + [Time since reference or first frame: 2.110081000 seconds] + Frame Number: 193 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.6.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80caf6ad560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 6 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 194] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 194 2.110237 1.6.0 host USB 28 URB_CONTROL out + +Frame 194: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.818546000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.818546000 UTC + Epoch Arrival Time: 1750608950.818546000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000156000 seconds] + [Time delta from previous displayed frame: 0.000156000 seconds] + [Time since reference or first frame: 2.110237000 seconds] + Frame Number: 194 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.6.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80caf6ad560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 6 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 193] + [Time from request: 0.000156000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 195 2.144249 host 1.6.0 USB 39 URB_CONTROL out + +Frame 195: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.852558000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.852558000 UTC + Epoch Arrival Time: 1750608950.852558000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.034012000 seconds] + [Time delta from previous displayed frame: 0.034012000 seconds] + [Time since reference or first frame: 2.144249000 seconds] + Frame Number: 195 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.6.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80caf44da20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 6 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 196] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 196 2.144404 1.6.0 host USB 28 URB_CONTROL out + +Frame 196: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.852713000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.852713000 UTC + Epoch Arrival Time: 1750608950.852713000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000155000 seconds] + [Time delta from previous displayed frame: 0.000155000 seconds] + [Time since reference or first frame: 2.144404000 seconds] + Frame Number: 196 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.6.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80caf44da20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 6 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 195] + [Time from request: 0.000155000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 197 2.144428 host 1.6.0 USB 39 URB_CONTROL out + +Frame 197: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.852737000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.852737000 UTC + Epoch Arrival Time: 1750608950.852737000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000024000 seconds] + [Time delta from previous displayed frame: 0.000024000 seconds] + [Time since reference or first frame: 2.144428000 seconds] + Frame Number: 197 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.6.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80caf44da20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 6 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 198] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 198 2.144585 1.6.0 host USB 28 URB_CONTROL out + +Frame 198: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.852894000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.852894000 UTC + Epoch Arrival Time: 1750608950.852894000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000157000 seconds] + [Time delta from previous displayed frame: 0.000157000 seconds] + [Time since reference or first frame: 2.144585000 seconds] + Frame Number: 198 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.6.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80caf44da20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 6 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 197] + [Time from request: 0.000157000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 199 2.144606 host 1.6.0 USB 36 URB_CONTROL in + +Frame 199: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.852915000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.852915000 UTC + Epoch Arrival Time: 1750608950.852915000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000021000 seconds] + [Time delta from previous displayed frame: 0.000021000 seconds] + [Time since reference or first frame: 2.144606000 seconds] + Frame Number: 199 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.6.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80caf52e010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 6 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 200] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0d00 + wIndex: 257 (0x0101) + wLength: 5 + +No. Time Source Destination Protocol Length Info + 200 2.144888 1.6.0 host USB 33 URB_CONTROL in + +Frame 200: 33 bytes on wire (264 bits), 33 bytes captured (264 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.853197000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.853197000 UTC + Epoch Arrival Time: 1750608950.853197000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000282000 seconds] + [Time delta from previous displayed frame: 0.000282000 seconds] + [Time since reference or first frame: 2.144888000 seconds] + Frame Number: 200 + Frame Length: 33 bytes (264 bits) + Capture Length: 33 bytes (264 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.6.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80caf52e010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 6 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 5 + [Request in: 199] + [Time from request: 0.000282000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 0492000200 + +No. Time Source Destination Protocol Length Info + 201 2.144914 host 1.6.0 USB 36 URB_CONTROL out + +Frame 201: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.853223000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.853223000 UTC + Epoch Arrival Time: 1750608950.853223000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000026000 seconds] + [Time delta from previous displayed frame: 0.000026000 seconds] + [Time since reference or first frame: 2.144914000 seconds] + Frame Number: 201 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.6.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80caf52e010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 6 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 202] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0d04 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 202 2.144980 1.6.0 host USB 28 URB_CONTROL out + +Frame 202: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.853289000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.853289000 UTC + Epoch Arrival Time: 1750608950.853289000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000066000 seconds] + [Time delta from previous displayed frame: 0.000066000 seconds] + [Time since reference or first frame: 2.144980000 seconds] + Frame Number: 202 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.6.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80caf52e010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 6 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 201] + [Time from request: 0.000066000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 203 2.144987 host 1.6.0 USB 36 URB_CONTROL out + +Frame 203: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.853296000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.853296000 UTC + Epoch Arrival Time: 1750608950.853296000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000007000 seconds] + [Time delta from previous displayed frame: 0.000007000 seconds] + [Time since reference or first frame: 2.144987000 seconds] + Frame Number: 203 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.6.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80caf52e010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 6 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 204] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0e00 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 204 2.145056 1.6.0 host USB 28 URB_CONTROL out + +Frame 204: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.853365000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.853365000 UTC + Epoch Arrival Time: 1750608950.853365000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000069000 seconds] + [Time delta from previous displayed frame: 0.000069000 seconds] + [Time since reference or first frame: 2.145056000 seconds] + Frame Number: 204 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.6.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80caf52e010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 6 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 203] + [Time from request: 0.000069000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 205 2.145062 host 1.6.0 USB 36 URB_CONTROL out + +Frame 205: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.853371000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.853371000 UTC + Epoch Arrival Time: 1750608950.853371000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000006000 seconds] + [Time delta from previous displayed frame: 0.000006000 seconds] + [Time since reference or first frame: 2.145062000 seconds] + Frame Number: 205 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.6.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80caf52e010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 6 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 206] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0f00 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 206 2.145121 1.6.0 host USB 28 URB_CONTROL out + +Frame 206: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.853430000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.853430000 UTC + Epoch Arrival Time: 1750608950.853430000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000059000 seconds] + [Time delta from previous displayed frame: 0.000059000 seconds] + [Time since reference or first frame: 2.145121000 seconds] + Frame Number: 206 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.6.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80caf52e010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 6 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 205] + [Time from request: 0.000059000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 207 2.145131 host 1.6.0 USB 36 URB_CONTROL out + +Frame 207: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.853440000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.853440000 UTC + Epoch Arrival Time: 1750608950.853440000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000010000 seconds] + [Time delta from previous displayed frame: 0.000010000 seconds] + [Time since reference or first frame: 2.145131000 seconds] + Frame Number: 207 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.6.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80cac911010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 6 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 208] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x1002 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 208 2.145285 1.6.0 host USB 28 URB_CONTROL out + +Frame 208: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.853594000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.853594000 UTC + Epoch Arrival Time: 1750608950.853594000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000154000 seconds] + [Time delta from previous displayed frame: 0.000154000 seconds] + [Time since reference or first frame: 2.145285000 seconds] + Frame Number: 208 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.6.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80cac911010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 6 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 207] + [Time from request: 0.000154000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 209 2.145290 host 1.6.0 USB 36 URB_CONTROL out + +Frame 209: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.853599000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.853599000 UTC + Epoch Arrival Time: 1750608950.853599000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000005000 seconds] + [Time delta from previous displayed frame: 0.000005000 seconds] + [Time since reference or first frame: 2.145290000 seconds] + Frame Number: 209 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.6.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80caf52e010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 6 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 210] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x110b + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 210 2.145350 1.6.0 host USB 28 URB_CONTROL out + +Frame 210: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.853659000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.853659000 UTC + Epoch Arrival Time: 1750608950.853659000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000060000 seconds] + [Time delta from previous displayed frame: 0.000060000 seconds] + [Time since reference or first frame: 2.145350000 seconds] + Frame Number: 210 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.6.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80caf52e010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 6 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 209] + [Time from request: 0.000060000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 211 2.145402 host 1.6.0 USB 39 URB_CONTROL out + +Frame 211: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.853711000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.853711000 UTC + Epoch Arrival Time: 1750608950.853711000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000052000 seconds] + [Time delta from previous displayed frame: 0.000052000 seconds] + [Time since reference or first frame: 2.145402000 seconds] + Frame Number: 211 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.6.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80caf52e010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 6 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 212] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 212 2.145585 1.6.0 host USB 28 URB_CONTROL out + +Frame 212: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.853894000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.853894000 UTC + Epoch Arrival Time: 1750608950.853894000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000183000 seconds] + [Time delta from previous displayed frame: 0.000183000 seconds] + [Time since reference or first frame: 2.145585000 seconds] + Frame Number: 212 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.6.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80caf52e010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 6 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 211] + [Time from request: 0.000183000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 213 2.145604 host 1.6.0 USB 39 URB_CONTROL out + +Frame 213: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.853913000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.853913000 UTC + Epoch Arrival Time: 1750608950.853913000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000019000 seconds] + [Time delta from previous displayed frame: 0.000019000 seconds] + [Time since reference or first frame: 2.145604000 seconds] + Frame Number: 213 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.6.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80cac11e010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 6 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 214] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 214 2.145719 1.6.0 host USB 28 URB_CONTROL out + +Frame 214: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.854028000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.854028000 UTC + Epoch Arrival Time: 1750608950.854028000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000115000 seconds] + [Time delta from previous displayed frame: 0.000115000 seconds] + [Time since reference or first frame: 2.145719000 seconds] + Frame Number: 214 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.6.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80cac11e010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 6 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 213] + [Time from request: 0.000115000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 215 2.145727 host 1.6.0 USB 39 URB_CONTROL out + +Frame 215: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.854036000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.854036000 UTC + Epoch Arrival Time: 1750608950.854036000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000008000 seconds] + [Time delta from previous displayed frame: 0.000008000 seconds] + [Time since reference or first frame: 2.145727000 seconds] + Frame Number: 215 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.6.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80caf52e010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 6 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 216] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 216 2.145873 1.6.0 host USB 28 URB_CONTROL out + +Frame 216: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.854182000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.854182000 UTC + Epoch Arrival Time: 1750608950.854182000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000146000 seconds] + [Time delta from previous displayed frame: 0.000146000 seconds] + [Time since reference or first frame: 2.145873000 seconds] + Frame Number: 216 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.6.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80caf52e010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 6 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 215] + [Time from request: 0.000146000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 217 2.145952 host 1.6.0 USB 36 URB_CONTROL in + +Frame 217: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.854261000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.854261000 UTC + Epoch Arrival Time: 1750608950.854261000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000079000 seconds] + [Time delta from previous displayed frame: 0.000079000 seconds] + [Time since reference or first frame: 2.145952000 seconds] + Frame Number: 217 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.6.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80cac11e010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 6 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 218] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 218 2.146118 1.6.0 host USB 31 URB_CONTROL in + +Frame 218: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.854427000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.854427000 UTC + Epoch Arrival Time: 1750608950.854427000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000166000 seconds] + [Time delta from previous displayed frame: 0.000166000 seconds] + [Time since reference or first frame: 2.146118000 seconds] + Frame Number: 218 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.6.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80cac11e010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 6 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 217] + [Time from request: 0.000166000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] +CONTROL response data: 80bb00 + +No. Time Source Destination Protocol Length Info + 219 2.146135 host 1.6.0 USB 36 URB_CONTROL in + +Frame 219: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.854444000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.854444000 UTC + Epoch Arrival Time: 1750608950.854444000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000017000 seconds] + [Time delta from previous displayed frame: 0.000017000 seconds] + [Time since reference or first frame: 2.146135000 seconds] + Frame Number: 219 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.6.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80cac11e010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 6 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 220] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 1 + +No. Time Source Destination Protocol Length Info + 220 2.146306 1.6.0 host USB 29 URB_CONTROL in + +Frame 220: 29 bytes on wire (232 bits), 29 bytes captured (232 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.854615000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.854615000 UTC + Epoch Arrival Time: 1750608950.854615000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000171000 seconds] + [Time delta from previous displayed frame: 0.000171000 seconds] + [Time since reference or first frame: 2.146306000 seconds] + Frame Number: 220 + Frame Length: 29 bytes (232 bits) + Capture Length: 29 bytes (232 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.6.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80cac11e010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 6 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 1 + [Request in: 219] + [Time from request: 0.000171000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 10 + +No. Time Source Destination Protocol Length Info + 221 2.146322 host 1.6.0 USB 36 URB_CONTROL out + +Frame 221: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.854631000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.854631000 UTC + Epoch Arrival Time: 1750608950.854631000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000016000 seconds] + [Time delta from previous displayed frame: 0.000016000 seconds] + [Time since reference or first frame: 2.146322000 seconds] + Frame Number: 221 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.6.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80caf44da20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 6 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 222] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0030 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 222 2.146558 1.6.0 host USB 28 URB_CONTROL out + +Frame 222: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 22, 2025 18:15:50.854867000 Central Europe Daylight Time + UTC Arrival Time: Jun 22, 2025 16:15:50.854867000 UTC + Epoch Arrival Time: 1750608950.854867000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000236000 seconds] + [Time delta from previous displayed frame: 0.000236000 seconds] + [Time since reference or first frame: 2.146558000 seconds] + Frame Number: 222 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.6.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffd80caf44da20 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 6 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 221] + [Time from request: 0.000236000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] diff --git a/reverse_eng_dataset/recording_tab_windows_event.txt b/reverse_eng_dataset/recording_tab_windows_event.txt new file mode 100644 index 0000000..3b77b57 --- /dev/null +++ b/reverse_eng_dataset/recording_tab_windows_event.txt @@ -0,0 +1,3112 @@ +No. Time Source Destination Protocol Length Info + 3041 2.177559 host 1.3.0 USB 36 SET CONFIGURATION Request + +Frame 3041: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.240894000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.240894000 UTC + Epoch Arrival Time: 1750665675.240894000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.007621000 seconds] + [Time delta from previous displayed frame: 0.007621000 seconds] + [Time since reference or first frame: 2.177559000 seconds] + Frame Number: 3041 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b7495560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3042] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x00 + 0... .... = Direction: Host-to-device + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: SET CONFIGURATION (9) + bConfigurationValue: 0 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3042 2.177964 1.3.0 host USB 28 SET CONFIGURATION Response + +Frame 3042: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.241299000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.241299000 UTC + Epoch Arrival Time: 1750665675.241299000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000405000 seconds] + [Time delta from previous displayed frame: 0.000405000 seconds] + [Time since reference or first frame: 2.177964000 seconds] + Frame Number: 3042 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.3.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b7495560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 3 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3041] + [Time from request: 0.000405000 seconds] + Control transfer stage: Complete (3) + +No. Time Source Destination Protocol Length Info + 3043 2.177981 host 1.3.0 USB 36 GET DESCRIPTOR Request DEVICE + +Frame 3043: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.241316000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.241316000 UTC + Epoch Arrival Time: 1750665675.241316000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000017000 seconds] + [Time delta from previous displayed frame: 0.000017000 seconds] + [Time since reference or first frame: 2.177981000 seconds] + Frame Number: 3043 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b7495560 + IRP USBD_STATUS: Unknown (0x00310c08) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3044] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: DEVICE (0x01) + Language Id: no language specified (0x0000) + wLength: 18 + +No. Time Source Destination Protocol Length Info + 3044 2.178122 1.3.0 host USB 46 GET DESCRIPTOR Response DEVICE + +Frame 3044: 46 bytes on wire (368 bits), 46 bytes captured (368 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.241457000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.241457000 UTC + Epoch Arrival Time: 1750665675.241457000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000141000 seconds] + [Time delta from previous displayed frame: 0.000141000 seconds] + [Time since reference or first frame: 2.178122000 seconds] + Frame Number: 3044 + Frame Length: 46 bytes (368 bits) + Capture Length: 46 bytes (368 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.3.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b7495560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 3 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 18 + [Request in: 3043] + [Time from request: 0.000141000 seconds] + Control transfer stage: Complete (3) +DEVICE DESCRIPTOR + bLength: 18 + bDescriptorType: 0x01 (DEVICE) + bcdUSB: 0x0200 + bDeviceClass: Vendor Specific (0xff) + bDeviceSubClass: 255 + bDeviceProtocol: 255 + bMaxPacketSize0: 64 + idVendor: TEAC Corp. (0x0644) + idProduct: Unknown (0x8020) + bcdDevice: 0x0100 + iManufacturer: 1 + iProduct: 2 + iSerialNumber: 3 + bNumConfigurations: 1 + +No. Time Source Destination Protocol Length Info + 3045 2.179402 host 1.3.0 USB 36 URB_CONTROL in + +Frame 3045: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.242737000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.242737000 UTC + Epoch Arrival Time: 1750665675.242737000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001280000 seconds] + [Time delta from previous displayed frame: 0.001280000 seconds] + [Time since reference or first frame: 2.179402000 seconds] + Frame Number: 3045 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3046] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 86 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 15 + +No. Time Source Destination Protocol Length Info + 3046 2.179537 1.3.0 host USB 43 URB_CONTROL in + +Frame 3046: 43 bytes on wire (344 bits), 43 bytes captured (344 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.242872000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.242872000 UTC + Epoch Arrival Time: 1750665675.242872000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000135000 seconds] + [Time delta from previous displayed frame: 0.000135000 seconds] + [Time since reference or first frame: 2.179537000 seconds] + Frame Number: 3046 + Frame Length: 43 bytes (344 bits) + Capture Length: 43 bytes (344 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.3.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 3 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 15 + [Request in: 3045] + [Time from request: 0.000135000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 31020356322e30332020202000ffff + +No. Time Source Destination Protocol Length Info + 3047 2.179553 host 1.3.0 USB 36 URB_CONTROL in + +Frame 3047: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.242888000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.242888000 UTC + Epoch Arrival Time: 1750665675.242888000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000016000 seconds] + [Time delta from previous displayed frame: 0.000016000 seconds] + [Time since reference or first frame: 2.179553000 seconds] + Frame Number: 3047 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3048] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 86 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 15 + +No. Time Source Destination Protocol Length Info + 3048 2.179739 1.3.0 host USB 43 URB_CONTROL in + +Frame 3048: 43 bytes on wire (344 bits), 43 bytes captured (344 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.243074000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.243074000 UTC + Epoch Arrival Time: 1750665675.243074000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000186000 seconds] + [Time delta from previous displayed frame: 0.000186000 seconds] + [Time since reference or first frame: 2.179739000 seconds] + Frame Number: 3048 + Frame Length: 43 bytes (344 bits) + Capture Length: 43 bytes (344 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.3.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 3 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 15 + [Request in: 3047] + [Time from request: 0.000186000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 31020356322e30332020202000ffff + +No. Time Source Destination Protocol Length Info + 3049 2.179755 host 1.3.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 3049: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.243090000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.243090000 UTC + Epoch Arrival Time: 1750665675.243090000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000016000 seconds] + [Time delta from previous displayed frame: 0.000016000 seconds] + [Time since reference or first frame: 2.179755000 seconds] + Frame Number: 3049 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: Unknown (0xffffe387) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3050] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x01 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 3050 2.179872 1.3.0 host USB 42 GET DESCRIPTOR Response STRING + +Frame 3050: 42 bytes on wire (336 bits), 42 bytes captured (336 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.243207000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.243207000 UTC + Epoch Arrival Time: 1750665675.243207000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000117000 seconds] + [Time delta from previous displayed frame: 0.000117000 seconds] + [Time since reference or first frame: 2.179872000 seconds] + Frame Number: 3050 + Frame Length: 42 bytes (336 bits) + Capture Length: 42 bytes (336 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.3.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 3 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 14 + [Request in: 3049] + [Time from request: 0.000117000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 14 + bDescriptorType: 0x03 (STRING) + bString: TASCAM + +No. Time Source Destination Protocol Length Info + 3051 2.179889 host 1.3.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 3051: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.243224000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.243224000 UTC + Epoch Arrival Time: 1750665675.243224000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000017000 seconds] + [Time delta from previous displayed frame: 0.000017000 seconds] + [Time since reference or first frame: 2.179889000 seconds] + Frame Number: 3051 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3052] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x02 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 3052 2.180031 1.3.0 host USB 52 GET DESCRIPTOR Response STRING + +Frame 3052: 52 bytes on wire (416 bits), 52 bytes captured (416 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.243366000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.243366000 UTC + Epoch Arrival Time: 1750665675.243366000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000142000 seconds] + [Time delta from previous displayed frame: 0.000142000 seconds] + [Time since reference or first frame: 2.180031000 seconds] + Frame Number: 3052 + Frame Length: 52 bytes (416 bits) + Capture Length: 52 bytes (416 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.3.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 3 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 24 + [Request in: 3051] + [Time from request: 0.000142000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 24 + bDescriptorType: 0x03 (STRING) + bString: US-144 MKII + +No. Time Source Destination Protocol Length Info + 3053 2.180047 host 1.3.0 USB 36 GET DESCRIPTOR Request STRING + +Frame 3053: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.243382000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.243382000 UTC + Epoch Arrival Time: 1750665675.243382000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000016000 seconds] + [Time delta from previous displayed frame: 0.000016000 seconds] + [Time since reference or first frame: 2.180047000 seconds] + Frame Number: 3053 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3054] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x03 + bDescriptorType: STRING (0x03) + Language Id: no language specified (0x0000) + wLength: 514 + +No. Time Source Destination Protocol Length Info + 3054 2.180239 1.3.0 host USB 62 GET DESCRIPTOR Response STRING + +Frame 3054: 62 bytes on wire (496 bits), 62 bytes captured (496 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.243574000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.243574000 UTC + Epoch Arrival Time: 1750665675.243574000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000192000 seconds] + [Time delta from previous displayed frame: 0.000192000 seconds] + [Time since reference or first frame: 2.180239000 seconds] + Frame Number: 3054 + Frame Length: 62 bytes (496 bits) + Capture Length: 62 bytes (496 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.3.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 3 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 34 + [Request in: 3053] + [Time from request: 0.000192000 seconds] + Control transfer stage: Complete (3) +STRING DESCRIPTOR + bLength: 34 + bDescriptorType: 0x03 (STRING) + bString: no serial number + +No. Time Source Destination Protocol Length Info + 3055 2.180255 host 1.3.0 USB 36 GET DESCRIPTOR Request CONFIGURATION + +Frame 3055: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.243590000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.243590000 UTC + Epoch Arrival Time: 1750665675.243590000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000016000 seconds] + [Time delta from previous displayed frame: 0.000016000 seconds] + [Time since reference or first frame: 2.180255000 seconds] + Frame Number: 3055 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: Unknown (0x00300063) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3056] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: CONFIGURATION (0x02) + Language Id: no language specified (0x0000) + wLength: 1033 + +No. Time Source Destination Protocol Length Info + 3056 2.180542 1.3.0 host USB 108 GET DESCRIPTOR Response CONFIGURATION + +Frame 3056: 108 bytes on wire (864 bits), 108 bytes captured (864 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.243877000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.243877000 UTC + Epoch Arrival Time: 1750665675.243877000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000287000 seconds] + [Time delta from previous displayed frame: 0.000287000 seconds] + [Time since reference or first frame: 2.180542000 seconds] + Frame Number: 3056 + Frame Length: 108 bytes (864 bits) + Capture Length: 108 bytes (864 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.3.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 3 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 80 + [Request in: 3055] + [Time from request: 0.000287000 seconds] + Control transfer stage: Complete (3) +CONFIGURATION DESCRIPTOR + bLength: 9 + bDescriptorType: 0x02 (CONFIGURATION) + wTotalLength: 80 + bNumInterfaces: 2 + bConfigurationValue: 1 + iConfiguration: 0 + Configuration bmAttributes: 0x80 NOT SELF-POWERED NO REMOTE-WAKEUP + 1... .... = Must be 1: Must be 1 for USB 1.1 and higher + .0.. .... = Self-Powered: This device is powered from the USB bus + ..0. .... = Remote Wakeup: This device does NOT support remote wakeup + bMaxPower: 240 (480mA) +INTERFACE DESCRIPTOR (0.0): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 0 + bAlternateSetting: 0 + bNumEndpoints: 0 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +INTERFACE DESCRIPTOR (0.1): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 0 + bAlternateSetting: 1 + bNumEndpoints: 3 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x02 OUT Endpoint:2 + 0... .... = Direction: OUT Endpoint + .... 0010 = Endpoint Number: 0x2 + bmAttributes: 0x05 + .... ..01 = Transfertype: Isochronous-Transfer (0x1) + .... 01.. = Synchronisationtype: Asynchronous (0x1) + ..00 .... = Behaviourtype: Data-Endpoint (0x0) + wMaxPacketSize: 156 + ...0 0... .... .... = Transactions per microframe: 1 (0) + .... .000 1001 1100 = Maximum Packet Size: 156 + bInterval: 1 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x83 IN Endpoint:3 + 1... .... = Direction: IN Endpoint + .... 0011 = Endpoint Number: 0x3 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 4 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x04 OUT Endpoint:4 + 0... .... = Direction: OUT Endpoint + .... 0100 = Endpoint Number: 0x4 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 4 +INTERFACE DESCRIPTOR (1.0): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 1 + bAlternateSetting: 0 + bNumEndpoints: 0 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +INTERFACE DESCRIPTOR (1.1): class Vendor Specific + bLength: 9 + bDescriptorType: 0x04 (INTERFACE) + bInterfaceNumber: 1 + bAlternateSetting: 1 + bNumEndpoints: 2 + bInterfaceClass: Vendor Specific (0xff) + bInterfaceSubClass: 0x00 + bInterfaceProtocol: 0x00 + iInterface: 0 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x81 IN Endpoint:1 + 1... .... = Direction: IN Endpoint + .... 0001 = Endpoint Number: 0x1 + bmAttributes: 0x05 + .... ..01 = Transfertype: Isochronous-Transfer (0x1) + .... 01.. = Synchronisationtype: Asynchronous (0x1) + ..00 .... = Behaviourtype: Data-Endpoint (0x0) + wMaxPacketSize: 64 + ...0 0... .... .... = Transactions per microframe: 1 (0) + .... .000 0100 0000 = Maximum Packet Size: 64 + bInterval: 4 +ENDPOINT DESCRIPTOR + bLength: 7 + bDescriptorType: 0x05 (ENDPOINT) + bEndpointAddress: 0x86 IN Endpoint:6 + 1... .... = Direction: IN Endpoint + .... 0110 = Endpoint Number: 0x6 + bmAttributes: 0x02 + .... ..10 = Transfertype: Bulk-Transfer (0x2) + wMaxPacketSize: 512 + .... .010 0000 0000 = Maximum Packet Size: 512 + bInterval: 1 + +No. Time Source Destination Protocol Length Info + 3057 2.183555 host 1.3.0 USB 36 GET DESCRIPTOR Request DEVICE + +Frame 3057: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.246890000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.246890000 UTC + Epoch Arrival Time: 1750665675.246890000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.003013000 seconds] + [Time delta from previous displayed frame: 0.003013000 seconds] + [Time since reference or first frame: 2.183555000 seconds] + Frame Number: 3057 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3058] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x80 + 1... .... = Direction: Device-to-host + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: GET DESCRIPTOR (6) + Descriptor Index: 0x00 + bDescriptorType: DEVICE (0x01) + Language Id: no language specified (0x0000) + wLength: 18 + +No. Time Source Destination Protocol Length Info + 3058 2.183704 1.3.0 host USB 46 GET DESCRIPTOR Response DEVICE + +Frame 3058: 46 bytes on wire (368 bits), 46 bytes captured (368 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.247039000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.247039000 UTC + Epoch Arrival Time: 1750665675.247039000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000149000 seconds] + [Time delta from previous displayed frame: 0.000149000 seconds] + [Time since reference or first frame: 2.183704000 seconds] + Frame Number: 3058 + Frame Length: 46 bytes (368 bits) + Capture Length: 46 bytes (368 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.3.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 3 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 18 + [Request in: 3057] + [Time from request: 0.000149000 seconds] + Control transfer stage: Complete (3) +DEVICE DESCRIPTOR + bLength: 18 + bDescriptorType: 0x01 (DEVICE) + bcdUSB: 0x0200 + bDeviceClass: Vendor Specific (0xff) + bDeviceSubClass: 255 + bDeviceProtocol: 255 + bMaxPacketSize0: 64 + idVendor: TEAC Corp. (0x0644) + idProduct: Unknown (0x8020) + bcdDevice: 0x0100 + iManufacturer: 1 + iProduct: 2 + iSerialNumber: 3 + bNumConfigurations: 1 + +No. Time Source Destination Protocol Length Info + 3059 2.183723 host 1.3.0 USB 36 SET CONFIGURATION Request + +Frame 3059: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.247058000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.247058000 UTC + Epoch Arrival Time: 1750665675.247058000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000019000 seconds] + [Time delta from previous displayed frame: 0.000019000 seconds] + [Time since reference or first frame: 2.183723000 seconds] + Frame Number: 3059 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3136] + Control transfer stage: Setup (0) +Setup Data + bmRequestType: 0x00 + 0... .... = Direction: Host-to-device + .00. .... = Type: Standard (0x0) + ...0 0000 = Recipient: Device (0x00) + bRequest: SET CONFIGURATION (9) + bConfigurationValue: 1 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3136 2.393858 1.3.0 host USB 28 SET CONFIGURATION Response + +Frame 3136: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.457193000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.457193000 UTC + Epoch Arrival Time: 1750665675.457193000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001894000 seconds] + [Time delta from previous displayed frame: 0.210135000 seconds] + [Time since reference or first frame: 2.393858000 seconds] + Frame Number: 3136 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.3.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SELECT_CONFIGURATION (0x0000) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 3 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3059] + [Time from request: 0.210135000 seconds] + Control transfer stage: Complete (3) + +No. Time Source Destination Protocol Length Info + 3183 2.443624 host 1.3.0 USB 36 URB_CONTROL in + +Frame 3183: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.506959000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.506959000 UTC + Epoch Arrival Time: 1750665675.506959000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001661000 seconds] + [Time delta from previous displayed frame: 0.049766000 seconds] + [Time since reference or first frame: 2.443624000 seconds] + Frame Number: 3183 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3184] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 1 + +No. Time Source Destination Protocol Length Info + 3184 2.443803 1.3.0 host USB 29 URB_CONTROL in + +Frame 3184: 29 bytes on wire (232 bits), 29 bytes captured (232 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.507138000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.507138000 UTC + Epoch Arrival Time: 1750665675.507138000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000179000 seconds] + [Time delta from previous displayed frame: 0.000179000 seconds] + [Time since reference or first frame: 2.443803000 seconds] + Frame Number: 3184 + Frame Length: 29 bytes (232 bits) + Capture Length: 29 bytes (232 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.3.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 3 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 1 + [Request in: 3183] + [Time from request: 0.000179000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 30 + +No. Time Source Destination Protocol Length Info + 3185 2.443820 host 1.3.0 USB 36 URB_CONTROL in + +Frame 3185: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.507155000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.507155000 UTC + Epoch Arrival Time: 1750665675.507155000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000017000 seconds] + [Time delta from previous displayed frame: 0.000017000 seconds] + [Time since reference or first frame: 2.443820000 seconds] + Frame Number: 3185 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3186] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 0 (0x0000) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 3186 2.443979 1.3.0 host USB 31 URB_CONTROL in + +Frame 3186: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.507314000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.507314000 UTC + Epoch Arrival Time: 1750665675.507314000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000159000 seconds] + [Time delta from previous displayed frame: 0.000159000 seconds] + [Time since reference or first frame: 2.443979000 seconds] + Frame Number: 3186 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.3.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 3 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 3185] + [Time from request: 0.000159000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 80bb00 + +No. Time Source Destination Protocol Length Info + 3187 2.445880 host 1.3.0 USB 39 URB_CONTROL out + +Frame 3187: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.509215000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.509215000 UTC + Epoch Arrival Time: 1750665675.509215000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.001901000 seconds] + [Time delta from previous displayed frame: 0.001901000 seconds] + [Time since reference or first frame: 2.445880000 seconds] + Frame Number: 3187 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 3190] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 3190 2.446000 1.3.0 host USB 28 URB_CONTROL out + +Frame 3190: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.509335000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.509335000 UTC + Epoch Arrival Time: 1750665675.509335000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000037000 seconds] + [Time delta from previous displayed frame: 0.000120000 seconds] + [Time since reference or first frame: 2.446000000 seconds] + Frame Number: 3190 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.3.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 3 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3187] + [Time from request: 0.000120000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3191 2.446007 host 1.3.0 USB 39 URB_CONTROL out + +Frame 3191: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.509342000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.509342000 UTC + Epoch Arrival Time: 1750665675.509342000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000007000 seconds] + [Time delta from previous displayed frame: 0.000007000 seconds] + [Time since reference or first frame: 2.446007000 seconds] + Frame Number: 3191 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 3192] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 3192 2.446158 1.3.0 host USB 28 URB_CONTROL out + +Frame 3192: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.509493000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.509493000 UTC + Epoch Arrival Time: 1750665675.509493000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000151000 seconds] + [Time delta from previous displayed frame: 0.000151000 seconds] + [Time since reference or first frame: 2.446158000 seconds] + Frame Number: 3192 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.3.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 3 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3191] + [Time from request: 0.000151000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3193 2.446174 host 1.3.0 USB 36 URB_CONTROL in + +Frame 3193: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.509509000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.509509000 UTC + Epoch Arrival Time: 1750665675.509509000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000016000 seconds] + [Time delta from previous displayed frame: 0.000016000 seconds] + [Time since reference or first frame: 2.446174000 seconds] + Frame Number: 3193 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3194] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0d00 + wIndex: 257 (0x0101) + wLength: 5 + +No. Time Source Destination Protocol Length Info + 3194 2.446390 1.3.0 host USB 33 URB_CONTROL in + +Frame 3194: 33 bytes on wire (264 bits), 33 bytes captured (264 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.509725000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.509725000 UTC + Epoch Arrival Time: 1750665675.509725000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000216000 seconds] + [Time delta from previous displayed frame: 0.000216000 seconds] + [Time since reference or first frame: 2.446390000 seconds] + Frame Number: 3194 + Frame Length: 33 bytes (264 bits) + Capture Length: 33 bytes (264 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.3.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 3 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 5 + [Request in: 3193] + [Time from request: 0.000216000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 0000000200 + +No. Time Source Destination Protocol Length Info + 3195 2.446405 host 1.3.0 USB 36 URB_CONTROL out + +Frame 3195: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.509740000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.509740000 UTC + Epoch Arrival Time: 1750665675.509740000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000015000 seconds] + [Time delta from previous displayed frame: 0.000015000 seconds] + [Time since reference or first frame: 2.446405000 seconds] + Frame Number: 3195 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3196] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0d04 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3196 2.446464 1.3.0 host USB 28 URB_CONTROL out + +Frame 3196: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.509799000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.509799000 UTC + Epoch Arrival Time: 1750665675.509799000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000059000 seconds] + [Time delta from previous displayed frame: 0.000059000 seconds] + [Time since reference or first frame: 2.446464000 seconds] + Frame Number: 3196 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.3.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 3 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3195] + [Time from request: 0.000059000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 3197 2.446472 host 1.3.0 USB 36 URB_CONTROL out + +Frame 3197: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.509807000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.509807000 UTC + Epoch Arrival Time: 1750665675.509807000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000008000 seconds] + [Time delta from previous displayed frame: 0.000008000 seconds] + [Time since reference or first frame: 2.446472000 seconds] + Frame Number: 3197 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b4be1a80 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3198] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0e00 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3198 2.446545 1.3.0 host USB 28 URB_CONTROL out + +Frame 3198: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.509880000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.509880000 UTC + Epoch Arrival Time: 1750665675.509880000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000073000 seconds] + [Time delta from previous displayed frame: 0.000073000 seconds] + [Time since reference or first frame: 2.446545000 seconds] + Frame Number: 3198 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.3.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b4be1a80 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 3 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3197] + [Time from request: 0.000073000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 3199 2.446553 host 1.3.0 USB 36 URB_CONTROL out + +Frame 3199: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.509888000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.509888000 UTC + Epoch Arrival Time: 1750665675.509888000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000008000 seconds] + [Time delta from previous displayed frame: 0.000008000 seconds] + [Time since reference or first frame: 2.446553000 seconds] + Frame Number: 3199 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b7495560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3200] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x0f00 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3200 2.446637 1.3.0 host USB 28 URB_CONTROL out + +Frame 3200: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.509972000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.509972000 UTC + Epoch Arrival Time: 1750665675.509972000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000084000 seconds] + [Time delta from previous displayed frame: 0.000084000 seconds] + [Time since reference or first frame: 2.446637000 seconds] + Frame Number: 3200 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.3.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b7495560 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 3 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3199] + [Time from request: 0.000084000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 3201 2.446642 host 1.3.0 USB 36 URB_CONTROL out + +Frame 3201: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.509977000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.509977000 UTC + Epoch Arrival Time: 1750665675.509977000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000005000 seconds] + [Time delta from previous displayed frame: 0.000005000 seconds] + [Time since reference or first frame: 2.446642000 seconds] + Frame Number: 3201 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b64c53b0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3202] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x1002 + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3202 2.446701 1.3.0 host USB 28 URB_CONTROL out + +Frame 3202: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.510036000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.510036000 UTC + Epoch Arrival Time: 1750665675.510036000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000059000 seconds] + [Time delta from previous displayed frame: 0.000059000 seconds] + [Time since reference or first frame: 2.446701000 seconds] + Frame Number: 3202 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.3.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b64c53b0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 3 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3201] + [Time from request: 0.000059000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 3203 2.446707 host 1.3.0 USB 36 URB_CONTROL out + +Frame 3203: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.510042000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.510042000 UTC + Epoch Arrival Time: 1750665675.510042000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000006000 seconds] + [Time delta from previous displayed frame: 0.000006000 seconds] + [Time since reference or first frame: 2.446707000 seconds] + Frame Number: 3203 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b4be1a80 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3204] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 65 + wValue: 0x110b + wIndex: 257 (0x0101) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3204 2.446765 1.3.0 host USB 28 URB_CONTROL out + +Frame 3204: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.510100000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.510100000 UTC + Epoch Arrival Time: 1750665675.510100000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000058000 seconds] + [Time delta from previous displayed frame: 0.000058000 seconds] + [Time since reference or first frame: 2.446765000 seconds] + Frame Number: 3204 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.3.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b4be1a80 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 3 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3203] + [Time from request: 0.000058000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 3205 2.446800 host 1.3.0 USB 39 URB_CONTROL out + +Frame 3205: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.510135000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.510135000 UTC + Epoch Arrival Time: 1750665675.510135000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000035000 seconds] + [Time delta from previous displayed frame: 0.000035000 seconds] + [Time since reference or first frame: 2.446800000 seconds] + Frame Number: 3205 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 3206] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 3206 2.446987 1.3.0 host USB 28 URB_CONTROL out + +Frame 3206: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.510322000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.510322000 UTC + Epoch Arrival Time: 1750665675.510322000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000187000 seconds] + [Time delta from previous displayed frame: 0.000187000 seconds] + [Time since reference or first frame: 2.446987000 seconds] + Frame Number: 3206 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.3.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 3 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3205] + [Time from request: 0.000187000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3207 2.447002 host 1.3.0 USB 39 URB_CONTROL out + +Frame 3207: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.510337000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.510337000 UTC + Epoch Arrival Time: 1750665675.510337000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000015000 seconds] + [Time delta from previous displayed frame: 0.000015000 seconds] + [Time since reference or first frame: 2.447002000 seconds] + Frame Number: 3207 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 3208] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 2 (0x0002) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 3208 2.447111 1.3.0 host USB 28 URB_CONTROL out + +Frame 3208: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.510446000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.510446000 UTC + Epoch Arrival Time: 1750665675.510446000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000109000 seconds] + [Time delta from previous displayed frame: 0.000109000 seconds] + [Time since reference or first frame: 2.447111000 seconds] + Frame Number: 3208 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.3.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 3 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3207] + [Time from request: 0.000109000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3209 2.447128 host 1.3.0 USB 39 URB_CONTROL out + +Frame 3209: 39 bytes on wire (312 bits), 39 bytes captured (312 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.510463000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.510463000 UTC + Epoch Arrival Time: 1750665675.510463000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000017000 seconds] + [Time delta from previous displayed frame: 0.000017000 seconds] + [Time since reference or first frame: 2.447128000 seconds] + Frame Number: 3209 + Frame Length: 39 bytes (312 bits) + Capture Length: 39 bytes (312 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 11 + [Response in: 3210] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0x22 + 0... .... = Direction: Host-to-device + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 1 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + Data Fragment: 80bb00 + +No. Time Source Destination Protocol Length Info + 3210 2.447279 1.3.0 host USB 28 URB_CONTROL out + +Frame 3210: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.510614000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.510614000 UTC + Epoch Arrival Time: 1750665675.510614000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000151000 seconds] + [Time delta from previous displayed frame: 0.000151000 seconds] + [Time since reference or first frame: 2.447279000 seconds] + Frame Number: 3210 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.3.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 3 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3209] + [Time from request: 0.000151000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3211 2.447294 host 1.3.0 USB 36 URB_CONTROL in + +Frame 3211: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.510629000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.510629000 UTC + Epoch Arrival Time: 1750665675.510629000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000015000 seconds] + [Time delta from previous displayed frame: 0.000015000 seconds] + [Time since reference or first frame: 2.447294000 seconds] + Frame Number: 3211 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CLASS_ENDPOINT (0x001c) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3212] + Control transfer stage: Setup (0) + [bInterfaceClass: Vendor Specific (0xff)] +Setup Data + bmRequestType: 0xa2 + 1... .... = Direction: Device-to-host + .01. .... = Type: Class (0x1) + ...0 0010 = Recipient: Endpoint (0x02) + bRequest: 129 + wValue: 0x0100 + wIndex: 134 (0x0086) + wLength: 3 + +No. Time Source Destination Protocol Length Info + 3212 2.447469 1.3.0 host USB 31 URB_CONTROL in + +Frame 3212: 31 bytes on wire (248 bits), 31 bytes captured (248 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.510804000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.510804000 UTC + Epoch Arrival Time: 1750665675.510804000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000175000 seconds] + [Time delta from previous displayed frame: 0.000175000 seconds] + [Time since reference or first frame: 2.447469000 seconds] + Frame Number: 3212 + Frame Length: 31 bytes (248 bits) + Capture Length: 31 bytes (248 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.3.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 3 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 3 + [Request in: 3211] + [Time from request: 0.000175000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Vendor Specific (0xff)] +CONTROL response data: 80bb00 + +No. Time Source Destination Protocol Length Info + 3213 2.447484 host 1.3.0 USB 36 URB_CONTROL in + +Frame 3213: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.510819000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.510819000 UTC + Epoch Arrival Time: 1750665675.510819000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000015000 seconds] + [Time delta from previous displayed frame: 0.000015000 seconds] + [Time since reference or first frame: 2.447484000 seconds] + Frame Number: 3213 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3214] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0xc0 + 1... .... = Direction: Device-to-host + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0000 + wIndex: 0 (0x0000) + wLength: 1 + +No. Time Source Destination Protocol Length Info + 3214 2.447635 1.3.0 host USB 29 URB_CONTROL in + +Frame 3214: 29 bytes on wire (232 bits), 29 bytes captured (232 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.510970000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.510970000 UTC + Epoch Arrival Time: 1750665675.510970000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000151000 seconds] + [Time delta from previous displayed frame: 0.000151000 seconds] + [Time since reference or first frame: 2.447635000 seconds] + Frame Number: 3214 + Frame Length: 29 bytes (232 bits) + Capture Length: 29 bytes (232 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.3.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 3 + Endpoint: 0x80, Direction: IN + 1... .... = Direction: IN (1) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 1 + [Request in: 3213] + [Time from request: 0.000151000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] +CONTROL response data: 30 + +No. Time Source Destination Protocol Length Info + 3215 2.447650 host 1.3.0 USB 36 URB_CONTROL out + +Frame 3215: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.510985000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.510985000 UTC + Epoch Arrival Time: 1750665675.510985000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000015000 seconds] + [Time delta from previous displayed frame: 0.000015000 seconds] + [Time since reference or first frame: 2.447650000 seconds] + Frame Number: 3215 + Frame Length: 36 bytes (288 bits) + Capture Length: 36 bytes (288 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.0] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_VENDOR_DEVICE (0x0017) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 8 + [Response in: 3216] + Control transfer stage: Setup (0) + [bInterfaceClass: Unknown (0xffff)] +Setup Data + bmRequestType: 0x40 + 0... .... = Direction: Host-to-device + .10. .... = Type: Vendor (0x2) + ...0 0000 = Recipient: Device (0x00) + bRequest: 73 + wValue: 0x0030 + wIndex: 0 (0x0000) + wLength: 0 + +No. Time Source Destination Protocol Length Info + 3216 2.447876 1.3.0 host USB 28 URB_CONTROL out + +Frame 3216: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.511211000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.511211000 UTC + Epoch Arrival Time: 1750665675.511211000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000226000 seconds] + [Time delta from previous displayed frame: 0.000226000 seconds] + [Time since reference or first frame: 2.447876000 seconds] + Frame Number: 3216 + Frame Length: 28 bytes (224 bits) + Capture Length: 28 bytes (224 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.3.0] + [Destination: host] + USBPcap pseudoheader length: 28 + IRP ID: 0xffffe387b76f3a70 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 3 + Endpoint: 0x00, Direction: OUT + 0... .... = Direction: OUT (0) + .... 0000 = Endpoint number: 0 + URB transfer type: URB_CONTROL (0x02) + Packet Data Length: 0 + [Request in: 3215] + [Time from request: 0.000226000 seconds] + Control transfer stage: Complete (3) + [bInterfaceClass: Unknown (0xffff)] + +No. Time Source Destination Protocol Length Info + 3233 2.495766 host 1.3.6 USB 27 URB_FUNCTION_ABORT_PIPE + +Frame 3233: 27 bytes on wire (216 bits), 27 bytes captured (216 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.559101000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.559101000 UTC + Epoch Arrival Time: 1750665675.559101000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.021801000 seconds] + [Time delta from previous displayed frame: 0.047890000 seconds] + [Time since reference or first frame: 2.495766000 seconds] + Frame Number: 3233 + Frame Length: 27 bytes (216 bits) + Capture Length: 27 bytes (216 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.6] + USBPcap pseudoheader length: 27 + IRP ID: 0xffffe387b4be1a80 + IRP USBD_STATUS: Unknown (0x0028006e) + URB Function: URB_FUNCTION_ABORT_PIPE (0x0002) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: USB IRP Info (0xfe) + Packet Data Length: 0 + [Response in: 3234] + +No. Time Source Destination Protocol Length Info + 3234 2.495783 1.3.6 host USB 27 URB_FUNCTION_ABORT_PIPE + +Frame 3234: 27 bytes on wire (216 bits), 27 bytes captured (216 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.559118000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.559118000 UTC + Epoch Arrival Time: 1750665675.559118000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000017000 seconds] + [Time delta from previous displayed frame: 0.000017000 seconds] + [Time since reference or first frame: 2.495783000 seconds] + Frame Number: 3234 + Frame Length: 27 bytes (216 bits) + Capture Length: 27 bytes (216 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.3.6] + [Destination: host] + USBPcap pseudoheader length: 27 + IRP ID: 0xffffe387b4be1a80 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_ABORT_PIPE (0x0002) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 3 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: USB IRP Info (0xfe) + Packet Data Length: 0 + [Request in: 3233] + [Time from request: 0.000017000 seconds] + +No. Time Source Destination Protocol Length Info + 3235 2.495785 host 1.3.6 USB 27 URB_FUNCTION_SYNC_RESET_PIPE_AND_CLEAR_STALL + +Frame 3235: 27 bytes on wire (216 bits), 27 bytes captured (216 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.559120000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.559120000 UTC + Epoch Arrival Time: 1750665675.559120000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000002000 seconds] + [Time delta from previous displayed frame: 0.000002000 seconds] + [Time since reference or first frame: 2.495785000 seconds] + Frame Number: 3235 + Frame Length: 27 bytes (216 bits) + Capture Length: 27 bytes (216 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.6] + USBPcap pseudoheader length: 27 + IRP ID: 0xffffe387b4be1a80 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SYNC_RESET_PIPE_AND_CLEAR_STALL (0x001e) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: USB IRP Info (0xfe) + Packet Data Length: 0 + [Response in: 3236] + +No. Time Source Destination Protocol Length Info + 3236 2.496084 1.3.6 host USB 27 URB_FUNCTION_SYNC_RESET_PIPE_AND_CLEAR_STALL + +Frame 3236: 27 bytes on wire (216 bits), 27 bytes captured (216 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.559419000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.559419000 UTC + Epoch Arrival Time: 1750665675.559419000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000299000 seconds] + [Time delta from previous displayed frame: 0.000299000 seconds] + [Time since reference or first frame: 2.496084000 seconds] + Frame Number: 3236 + Frame Length: 27 bytes (216 bits) + Capture Length: 27 bytes (216 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: 1.3.6] + [Destination: host] + USBPcap pseudoheader length: 27 + IRP ID: 0xffffe387b4be1a80 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_SYNC_RESET_PIPE_AND_CLEAR_STALL (0x001e) + IRP information: 0x01, Direction: PDO -> FDO + 0000 000. = Reserved: 0x00 + .... ...1 = Direction: PDO -> FDO (0x1) + URB bus id: 1 + Device address: 3 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: USB IRP Info (0xfe) + Packet Data Length: 0 + [Request in: 3235] + [Time from request: 0.000299000 seconds] + +No. Time Source Destination Protocol Length Info + 3237 2.496111 host 1.3.6 USB 27 URB_BULK in + +Frame 3237: 27 bytes on wire (216 bits), 27 bytes captured (216 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.559446000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.559446000 UTC + Epoch Arrival Time: 1750665675.559446000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000027000 seconds] + [Time delta from previous displayed frame: 0.000027000 seconds] + [Time since reference or first frame: 2.496111000 seconds] + Frame Number: 3237 + Frame Length: 27 bytes (216 bits) + Capture Length: 27 bytes (216 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.6] + USBPcap pseudoheader length: 27 + IRP ID: 0xffffe387b14368a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: URB_BULK (0x03) + Packet Data Length: 0 + [Response in: 3295] + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3238 2.496146 host 1.3.6 USB 27 URB_BULK in + +Frame 3238: 27 bytes on wire (216 bits), 27 bytes captured (216 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.559481000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.559481000 UTC + Epoch Arrival Time: 1750665675.559481000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000035000 seconds] + [Time delta from previous displayed frame: 0.000035000 seconds] + [Time since reference or first frame: 2.496146000 seconds] + Frame Number: 3238 + Frame Length: 27 bytes (216 bits) + Capture Length: 27 bytes (216 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.6] + USBPcap pseudoheader length: 27 + IRP ID: 0xffffe387acb638a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: URB_BULK (0x03) + Packet Data Length: 0 + [Response in: 3337] + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3239 2.496177 host 1.3.6 USB 27 URB_BULK in + +Frame 3239: 27 bytes on wire (216 bits), 27 bytes captured (216 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.559512000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.559512000 UTC + Epoch Arrival Time: 1750665675.559512000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000031000 seconds] + [Time delta from previous displayed frame: 0.000031000 seconds] + [Time since reference or first frame: 2.496177000 seconds] + Frame Number: 3239 + Frame Length: 27 bytes (216 bits) + Capture Length: 27 bytes (216 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.6] + USBPcap pseudoheader length: 27 + IRP ID: 0xffffe387ac8f68a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: URB_BULK (0x03) + Packet Data Length: 0 + [Response in: 3391] + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3240 2.496207 host 1.3.6 USB 27 URB_BULK in + +Frame 3240: 27 bytes on wire (216 bits), 27 bytes captured (216 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.559542000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.559542000 UTC + Epoch Arrival Time: 1750665675.559542000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000030000 seconds] + [Time delta from previous displayed frame: 0.000030000 seconds] + [Time since reference or first frame: 2.496207000 seconds] + Frame Number: 3240 + Frame Length: 27 bytes (216 bits) + Capture Length: 27 bytes (216 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.6] + USBPcap pseudoheader length: 27 + IRP ID: 0xffffe387b11e65a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: URB_BULK (0x03) + Packet Data Length: 0 + [Response in: 3455] + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3241 2.496238 host 1.3.6 USB 27 URB_BULK in + +Frame 3241: 27 bytes on wire (216 bits), 27 bytes captured (216 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.559573000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.559573000 UTC + Epoch Arrival Time: 1750665675.559573000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000031000 seconds] + [Time delta from previous displayed frame: 0.000031000 seconds] + [Time since reference or first frame: 2.496238000 seconds] + Frame Number: 3241 + Frame Length: 27 bytes (216 bits) + Capture Length: 27 bytes (216 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.6] + USBPcap pseudoheader length: 27 + IRP ID: 0xffffe387ac9eb8a0 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: URB_BULK (0x03) + Packet Data Length: 0 + [Response in: 3499] + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3242 2.496268 host 1.3.6 USB 27 URB_BULK in + +Frame 3242: 27 bytes on wire (216 bits), 27 bytes captured (216 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.559603000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.559603000 UTC + Epoch Arrival Time: 1750665675.559603000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000030000 seconds] + [Time delta from previous displayed frame: 0.000030000 seconds] + [Time since reference or first frame: 2.496268000 seconds] + Frame Number: 3242 + Frame Length: 27 bytes (216 bits) + Capture Length: 27 bytes (216 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.6] + USBPcap pseudoheader length: 27 + IRP ID: 0xffffe387aca73010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: URB_BULK (0x03) + Packet Data Length: 0 + [Response in: 3545] + [bInterfaceClass: Vendor Specific (0xff)] + +No. Time Source Destination Protocol Length Info + 3243 2.496297 host 1.3.6 USB 27 URB_BULK in + +Frame 3243: 27 bytes on wire (216 bits), 27 bytes captured (216 bits) on interface \\.\USBPcap1, id 0 + Section number: 1 + Interface id: 0 (\\.\USBPcap1) + Interface name: \\.\USBPcap1 + Interface description: USBPcap1 + Encapsulation type: USB packets with USBPcap header (152) + Arrival Time: Jun 23, 2025 10:01:15.559632000 Central Europe Daylight Time + UTC Arrival Time: Jun 23, 2025 08:01:15.559632000 UTC + Epoch Arrival Time: 1750665675.559632000 + [Time shift for this packet: 0.000000000 seconds] + [Time delta from previous captured frame: 0.000029000 seconds] + [Time delta from previous displayed frame: 0.000029000 seconds] + [Time since reference or first frame: 2.496297000 seconds] + Frame Number: 3243 + Frame Length: 27 bytes (216 bits) + Capture Length: 27 bytes (216 bits) + [Frame is marked: False] + [Frame is ignored: False] + [Protocols in frame: usb] +USB URB + [Source: host] + [Destination: 1.3.6] + USBPcap pseudoheader length: 27 + IRP ID: 0xffffe387aca72010 + IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000) + URB Function: URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER (0x0009) + IRP information: 0x00, Direction: FDO -> PDO + 0000 000. = Reserved: 0x00 + .... ...0 = Direction: FDO -> PDO (0x0) + URB bus id: 1 + Device address: 3 + Endpoint: 0x86, Direction: IN + 1... .... = Direction: IN (1) + .... 0110 = Endpoint number: 6 + URB transfer type: URB_BULK (0x03) + Packet Data Length: 0 + [Response in: 3595] + [bInterfaceClass: Vendor Specific (0xff)] diff --git a/src & scripts/run_tascam_streamer.sh b/src & scripts/run_tascam_streamer.sh new file mode 100644 index 0000000..a192817 --- /dev/null +++ b/src & scripts/run_tascam_streamer.sh @@ -0,0 +1,76 @@ + +# MIT License + +#Copyright (c) 2025 serifpersia + +#!/bin/bash + +# --- Configuration --- +SINK_NAME="TASCAM-US144MKII-OUT" +SOURCE_NAME="TASCAM-US144MKII-IN" +FIFO_PLAYBACK_PATH="/tmp/tascam-audio-playback" +FIFO_CAPTURE_PATH="/tmp/tascam-audio-capture" +RATE="48000" +CHANNELS="2" +STREAMER_BINARY="./tascam_streamer" + +# Set format for PulseAudio modules. Playback is s24le. +# Capture is left as s24le but will not be used by the C program. +FORMAT="s24le" + +# --- Cleanup Function --- +cleanup() { + echo "" + echo "--- Running cleanup... ---" + + pkill -f "$STREAMER_BINARY" 2>/dev/null + sleep 0.5 + + echo "Unloading PulseAudio modules..." + pactl unload-module module-pipe-sink 2>/dev/null + pactl unload-module module-pipe-source 2>/dev/null + + echo "Removing FIFO files..." + rm -f "$FIFO_PLAYBACK_PATH" + rm -f "$FIFO_CAPTURE_PATH" + + echo "--- Cleanup complete. ---" + exit 0 +} + +# Trap signals to ensure cleanup runs +trap cleanup SIGINT TERM EXIT + +echo "--- Starting TASCAM Streamer Automation (PLAYBACK ONLY) ---" + +rm -f "$FIFO_PLAYBACK_PATH" +rm -f "$FIFO_CAPTURE_PATH" +echo "Creating playback FIFO at $FIFO_PLAYBACK_PATH..." +mkfifo "$FIFO_PLAYBACK_PATH" +echo "Creating (unused) capture FIFO at $FIFO_CAPTURE_PATH..." +mkfifo "$FIFO_CAPTURE_PATH" + +echo "Loading PulseAudio pipe-sink module for playback (Format: $FORMAT)..." +SINK_MODULE_ID=$(pactl load-module module-pipe-sink file="$FIFO_PLAYBACK_PATH" sink_name="$SINK_NAME" format=$FORMAT rate=$RATE channels=$CHANNELS) +if [ -z "$SINK_MODULE_ID" ]; then + echo "Error: Failed to load PulseAudio pipe-sink module. Aborting." + exit 1 +fi +echo "Playback Sink ('$SINK_NAME') loaded with ID: $SINK_MODULE_ID" + +echo "Loading (unused) PulseAudio pipe-source module for capture (Format: $FORMAT)..." +SOURCE_MODULE_ID=$(pactl load-module module-pipe-source file="$FIFO_CAPTURE_PATH" source_name="$SOURCE_NAME" format=$FORMAT rate=$RATE channels=$CHANNELS) +if [ -z "$SOURCE_MODULE_ID" ]; then + echo "Error: Failed to load PulseAudio pipe-source module. Aborting." + exit 1 +fi +echo "Capture Source ('$SOURCE_NAME') loaded with ID: $SOURCE_MODULE_ID" +echo "---------------------------------------------" + +echo "Starting C streamer binary for PLAYBACK ONLY..." +sudo "$STREAMER_BINARY" \ + -r "$RATE" \ + --playback-pipe "$FIFO_PLAYBACK_PATH" + +echo "Streamer exited. Waiting for cleanup..." +wait diff --git a/src & scripts/tascam_fifo_streamer.c b/src & scripts/tascam_fifo_streamer.c new file mode 100644 index 0000000..2bff9e7 --- /dev/null +++ b/src & scripts/tascam_fifo_streamer.c @@ -0,0 +1,278 @@ + +# MIT License + +#Copyright (c) 2025 serifpersia + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +// --- Device and Endpoint Configuration --- +#define TASCAM_VID 0x0644 +#define TASCAM_PID 0x8020 +#define EP_AUDIO_OUT 0x02 +#define EP_PLAYBACK_FEEDBACK 0x81 + +// --- USB Request Types --- +#define RT_H2D_CLASS_EP 0x22 +#define RT_D2H_CLASS_EP 0xa2 +#define RT_H2D_VENDOR_DEV 0x40 +#define RT_D2H_VENDOR_DEV 0xc0 + +// --- UAC / Vendor Requests --- +#define UAC_SET_CUR 0x01 +#define UAC_SAMPLING_FREQ_CONTROL 0x0100 +#define VENDOR_REQ_REGISTER_WRITE 65 +#define VENDOR_REQ_MODE_CONTROL 73 + +// --- Streaming Configuration --- +#define BYTES_PER_SAMPLE 3 +#define DEVICE_CHANNELS 4 +#define DEVICE_FRAME_SIZE (DEVICE_CHANNELS * BYTES_PER_SAMPLE) // 12 bytes + +#define PIPE_CHANNELS 2 +#define PIPE_FRAME_SIZE (PIPE_CHANNELS * BYTES_PER_SAMPLE) // 6 bytes + +#define ISO_PACKETS_PER_TRANSFER 8 +#define NUM_ISO_TRANSFERS 8 +#define USB_TIMEOUT 1000 + +// --- Global State --- +static volatile bool is_running = true; +struct stream_state { + int playback_fifo_fd; +}; + +// --- Function Prototypes --- +void print_usage(const char *prog_name); +int perform_initialization_sequence(libusb_device_handle *handle, int rate); +static void LIBUSB_CALL iso_playback_callback(struct libusb_transfer *transfer); +static void LIBUSB_CALL feedback_callback(struct libusb_transfer *transfer); + +// --- Signal Handler --- +void sigint_handler(int signum) { + if (is_running) { + printf("\nCtrl+C detected, stopping...\n"); + is_running = false; + } +} + +// --- Main Program --- +int main(int argc, char *argv[]) { + libusb_device_handle *handle = NULL; + struct libusb_transfer *playback_transfers[NUM_ISO_TRANSFERS] = {0}; + struct libusb_transfer *feedback_transfers[NUM_ISO_TRANSFERS] = {0}; + struct stream_state state = {.playback_fifo_fd = -1}; + bool kernel_driver_was_active[2] = {false, false}; + int r = 0; + + int sample_rate = 0; + const char *playback_pipe_path = NULL; + + for (int i = 1; i < argc; i++) { + if (strcmp(argv[i], "-r") == 0 && i + 1 < argc) { sample_rate = atoi(argv[++i]); } + else if (strcmp(argv[i], "--playback-pipe") == 0 && i + 1 < argc) { playback_pipe_path = argv[++i]; } + else { print_usage(argv[0]); return 1; } + } + + if (sample_rate == 0 || !playback_pipe_path) { + fprintf(stderr, "Error: Missing required arguments.\n"); + print_usage(argv[0]); return 1; + } + if (sample_rate != 44100 && sample_rate != 48000 && sample_rate != 88200 && sample_rate != 96000) { + fprintf(stderr, "Error: Sample rate %d is not supported.\n", sample_rate); return 1; + } + + const int frames_per_packet_playback = (sample_rate > 48000) ? 12 : 6; + const int playback_packet_size = frames_per_packet_playback * DEVICE_FRAME_SIZE; + const int playback_transfer_size = playback_packet_size * ISO_PACKETS_PER_TRANSFER; + const int feedback_packet_size = 3; + const int feedback_transfer_size = feedback_packet_size * ISO_PACKETS_PER_TRANSFER; + + printf("Initializing TASCAM US-144 MKII for %d Hz...\n", sample_rate); + printf(" Playback Pipe: %s (using Iso EP 0x%02x)\n", playback_pipe_path, EP_AUDIO_OUT); + + signal(SIGINT, sigint_handler); + if (libusb_init(NULL) < 0) return 1; + handle = libusb_open_device_with_vid_pid(NULL, TASCAM_VID, TASCAM_PID); + if (!handle) { fprintf(stderr, "Device not found\n"); r = 1; goto cleanup; } + + for (int i = 0; i < 2; i++) { + if (libusb_kernel_driver_active(handle, i)) { + kernel_driver_was_active[i] = true; + if ((r = libusb_detach_kernel_driver(handle, i)) != 0) { + fprintf(stderr, "Could not detach kernel driver for interface %d: %s\n", i, libusb_error_name(r)); + r = 1; goto cleanup; + } + } + } + + if (perform_initialization_sequence(handle, sample_rate) != 0) { fprintf(stderr, "Device configuration failed.\n"); r = 1; goto cleanup; } + + state.playback_fifo_fd = open(playback_pipe_path, O_RDONLY | O_NONBLOCK); + if (state.playback_fifo_fd < 0) { perror("Opening playback FIFO failed"); r = 1; goto cleanup; } + char drain_buf[1024]; while (read(state.playback_fifo_fd, drain_buf, sizeof(drain_buf)) > 0); + + printf("Starting playback stream (EP 0x%02x) and feedback stream (EP 0x%02x)...\n", EP_AUDIO_OUT, EP_PLAYBACK_FEEDBACK); + for (int i = 0; i < NUM_ISO_TRANSFERS; i++) { + playback_transfers[i] = libusb_alloc_transfer(ISO_PACKETS_PER_TRANSFER); + unsigned char *buf = malloc(playback_transfer_size); + memset(buf, 0, playback_transfer_size); + libusb_fill_iso_transfer(playback_transfers[i], handle, EP_AUDIO_OUT, buf, playback_transfer_size, ISO_PACKETS_PER_TRANSFER, iso_playback_callback, &state, USB_TIMEOUT); + libusb_set_iso_packet_lengths(playback_transfers[i], playback_packet_size); + libusb_submit_transfer(playback_transfers[i]); + + feedback_transfers[i] = libusb_alloc_transfer(ISO_PACKETS_PER_TRANSFER); + buf = malloc(feedback_transfer_size); + libusb_fill_iso_transfer(feedback_transfers[i], handle, EP_PLAYBACK_FEEDBACK, buf, feedback_transfer_size, ISO_PACKETS_PER_TRANSFER, feedback_callback, NULL, USB_TIMEOUT); + libusb_set_iso_packet_lengths(feedback_transfers[i], feedback_packet_size); + libusb_submit_transfer(feedback_transfers[i]); + } + + printf("\n--- Playback active. Press Ctrl+C to stop. ---\n"); + while (is_running) { + libusb_handle_events_timeout_completed(NULL, &(struct timeval){0, 100000}, NULL); + } + +cleanup: + is_running = false; + printf("\nCleaning up...\n"); + for (int i = 0; i < NUM_ISO_TRANSFERS; i++) { + if (playback_transfers[i]) libusb_cancel_transfer(playback_transfers[i]); + if (feedback_transfers[i]) libusb_cancel_transfer(feedback_transfers[i]); + } + if (handle) { + struct timeval tv = {0, 100000}; + libusb_handle_events_timeout_completed(NULL, &tv, NULL); + } + if (handle) { + libusb_release_interface(handle, 1); libusb_release_interface(handle, 0); + for(int i = 0; i < 2; i++) if (kernel_driver_was_active[i]) libusb_attach_kernel_driver(handle, i); + libusb_close(handle); + handle = NULL; + } + for (int i = 0; i < NUM_ISO_TRANSFERS; i++) { + if (playback_transfers[i]) { if (playback_transfers[i]->buffer) free(playback_transfers[i]->buffer); libusb_free_transfer(playback_transfers[i]); } + if (feedback_transfers[i]) { if (feedback_transfers[i]->buffer) free(feedback_transfers[i]->buffer); libusb_free_transfer(feedback_transfers[i]); } + } + if (state.playback_fifo_fd >= 0) close(state.playback_fifo_fd); + libusb_exit(NULL); + printf("Cleanup complete.\n"); + return r; +} + +void print_usage(const char *prog_name) { + fprintf(stderr, "Usage: %s -r --playback-pipe \n", prog_name); + fprintf(stderr, " -r : Set sample rate. Supported: 44100, 48000, 88200, 96000.\n"); + fprintf(stderr, " --playback-pipe : Path to the named pipe for audio playback.\n"); +} + +static void LIBUSB_CALL feedback_callback(struct libusb_transfer *transfer) { + if (!is_running) return; + if (transfer->status == LIBUSB_TRANSFER_COMPLETED) { + if (is_running) libusb_submit_transfer(transfer); + } +} + +static void LIBUSB_CALL iso_playback_callback(struct libusb_transfer *transfer) { + if (!is_running) return; + if (transfer->status != LIBUSB_TRANSFER_COMPLETED && transfer->status != LIBUSB_TRANSFER_CANCELLED) { + fprintf(stderr, "Playback callback error (EP 0x%02x): %s\n", transfer->endpoint, libusb_error_name(transfer->status)); + is_running = false; + return; + } + + struct stream_state *state = transfer->user_data; + int total_frames = transfer->length / DEVICE_FRAME_SIZE; + int bytes_to_read_from_fifo = total_frames * PIPE_FRAME_SIZE; + unsigned char source_buf[bytes_to_read_from_fifo]; + + ssize_t n = read(state->playback_fifo_fd, source_buf, bytes_to_read_from_fifo); + + unsigned char *device_buf = transfer->buffer; + if (n > 0) { + int frames_read = n / PIPE_FRAME_SIZE; + unsigned char *src = source_buf; + for (int i = 0; i < frames_read; i++) { + memcpy(device_buf, src, PIPE_FRAME_SIZE); + memset(device_buf + PIPE_FRAME_SIZE, 0, PIPE_FRAME_SIZE); + device_buf += DEVICE_FRAME_SIZE; + src += PIPE_FRAME_SIZE; + } + if (n < bytes_to_read_from_fifo) { + memset(device_buf, 0, transfer->length - (frames_read * DEVICE_FRAME_SIZE)); + } + } else { + memset(transfer->buffer, 0, transfer->length); + } + + if (is_running && libusb_submit_transfer(transfer) < 0) { + fprintf(stderr, "Error resubmitting playback transfer\n"); + is_running = false; + } +} + +int perform_initialization_sequence(libusb_device_handle *handle, int rate) { + unsigned char buf[64]; int r; + unsigned char rate_data[3]; + uint16_t rate_vendor_wValue; + + switch(rate) { + case 44100: memcpy(rate_data, (unsigned char[]){0x44, 0xac, 0x00}, 3); rate_vendor_wValue = 0x1000; break; + case 48000: memcpy(rate_data, (unsigned char[]){0x80, 0xbb, 0x00}, 3); rate_vendor_wValue = 0x1002; break; + case 88200: memcpy(rate_data, (unsigned char[]){0x88, 0x58, 0x01}, 3); rate_vendor_wValue = 0x1008; break; + case 96000: memcpy(rate_data, (unsigned char[]){0x00, 0x77, 0x01}, 3); rate_vendor_wValue = 0x100a; break; + default: fprintf(stderr, "Invalid sample rate for initialization.\n"); return -1; + } + + printf("\n--- STARTING DEVICE CONFIGURATION (per Spec v5.0) ---\n"); + + #define CHECK(desc, call) \ + r = (call); \ + if (r < 0) { fprintf(stderr, " [FAIL] %s: %s\n", desc, libusb_error_name(r)); return -1; } \ + else { printf(" [OK] %s (returned %d)\n", desc, r); } + + printf(" [INFO] Step 1: Set Interfaces (already done in main, re-verifying)\n"); + r = libusb_set_configuration(handle, 1); + if (r < 0 && r != LIBUSB_ERROR_BUSY) { fprintf(stderr, " [FAIL] Set Configuration 1: %s\n", libusb_error_name(r)); return -1; } + for (int i=0; i<=1; i++) { + r = libusb_claim_interface(handle, i); + if (r < 0) { fprintf(stderr, " [FAIL] Claim Interface %d: %s\n", i, libusb_error_name(r)); return -1; } + r = libusb_set_interface_alt_setting(handle, i, 1); + if (r < 0) { fprintf(stderr, " [FAIL] Set Alt Setting on Intf %d: %s\n", i, libusb_error_name(r)); return -1; } + } + printf(" [OK] Step 1: Interfaces set and claimed.\n"); + + printf("\n-- Step 2: Initial Handshake --\n"); + CHECK("Status Check", libusb_control_transfer(handle, RT_D2H_VENDOR_DEV, VENDOR_REQ_MODE_CONTROL, 0x0000, 0x0000, buf, 1, USB_TIMEOUT)); + + printf("\n-- Step 3: Set Initial Mode --\n"); + CHECK("Set Initial Mode", libusb_control_transfer(handle, RT_H2D_VENDOR_DEV, VENDOR_REQ_MODE_CONTROL, 0x0010, 0x0000, NULL, 0, USB_TIMEOUT)); + + printf("\n-- Step 4: Set Sample Rate to %d Hz --\n", rate); + // We still set the capture rate, as the device expects it as part of the sequence. + CHECK("Set Rate on Capture EP (0x86)", libusb_control_transfer(handle, RT_H2D_CLASS_EP, UAC_SET_CUR, UAC_SAMPLING_FREQ_CONTROL, 0x86, rate_data, 3, USB_TIMEOUT)); + CHECK("Set Rate on Playback EP (0x02)", libusb_control_transfer(handle, RT_H2D_CLASS_EP, UAC_SET_CUR, UAC_SAMPLING_FREQ_CONTROL, EP_AUDIO_OUT, rate_data, 3, USB_TIMEOUT)); + + printf("\n-- Step 5: Configure Internal Registers --\n"); + CHECK("Reg Write 1 (0x0d04)", libusb_control_transfer(handle, RT_H2D_VENDOR_DEV, VENDOR_REQ_REGISTER_WRITE, 0x0d04, 0x0101, NULL, 0, USB_TIMEOUT)); + CHECK("Reg Write 2 (0x0e00)", libusb_control_transfer(handle, RT_H2D_VENDOR_DEV, VENDOR_REQ_REGISTER_WRITE, 0x0e00, 0x0101, NULL, 0, USB_TIMEOUT)); + CHECK("Reg Write 3 (0x0f00)", libusb_control_transfer(handle, RT_H2D_VENDOR_DEV, VENDOR_REQ_REGISTER_WRITE, 0x0f00, 0x0101, NULL, 0, USB_TIMEOUT)); + CHECK("Reg Write 4 (Rate-Dep)", libusb_control_transfer(handle, RT_H2D_VENDOR_DEV, VENDOR_REQ_REGISTER_WRITE, rate_vendor_wValue, 0x0101, NULL, 0, USB_TIMEOUT)); + CHECK("Reg Write 5 (0x110b)", libusb_control_transfer(handle, RT_H2D_VENDOR_DEV, VENDOR_REQ_REGISTER_WRITE, 0x110b, 0x0101, NULL, 0, USB_TIMEOUT)); + + printf("\n-- Step 6: Enable Streaming --\n"); + CHECK("Enable Streaming", libusb_control_transfer(handle, RT_H2D_VENDOR_DEV, VENDOR_REQ_MODE_CONTROL, 0x0030, 0x0000, NULL, 0, USB_TIMEOUT)); + + printf("\n--- CONFIGURATION COMPLETE ---\n\n"); + return 0; +}