This can be a transaction with three P2WPKH (native segwit v0 single-sig) inputs and a single P2WPKH output. For P2WPKH, the scriptPubKey (the locking script encoded in an output) accommodates a witness program that commits to the hash of a public key. The witness within the enter due to this fact reveals the corresponding pre-image of the hash within the type of the general public key (33 bytes) and offers the suitable signature of 71 or 72 bytes. As every enter should have a witness (if there may be no less than one segwit enter), there are three witnesses with these two objects every. For instance the witness for the primary enter (labeled as place 0) is proven within the following two traces of your knowledge:
Witness 0 0 71 010F0EC3631C1100B7C9646F5537BFE4E71244298800B25BC7ED01C0CDF2B1C87B2002C1AF1677EA1F6375D85D865AF096D083E05F85F45148A3FE02F986E91B10EF0620024430  
Witness 0 1 33 A0AA4C55C7A3F7ABAB5C96F98906A3025BA57D3CFA7620CC2331B140FC75058D02  
This reads as zeroth witness, zeroth witness merchandise, 71-byte size, signature, zeroth witness, first merchandise, 33-byte size, pubkey.
The info dump is a bit bizarre right here, in that the witness seems to be offered in little-endian and it enumerates the witness positions and witness merchandise positions which doesn’t seem within the uncooked transaction in that kind.
Let’s take a step again and strategy from the uncooked transaction. (I’ve added ‘||’ earlier than the witness block, between the witnesses, and after the witness block. I’ve additionally marked the zeroth witness as daring).
02000000000103cd35e9b0504771fc8028d5d405d5867729bcf070481289a3fdcfba8c7eb8fd1b3b000000171600145f0027223b0d4cc9bb989c362925a2fc26a96e1afdffffffd874070417b054954995eb10c4b9d675eb1b88dcf6569b505f70dfc6662afe610100000017160014f3588696f6e42ac1c399d05807a612de740f8377fdffffff11545641a2ad80a790769e82f06f9715e5ada5ea14fefb2b9b10ecda06bdde2200000000171600148e7dba421fc81c5bff2ff17aef429c6175cf72eefdffffff011e0e1800000000001600149a72fc82f598fde0960331476c3e437e924c2d96||02473044022006ef101be986f902fea34851f4855fe083d096f05a865dd875631fea7716afc102207bc8b1f2cdc001edc75bb20088294412e7e4bf37556f64c9b700111c63c30e0f0121028d0575fc40b13123cc2076fa3c7da55b02a30689f9965cababf7a3c7554caaa0||024730440220077b056bfabae6d0582e3bad7bb7f812578da62c2bc2bc552fd6e206f45706fd02200d58605f230b54e9124544159989b8fcf351ab2aad1d848e26c995a88e7507eb012103f5bbc50b07bf683779f6c39d6dd37095720b6aa0aa32f11e89fecc3e72141e0c||0247304402204e3f87964eaa81e6491f609b1dafbb80e9f4fb20fb5fb9324c6c2f95e6b73d3202200f927b240c030e2196f315e124b08e97bd2a789cdd632ecaa7be93144a0493820121023471f5ce9d0418d6b2344b87ec4930f5a4899c118eb2d64fac1a1a26656ad7e5||01270a00
Choosing the zeroth witness aside now we have the next objects:
02 ⇐ merchandise depend (0x02: witness has two objects)
47 ⇐ size of first merchandise  (0x47: signature is 71 bytes)
3044022006ef101be986f902fea34851f4855fe083d096f05a865dd875631fea7716afc102207bc8b1f2cdc001edc75bb20088294412e7e4bf37556f64c9b700111c63c30e0f01 ⇐ signature
21 ⇐ size of second merchandise (0x21: pubkey is 33 bytes)
028d0575fc40b13123cc2076fa3c7da55b02a30689f9965cababf7a3c7554caaa0 ⇐ pubkey
When investigating transaction particulars, chances are you’ll discover it useful to use the expanded view on a blockexplorer that will help you determine the place what a part of the transaction begins.

by way of blockstream.information
You’ll find extra particulars about P2WPKH inputs in What’s the dimension and weight of a P2WPKH enter?.

