What are the slice acquisition times for this scan?

In [1]:
%pylab inline
import matplotlib.pyplot as plt
Welcome to pylab, a matplotlib-based Python environment [backend: module://IPython.kernel.zmq.pylab.backend_inline].
For more information, type 'help(pylab)'.

We have just acquired some data from our Siemens scanner.

Like nearly all data from the scanner, the data arrives as a DICOM file.

http://en.wikipedia.org/wiki/DICOM

These files are famously complicated, and differ a great deal between manufacturers.

We thought we had acquired our data as ascending slices - that is, slice 0 (in space, the bottom slice) first then slice 1 (in space, the second-from-bottom slice) and so on.

But we believe in documenting our analysis, and reproducible research:

http://reproducibleresearch.net/index.php/Main_Page

At very least we want to be able to show our friends and colleagues that we did it right.

So, we need to show why we think this data set had ascending slice timing. Or some other slice timing - maybe we made a mistake.

The file we need is http://nipy.bic.berkeley.edu/practical_neuroimaging/phantom.MR.phantom.2.1.20091020.172423.14b7atp.dcm . Download to the directory containing this notebook.

Did I mention - DICOM is complicated. Like many complicated things, it is also confusing. Here's a head start.

First we import the library that reads DICOM images in Python. This is to test that we have it.

In [2]:
import dicom

If the above command didn't work, try (from the terminal): easy_install pydicom. Then try import dicom again. Then email the list and / or come to office hours

Now let's look at the DICOM file we have.

In [3]:
fname = 'phantom.MR.phantom.2.1.20091020.172423.14b7atp.dcm'
In [4]:
dcm_data = dicom.read_file(fname)

I believe there is nothing relevant to slice timing in the basic DICOM information, but here is what the basic information looks like:

In [5]:
dcm_data
Out[5]:
(0008, 0005) Specific Character Set              CS: 'ISO_IR 100'
(0008, 0008) Image Type                          CS: ['ORIGINAL', 'PRIMARY', 'M', 'ND', 'MOSAIC']
(0008, 0012) Instance Creation Date              DA: '20091020'
(0008, 0013) Instance Creation Time              TM: '173048.125000'
(0008, 0016) SOP Class UID                       UI: MR Image Storage
(0008, 0018) SOP Instance UID                    UI: 1.3.12.2.1107.5.2.32.35139.2009102017281593700054200
(0008, 0020) Study Date                          DA: '20091020'
(0008, 0021) Series Date                         DA: '20091020'
(0008, 0022) Acquisition Date                    DA: '20091020'
(0008, 0023) Content Date                        DA: '20091020'
(0008, 0030) Study Time                          TM: '172423.578000'
(0008, 0031) Series Time                         TM: '173048.125000'
(0008, 0032) Acquisition Time                    TM: '172807.690000'
(0008, 0033) Content Time                        TM: '173048.125000'
(0008, 0050) Accession Number                    SH: ''
(0008, 0060) Modality                            CS: 'MR'
(0008, 0070) Manufacturer                        LO: 'SIEMENS'
(0008, 0080) Institution Name                    LO: 'AIRC'
(0008, 0081) Institution Address                 ST: 'None'
(0008, 0090) Referring Physician's Name          PN: 'phantom'
(0008, 1010) Station Name                        SH: 'MRC35139'
(0008, 1030) Study Description                   LO: 'phantom'
(0008, 103e) Series Description                  LO: 'ep2d_bold'
(0008, 1050) Performing Physician's Name         PN: 'phantom'
(0008, 1070) Operators' Name                     PN: 'phantom'
(0008, 1090) Manufacturer's Model Name           LO: 'TrioTim'
(0008, 1140)  Referenced Image Sequence   3 item(s) ---- 
   (0008, 1150) Referenced SOP Class UID            UI: MR Image Storage
   (0008, 1155) Referenced SOP Instance UID         UI: 1.3.12.2.1107.5.2.32.35139.2009102017265699489354071
   ---------
   (0008, 1150) Referenced SOP Class UID            UI: MR Image Storage
   (0008, 1155) Referenced SOP Instance UID         UI: 1.3.12.2.1107.5.2.32.35139.2009102017265987503554075
   ---------
   (0008, 1150) Referenced SOP Class UID            UI: MR Image Storage
   (0008, 1155) Referenced SOP Instance UID         UI: 1.3.12.2.1107.5.2.32.35139.2009102017270275512854079
   ---------
(0010, 0010) Patient's Name                      PN: 'phantom'
(0010, 0020) Patient ID                          LO: 'phantom'
(0010, 0030) Patient's Birth Date                DA: '19841020'
(0010, 0040) Patient's Sex                       CS: 'O'
(0010, 1010) Patient's Age                       AS: '025Y'
(0010, 1030) Patient's Weight                    DS: '45.35924277'
(0010, 4000) Patient Comments                    LT: 'Project: DCMPHANTOM; Subject: PHANTOM003; Session: 1'
(0018, 0020) Scanning Sequence                   CS: 'EP'
(0018, 0021) Sequence Variant                    CS: 'SK'
(0018, 0022) Scan Options                        CS: ['PFP', 'FS']
(0018, 0023) MR Acquisition Type                 CS: '2D'
(0018, 0024) Sequence Name                       SH: '*epfid2d1_128'
(0018, 0025) Angio Flag                          CS: 'N'
(0018, 0050) Slice Thickness                     DS: '4'
(0018, 0080) Repetition Time                     DS: '8000'
(0018, 0081) Echo Time                           DS: '22'
(0018, 0083) Number of Averages                  DS: '1'
(0018, 0084) Imaging Frequency                   DS: '123.250707'
(0018, 0085) Imaged Nucleus                      SH: '1H'
(0018, 0086) Echo Number(s)                      IS: '1'
(0018, 0087) Magnetic Field Strength             DS: '3'
(0018, 0088) Spacing Between Slices              DS: '3.9999998910086'
(0018, 0089) Number of Phase Encoding Steps      IS: '95'
(0018, 0091) Echo Train Length                   IS: '1'
(0018, 0093) Percent Sampling                    DS: '100'
(0018, 0094) Percent Phase Field of View         DS: '100'
(0018, 0095) Pixel Bandwidth                     DS: '1700'
(0018, 1000) Device Serial Number                LO: '35139'
(0018, 1020) Software Version(s)                 LO: 'syngo MR B15'
(0018, 1030) Protocol Name                       LO: 'ep2d_bold'
(0018, 1251) Transmit Coil Name                  SH: 'Body'
(0018, 1310) Acquisition Matrix                  US: [128, 0, 0, 128]
(0018, 1312) In-plane Phase Encoding Direction   CS: 'COL'
(0018, 1314) Flip Angle                          DS: '75'
(0018, 1315) Variable Flip Angle Flag            CS: 'N'
(0018, 1316) SAR                                 DS: '0.01874308641789'
(0018, 1318) dB/dt                               DS: '0'
(0018, 5100) Patient Position                    CS: 'HFS'
(0019, 0010) Private Creator                     LO: 'SIEMENS MR HEADER'
(0019, 1008) [CSA Image Header Type]             UN: 'IMAGE NUM 4 '
(0019, 1009) [CSA Image Header Version ??]       UN: '1.0 '
(0019, 100a) [NumberOfImagesInMosaic]            UN: '$\x00'
(0019, 100b) [SliceMeasurementDuration]          UN: '32.5'
(0019, 100f) [GradientMode]                      UN: 'Fast'
(0019, 1011) [FlowCompensation]                  UN: 'No'
(0019, 1012) [TablePositionOrigin]               UN: '\x00\x00\x00\x00\x00\x00\x00\x00\x11\xfb\xff\xff'
(0019, 1013) [ImaAbsTablePosition]               UN: '\x00\x00\x00\x00\x00\x00\x00\x00\x11\xfb\xff\xff'
(0019, 1014) [ImaRelTablePosition]               UN: '0\\0\\0 '
(0019, 1015) [SlicePosition_PCS]                 UN: '~\xd7o?\x83w\x86\xc031\xc0\xb2`t\x86\xc0R0\x00\xe0ZLT\xc0'
(0019, 1016) [TimeAfterStart]                    UN: '1.105 '
(0019, 1017) [SliceResolution]                   UN: '1 '
(0019, 1018) [RealDwellTime]                     UN: '2300'
(0019, 1028) [BandwidthPerPixelPhaseEncode]      UN: '\x85\xebQ\xb8\x1e\xa56@'
(0019, 1029) [MosaicRefAcqTimes]                 UN: '\xcc\xab\x00\x00\x00D\x91@\x00\x00\x00\x00\x00\x00\x00\x00\xcc\xab\x00\x00\x00>\x92@\x00\x00\x00\x00\x00@O@\xcc\xab\x00\x00\x00.\x93@\x00\x00\x00\x00\x00@_@\xcc\xab\x00\x00\x00(\x94@\x00\x00\x00\x00\x00 g@\xcc\xab\x00\x00\x00\x18\x95@\x00\x00\x00\x00\x00\xf0n@\xcc\xab\x00\x00\x00\x12\x96@\x00\x00\x00\x00\x008s@\xcc\xab\x00\x00\x00\x0c\x97@\x00\x00\x00\x00\x00 w@\x00\x00\x00\x00\x00\xfc\x97@d^\x05\x00\x00\xe0z@\x00\x00\x00\x00\x00\xf6\x98@d^\x05\x00\x00\xc8~@\x00\x00\x00\x00\x00\xe6\x99@2\xaf\x02\x00\x00D\x81@\x00\x00\x00\x00\x00\xe0\x9a@2\xaf\x02\x00\x008\x83@\x00\x00\x00\x00\x00\xd0\x9b@2\xaf\x02\x00\x00\x18\x85@\x00\x00\x00\x00\x00\xca\x9c@2\xaf\x02\x00\x00\x0c\x87@\x00\x00\x00\x00\x00\xba\x9d@2\xaf\x02\x00\x00\x00\x89@\x00\x00\x00\x00\x00\xb4\x9e@2\xaf\x02\x00\x00\xe0\x8a@4T\xff\xff\xff\xa3\x9f@2\xaf\x02\x00\x00\xd4\x8c@\x1a\xaa\xff\xff\xffN\xa0@\x99W\x01\x00\x00\xb4\x8e@\xcc\xab\x00\x00\x00\xc7\xa0@\xcc\xab\x00\x00\x00T\x90@'
(0020, 000d) Study Instance UID                  UI: 1.2.276.0.7230010.3.1.2.8323329.420.1337202999.953689
(0020, 000e) Series Instance UID                 UI: 1.3.12.2.1107.5.2.32.35139.2009102017273648788954084.0.0.0
(0020, 0010) Study ID                            SH: '1'
(0020, 0011) Series Number                       IS: '2'
(0020, 0012) Acquisition Number                  IS: '1'
(0020, 0013) Instance Number                     IS: '1'
(0020, 0032) Image Position (Patient)            DS: ['-718.93908584118', '-718.54721593857', '-81.193046569824']
(0020, 0037) Image Orientation (Patient)         DS: ['1', '0', '0', '0', '1', '0']
(0020, 0052) Frame of Reference UID              UI: 1.3.12.2.1107.5.2.32.35139.1.20091020172610578.0.0.0
(0020, 1040) Position Reference Indicator        LO: ''
(0020, 1041) Slice Location                      DS: '-81.193046569824'
(0028, 0002) Samples per Pixel                   US: 1
(0028, 0004) Photometric Interpretation          CS: 'MONOCHROME2'
(0028, 0010) Rows                                US: 768
(0028, 0011) Columns                             US: 768
(0028, 0030) Pixel Spacing                       DS: ['1.875', '1.875']
(0028, 0100) Bits Allocated                      US: 16
(0028, 0101) Bits Stored                         US: 12
(0028, 0102) High Bit                            US: 11
(0028, 0103) Pixel Representation                US: 0
(0028, 0106) Smallest Image Pixel Value          US: 0
(0028, 0107) Largest Image Pixel Value           US: 4095
(0028, 1050) Window Center                       DS: '1115'
(0028, 1051) Window Width                        DS: '3727'
(0028, 1055) Window Center & Width Explanation   LO: 'Algo1'
(0029, 0010) Private Creator                     LO: 'SIEMENS CSA HEADER'
(0029, 0011) Private Creator                     LO: 'SIEMENS MEDCOM HEADER2'
(0029, 1008) [CSA Image Header Type]             UN: 'IMAGE NUM 4 '
(0029, 1009) [CSA Image Header Version]          UN: '20091020'
(0029, 1010) [CSA Image Header Info]             UN: 'SV10\x04\x03\x02\x01R\x00\x00\x00M\x00\x00\x00EchoLinePosition\x00 {\n    \n    <ParamBool."IsInlineComposed"> \n   \x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x0064      \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00EchoColumnPosition\x00Protocol"" \n    401 ""Step"" \n    402 ""Inlin\x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x0064      \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00EchoPartitionPosition\x00p at the end of the list.\\nPress the - but\x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x0032      \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00UsedChannelMask\x00 ""Defines the composing algorithm to be used.""\x01\x00\x00\x00UL\x00\x00\t\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x004095    \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00Actual3DImaPartNumber\x00" \n    424 ""On"" \n    425 ""Off"" \n    42\x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00ICE_Dims\x00  446 ""Spine"" \n  }\n  \n  <ParamMap.""""> \n  {\n    \n   \x01\x00\x00\x00LO\x00\x00\x13\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x1d\x00\x00\x00\x1d\x00\x00\x00M\x00\x00\x00\x1d\x00\x00\x00X_1_1_1_1_1_1_19_1_1_1_1_504\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00B_value\x00    \n        <ParamString.""CodingSchemeVersion""> \n    \x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00Filter1\x00       \n        <ParamString.""CodingSchemeVersion""> \n \x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00Filter2\x00Label> ""Multistep Protocol"" \n        <Tooltip> ""Enabl\x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00ProtocolSliceNumber\x00the end of the list.\\nPress the - button to \x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00RealDwellTime\x00 <LimitRange> { ""false"" ""true"" }\n      }\n     \x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x002300    \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00PixelFile\x00posed."" \n        <Default> 1 \n        <LimitRange> { \x01\x00\x00\x00UN\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00PixelFileName\x00{\n        <Label> ""Composing Function"" \n        \x01\x00\x00\x00UN\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00SliceMeasurementDuration\x00 <LimitRange> { ""false"" ""true"" }\n  \x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x0c\x00\x00\x00\x0c\x00\x00\x00M\x00\x00\x00\x0c\x00\x00\x0032.50000000\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00SequenceMask\x00abel> ""Prio Recon"" \n          <Tooltip> ""Enables\x01\x00\x00\x00UL\x00\x00\t\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\n\x00\x00\x00\n\x00\x00\x00M\x00\x00\x00\n\x00\x00\x00134217728\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00AcquisitionMatrixText\x00}\n        \n        <ParamBool.""PreSoundOn\x01\x00\x00\x00SH\x00\x00\x16\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00128p*128\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00MeasuredFourierLines\x00     <MaxSize> 1000000000 \n        }\n      \x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00FlowEncodingDirection\x00utoTransfer""> \n        {\n          <Limit\x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00FlowVenc\x00        <Label> ""Load to filming"" \n          <Default\x01\x00\x00\x00FD\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00PhaseEncodingDirectionPositive\x00{\n          <Label> ""Load to sta\x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x001       \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00NumberOfImagesInMosaic\x00        \n        <ParamChoice.""GraphicSe\x01\x00\x00\x00US\x00\x00\n\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x0036      \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00DiffusionGradientDirection\x00el> ""Inline movie"" \n          <Limi\x03\x00\x00\x00FD\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00ImageGroup\x00     <Label> ""Auto close inline display"" \n         \x01\x00\x00\x00US\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00SliceNormalVector\x00   {\n          <Limit> { ""All"" ""Sag"" ""Cor\x03\x00\x00\x00FD\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x00\x0b\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x000.00000000\x00\x00\x0b\x00\x00\x00\x0b\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x000.00000000\x00\x00\x0b\x00\x00\x00\x0b\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x001.00000000\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00DiffusionDirectionality\x00 ""false"" ""true"" }\n        }\n      }\n\x01\x00\x00\x00CS\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00TimeAfterStart\x00""On"" }\n        }\n        \n        <ParamBool.""\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x00\x0b\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x001.10500000\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00FlipAngle\x00art"" \n          <MinSize> 1 \n          <MaxSize> 1000\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00SequenceName\x00ption""> \n        {\n          <Label> ""Description\x01\x00\x00\x00SH\x00\x00\x16\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00RepetitionTime\x00l.""CopyPhaseEncDir""> \n        {\n          <Labe\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00EchoTime\x00Step""> \n        {\n          <Label> ""IgnoreLastStep""\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00NumberOfAverages\x00ong.""inline_posdisp_can_set""> \n      {\n      \x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00VoxelThickness\x00        }\n        { 364  }\n        \n      }\n     \x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00VoxelPhaseFOV\x00 {\n        <MinSize> 1 \n        <MaxSize> 10000000\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00VoxelReadoutFOV\x00      }\n        { ""%SiemensSeq%\\ep2d_diff""  }\n\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00VoxelPositionSag\x00ut.""Multistep""> \n  {\n    ""LAYOUT_10X2_WIDE_C\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00VoxelPositionCor\x00Step.IsLastStep"" 110 93 ""UI_CHECKBOX"" \n    "\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00VoxelPositionTra\x00 \n    ""MultiStep.ComposingFunction"" 77 63 ""U\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00VoxelNormalSag\x00tep"" ""MultiStep.SubStep"" ""MultiStep.IsInlineC\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00VoxelNormalCor\x00osingGroup"" ""MultiStep.IsLastStep"" <Context> "\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00VoxelNormalTra\x00ep""> {""MultiStep.IsMultistep"" ""MultiStep.IsIn\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00VoxelInPlaneRot\x00ineCompose"" ""MultiStep.IsInlineCombine"" <Dll>\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00ImagePositionPatient\x00LINE"" }\n  <Dependency.""MrMS_DH_InlineComb\x03\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00ImageOrientationPatient\x00sLastStep"" ""MultiStep.IsMultistep"" ""\x06\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00PixelSpacing\x00s.AutoLoad.LoadToFilming"" ""Properties.AutoLoad.Lo\x02\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00SliceLocation\x00ion.recon_prio"" ""PerformanceCache.recon_prio_can\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00SliceThickness\x00"> {""MultiStep.TpPosMode"" <Dll> ""MrMultiStepDe\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00SpectrumTextRegionLabel\x00oGraphic"" ""Properties.AutoLoad.Graphic\x01\x00\x00\x00SH\x00\x00\x16\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00Comp_Algorithm\x00rientation"" ""Properties.AutoLoad.DisableAutoTra\x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00Comp_Blended\x00"" <Context> ""ONLINE"" }\n  <Dependency.""Sound_UI"\x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00Comp_ManualAdjusted\x00operties.Sound.PreSoundOn"" ""Properties.Sou\x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00Comp_AutoParam\x00ies"" <Context> ""ONLINE"" }\n  \n}\n\n<XProtocol> \n{\x01\x00\x00\x00LT\x00\x00\x14\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00Comp_AdjustedParam\x00"WATERMARK"">  { 16  }\n      <ParamString.""t\x01\x00\x00\x00LT\x00\x00\x14\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00Comp_JobID\x00"class MrPtr<class MiniHeader,class Parc::Component> \x01\x00\x00\x00LT\x00\x00\x14\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00FMRIStimulInfo\x00tiIcePostProcFunctor""> \n      {\n        <Class> \x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00FlowEncodingDirectionString\x00""NoOfDirections4FirstBValue"">  { }\x01\x00\x00\x00SH\x00\x00\x16\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00RepetitionTimeEffective\x00amBool.""AverageADCMap"">  { }\n        <\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00CsiImagePositionPatient\x00Bool.""E1-E2"">  { }\n        <ParamBool.\x03\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00CsiImageOrientationPatient\x00.""ComputeImage"">  { ""int32_t"" ""c\x06\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00CsiPixelSpacing\x00eReady"" ""DtiIcePostProcMosaicDecorator"" ""Com\x02\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00CsiSliceLocation\x00onMaps"">  { }\n        <Event.""ImageReady"">  \x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00CsiSliceThickness\x00.""connection0"">  { ""ImageReady"" ""SendImag\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00OriginalSeriesNumber\x00Image0                         = ""1.3.12.2\x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00OriginalImageNumber\x00\nucTablePositioningMode                   = \x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00ImaAbsTablePosition\x00.lMaximumNofRxReceiverChannels = 32\nsGRADSPE\x03\x00\x00\x00SL\x00\x00\x07\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00-1263   \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00NonPlanarImage\x00DSPEC.sEddyCompensationX.aflTimeConstant[0] = 1.8\x01\x00\x00\x00US\x00\x00\n\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00MoCoQMeasure\x000] = 0.000483516\nsGRADSPEC.sEddyCompensationY.aflAm\x01\x00\x00\x00US\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00LQAlgorithm\x00ationY.aflTimeConstant[1] = 0.30294\nsGRADSPEC.sEddyC\x01\x00\x00\x00SH\x00\x00\x16\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00SlicePosition_PCS\x00.sEddyCompensationZ.aflAmplitude[2] = 0.000940\x03\x00\x00\x00FD\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x0e\x00\x00\x00\x0e\x00\x00\x00M\x00\x00\x00\x0e\x00\x00\x00-718.93908584\x00\x00\x00\x0e\x00\x00\x00\x0e\x00\x00\x00M\x00\x00\x00\x0e\x00\x00\x00-718.54721594\x00\x00\x00\r\x00\x00\x00\r\x00\x00\x00M\x00\x00\x00\r\x00\x00\x00-81.19304657\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00RBMoCoTrans\x00 = 0.115284\nsGRADSPEC.sEddyCompensationZ.aflTimeCons\x03\x00\x00\x00FD\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00RBMoCoRot\x00000857887\nsGRADSPEC.sB0CompensationX.aflTimeConstant[0\x03\x00\x00\x00FD\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00MultistepIndex\x000191413\nsGRADSPEC.sB0CompensationY.aflTimeConstan\x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00ImaRelTablePosition\x00444\nsGRADSPEC.sB0CompensationZ.aflTimeConsta\x03\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00ImaCoilString\x00nstant[0] = 0.394041\nsGRADSPEC.sCrossTermCompensat\x01\x00\x00\x00LO\x00\x00\x13\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\n\x00\x00\x00\n\x00\x00\x00M\x00\x00\x00\n\x00\x00\x00T:HEA;HEP\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00RFSWDDataType\x00.00018441\nsGRADSPEC.sCrossTermCompensationYZ.aflTi\x01\x00\x00\x00SH\x00\x00\x16\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\n\x00\x00\x00\n\x00\x00\x00M\x00\x00\x00\n\x00\x00\x00predicted\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00GSWDDataType\x00\x00\x00\x00\x04\x00\x00\x00\x01\x00\x00\x00\xf4B\xb4\t\x04=\x93o\x00\x00\x00\x00\x01\x00\x00\x00\x94B\xb4\txY\x08\x0e\x94\xa26H0C\xb4\t\x80\xa26H\x00\x00\x00\x00\x01\x00\x00\x00SH\x00\x00\x16\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\n\x00\x00\x00\n\x00\x00\x00M\x00\x00\x00\n\x00\x00\x00predicted\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00NormalizeManipulated\x00\xa26H\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x90+\xb4\t\x00\x00\x00\x00\x00\x00\x00\x00\\D\xb4\t\x00\x00\x00\x00$D\xb4\t\x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00ImaPATModeText\x00 2.0.48266815 2.0.48266833 2.0.48266851 2.0.48266\x01\x00\x00\x00LO\x00\x00\x13\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00M\x00\x00\x00\x03\x00\x00\x00p2\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00B_matrix\x0048267265 2.0.48267283 2.0.48267301 2.0.48267319 2.0.482\x06\x00\x00\x00FD\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00BandwidthPerPixelPhaseEncode\x00751 2.0.48267769 2.0.48267787 2.0.4\x01\x00\x00\x00FD\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x0c\x00\x00\x00\x0c\x00\x00\x00M\x00\x00\x00\x0c\x00\x00\x0022.64500000\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00FMRIStimulLevel\x0068201 2.0.48268219 2.0.48268237 2.0.48268255 2.0\x01\x00\x00\x00FD\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00MosaicRefAcqTimes\x0068669 2.0.48268687 2.0.48268705 2.0.48268723 2\x00\x00\x00\x00FD\x00\x00\x04\x00\x00\x00$\x00\x00\x00M\x00\x00\x00\x0e\x00\x00\x00\x0e\x00\x00\x00M\x00\x00\x00\x0e\x00\x00\x001105.00000001\x00\x00\x00\x0b\x00\x00\x00\x0b\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x000.00000000\x00\x00\x0e\x00\x00\x00\x0e\x00\x00\x00M\x00\x00\x00\x0e\x00\x00\x001167.50000001\x00\x00\x00\x0c\x00\x00\x00\x0c\x00\x00\x00M\x00\x00\x00\x0c\x00\x00\x0062.50000000\x00\x0e\x00\x00\x00\x0e\x00\x00\x00M\x00\x00\x00\x0e\x00\x00\x001227.50000001\x00\x00\x00\r\x00\x00\x00\r\x00\x00\x00M\x00\x00\x00\r\x00\x00\x00125.00000000\x00\x00\x00\x00\x0e\x00\x00\x00\x0e\x00\x00\x00M\x00\x00\x00\x0e\x00\x00\x001290.00000001\x00\x00\x00\r\x00\x00\x00\r\x00\x00\x00M\x00\x00\x00\r\x00\x00\x00185.00000000\x00\x00\x00\x00\x0e\x00\x00\x00\x0e\x00\x00\x00M\x00\x00\x00\x0e\x00\x00\x001350.00000001\x00\x00\x00\r\x00\x00\x00\r\x00\x00\x00M\x00\x00\x00\r\x00\x00\x00247.50000000\x00\x00\x00\x00\x0e\x00\x00\x00\x0e\x00\x00\x00M\x00\x00\x00\x0e\x00\x00\x001412.50000001\x00\x00\x00\r\x00\x00\x00\r\x00\x00\x00M\x00\x00\x00\r\x00\x00\x00307.50000000\x00\x00\x00\x00\x0e\x00\x00\x00\x0e\x00\x00\x00M\x00\x00\x00\x0e\x00\x00\x001475.00000001\x00\x00\x00\r\x00\x00\x00\r\x00\x00\x00M\x00\x00\x00\r\x00\x00\x00370.00000000\x00\x00\x00\x00\x0e\x00\x00\x00\x0e\x00\x00\x00M\x00\x00\x00\x0e\x00\x00\x001535.00000000\x00\x00\x00\r\x00\x00\x00\r\x00\x00\x00M\x00\x00\x00\r\x00\x00\x00430.00000002\x00\x00\x00\x00\x0e\x00\x00\x00\x0e\x00\x00\x00M\x00\x00\x00\x0e\x00\x00\x001597.50000000\x00\x00\x00\r\x00\x00\x00\r\x00\x00\x00M\x00\x00\x00\r\x00\x00\x00492.50000002\x00\x00\x00\x00\x0e\x00\x00\x00\x0e\x00\x00\x00M\x00\x00\x00\x0e\x00\x00\x001657.50000000\x00\x00\x00\r\x00\x00\x00\r\x00\x00\x00M\x00\x00\x00\r\x00\x00\x00552.50000002\x00\x00\x00\x00\x0e\x00\x00\x00\x0e\x00\x00\x00M\x00\x00\x00\x0e\x00\x00\x001720.00000000\x00\x00\x00\r\x00\x00\x00\r\x00\x00\x00M\x00\x00\x00\r\x00\x00\x00615.00000002\x00\x00\x00\x00\x0e\x00\x00\x00\x0e\x00\x00\x00M\x00\x00\x00\x0e\x00\x00\x001780.00000000\x00\x00\x00\r\x00\x00\x00\r\x00\x00\x00M\x00\x00\x00\r\x00\x00\x00675.00000002\x00\x00\x00\x00\x0e\x00\x00\x00\x0e\x00\x00\x00M\x00\x00\x00\x0e\x00\x00\x001842.50000000\x00\x00\x00\r\x00\x00\x00\r\x00\x00\x00M\x00\x00\x00\r\x00\x00\x00737.50000002\x00\x00\x00\x00\x0e\x00\x00\x00\x0e\x00\x00\x00M\x00\x00\x00\x0e\x00\x00\x001902.50000000\x00\x00\x00\r\x00\x00\x00\r\x00\x00\x00M\x00\x00\x00\r\x00\x00\x00800.00000002\x00\x00\x00\x00\x0e\x00\x00\x00\x0e\x00\x00\x00M\x00\x00\x00\x0e\x00\x00\x001965.00000000\x00\x00\x00\r\x00\x00\x00\r\x00\x00\x00M\x00\x00\x00\r\x00\x00\x00860.00000002\x00\x00\x00\x00\x0e\x00\x00\x00\x0e\x00\x00\x00M\x00\x00\x00\x0e\x00\x00\x002024.99999999\x00\x00\x00\r\x00\x00\x00\r\x00\x00\x00M\x00\x00\x00\r\x00\x00\x00922.50000002\x00\x00\x00\x00\x0e\x00\x00\x00\x0e\x00\x00\x00M\x00\x00\x00\x0e\x00\x00\x002087.49999999\x00\x00\x00\r\x00\x00\x00\r\x00\x00\x00M\x00\x00\x00\r\x00\x00\x00982.50000001\x00\x00\x00\x00\x0e\x00\x00\x00\x0e\x00\x00\x00M\x00\x00\x00\x0e\x00\x00\x002147.50000002\x00\x00\x00\x0e\x00\x00\x00\x0e\x00\x00\x00M\x00\x00\x00\x0e\x00\x00\x001045.00000001\x00\x00\x00AutoInlineImageFilterEnabled\x00.48269155 2.0.48269173 2.0.48269191\x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00'
(0029, 1018) [CSA Series Header Type]            UN: 'MR'
(0029, 1019) [CSA Series Header Version]         UN: '20091020'
(0029, 1020) [CSA Series Header Info]            UN: 'SV10\x04\x03\x02\x018\x00\x00\x00M\x00\x00\x00UsedPatientWeight\x00\x00\x00\xd4\x04\x00\x00\x93\r\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa8\t\x00\x00h\x12\x00\x00\x02\x00\x00\x00,\x14\xe0\x02\x02\x00\x00\x00>\x14\xe0\x02\x02\x00\x00\x00\x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x0045      \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00NumberOfPrescans\x00\x18\xe0\x02\x02\x00\x00\x00\\\x18\xe0\x02\x02\x00\x00\x00n\x18\xe0\x02\x02\x00\x00\x00\x80\x18\xe0\x02\x02\x00\x00\x00\x92\x18\xe0\x02\x02\x00\x00\x00\xa4\x18\xe0\x02\x02\x00\x00\x00\x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00TransmitterCalibration\x00\x00,\x1e\xe0\x02\x02\x00\x00\x00>\x1e\xe0\x02\x02\x00\x00\x00P\x1e\xe0\x02\x02\x00\x00\x00b\x1e\xe0\x02\x02\x00\x00\x00t\x1e\xe0\x02\x02\x00\x00\x00\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\r\x00\x00\x00\r\x00\x00\x00M\x00\x00\x00\r\x00\x00\x00248.03391100\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00PhaseGradientAmplitude\x00\x00\xfc#\xe0\x02\x02\x00\x00\x00\x0e$\xe0\x02\x02\x00\x00\x00 $\xe0\x02\x02\x00\x00\x002$\xe0\x02\x02\x00\x00\x00D$\xe0\x02\x02\x00\x00\x00\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x00\x0b\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x000.00000000\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00ReadoutGradientAmplitude\x00)\xe0\x02\x02\x00\x00\x00\xde)\xe0\x02\x02\x00\x00\x00\xf0)\xe0\x02\x02\x00\x00\x00\x02*\xe0\x02\x02\x00\x00\x00\x82+\xe0\x02\x02\x00\x00\x00\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x00\x0b\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x000.00000000\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00SelectionGradientAmplitude\x00\x02\x02\x00\x00\x00\xae/\xe0\x02\x02\x00\x00\x00.1\xe0\x02\x02\x00\x00\x00@1\xe0\x02\x02\x00\x00\x00R1\xe0\x02\x02\x00\x00\x00\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x00\x0b\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x000.00000000\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00GradientDelayTime\x00\xe0\x02\x02\x00\x00\x00\xda6\xe0\x02\x02\x00\x00\x00\xec6\xe0\x02\x02\x00\x00\x00\xfe6\xe0\x02\x02\x00\x00\x00\x107\xe0\x02\x02\x00\x00\x00"7\xe0\x02\x02\x00\x00\x00\x03\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x0c\x00\x00\x00\x0c\x00\x00\x00M\x00\x00\x00\x0c\x00\x00\x0012.00000000\x00\x0c\x00\x00\x00\x0c\x00\x00\x00M\x00\x00\x00\x0c\x00\x00\x0014.00000000\x00\x0c\x00\x00\x00\x0c\x00\x00\x00M\x00\x00\x00\x0c\x00\x00\x0010.00000000\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00RfWatchdogMask\x00\x00\x98<\xe0\x02\x02\x00\x00\x00\xaa<\xe0\x02\x02\x00\x00\x00\xbc<\xe0\x02\x02\x00\x00\x00\xce<\xe0\x02\x02\x00\x00\x00\xe0<\xe0\x02\x02\x00\x00\x00\xf2<\xe0\x02\x02\x00\x00\x00\x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00RfPowerErrorIndicator\x00\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00SarWholeBody\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00Sed\x00y\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x11\x00\x00\x00\x11\x00\x00\x00M\x00\x00\x00\x11\x00\x00\x001000000.00000000\x00\x00\x00\x00\x0c\x00\x00\x00\x0c\x00\x00\x00M\x00\x00\x00\x0c\x00\x00\x0013.34799049\x00\x0c\x00\x00\x00\x0c\x00\x00\x00M\x00\x00\x00\x0c\x00\x00\x0013.34799049\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00SequenceFileOwner\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00SH\x00\x00\x16\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x08\x00\x00\x00\x08\x00\x00\x00M\x00\x00\x00\x08\x00\x00\x00SIEMENS\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00Stim_mon_mode\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x002       \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00Operation_mode_flag\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00dBdt_max\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x00\x0b\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x000.00000000\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00t_puls_max\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x00\x0b\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x000.00000000\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00dBdt_thresh\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x00\x0b\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x000.00000000\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00dBdt_limit\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x00\x0b\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x000.00000000\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00SW_korr_faktor\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x00\x0b\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x001.00000000\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00Stim_max_online\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x00\x0b\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x000.00000000\x00\x00\x0b\x00\x00\x00\x0b\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x000.00000000\x00\x00\x0b\x00\x00\x00\x0b\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x000.00000000\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00Stim_max_ges_norm_online\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x00\x0b\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x000.11274214\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00Stim_lim\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x0c\x00\x00\x00\x0c\x00\x00\x00M\x00\x00\x00\x0c\x00\x00\x0045.73709869\x00\x0c\x00\x00\x00\x0c\x00\x00\x00M\x00\x00\x00\x0c\x00\x00\x0027.64929962\x00\x0c\x00\x00\x00\x0c\x00\x00\x00M\x00\x00\x00\x0c\x00\x00\x0031.94370079\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00Stim_faktor\x00\x04\x00\x00\x00_\x88\x9f\r\x04\x00\x00\x00`\x88\x9f\r\x04\x00\x00\x00a\x88\x9f\r\x04\x00\x00\x00b\x88\x9f\r\x04\x00\x00\x00c\x88\x9f\r\x04\x00\x00\x00d\x88\x9f\r\x04\x00\x00\x00\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x00\x0b\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x001.00000000\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00CoilForGradient\x00\x89\x88\x9f\r\x04\x00\x00\x00\x8a\x88\x9f\r\x04\x00\x00\x00\x8b\x88\x9f\r\x04\x00\x00\x00\x8c\x88\x9f\r\x04\x00\x00\x00\x8d\x88\x9f\r\x04\x00\x00\x00\x8e\x88\x9f\r\x04\x00\x00\x00\x01\x00\x00\x00SH\x00\x00\x16\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x05\x00\x00\x00\x05\x00\x00\x00M\x00\x00\x00\x05\x00\x00\x00void\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00CoilForGradient2\x00\x88\x9f\r\x04\x00\x00\x00\xb4\x88\x9f\r\x04\x00\x00\x00\xb5\x88\x9f\r\x04\x00\x00\x00\xb6\x88\x9f\r\x04\x00\x00\x00\xb7\x88\x9f\r\x04\x00\x00\x00\xb8\x88\x9f\r\x04\x00\x00\x00\x01\x00\x00\x00SH\x00\x00\x16\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x06\x00\x00\x00AS092\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00CoilTuningReflection\x00\x00\x00\x00\xde\x88\x9f\r\x04\x00\x00\x00\xdf\x88\x9f\r\x04\x00\x00\x00\xe0\x88\x9f\r\x04\x00\x00\x00\xe1\x88\x9f\r\x04\x00\x00\x00\xe2\x88\x9f\r\x04\x00\x00\x00\x02\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00CoilId\x00\x00\x06\x89\x9f\r\x04\x00\x00\x00\x07\x89\x9f\r\x04\x00\x00\x00\x08\x89\x9f\r\x04\x00\x00\x00\t\x89\x9f\r\x04\x00\x00\x00\n\x89\x9f\r\x04\x00\x00\x00\x0b\x89\x9f\r\x04\x00\x00\x00\x0c\x89\x9f\r\x04\x00\x00\x00\x00\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x0c\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00255     \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00238     \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00238     \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00173     \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00238     \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00238     \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x0093      \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00238     \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00238     \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00238     \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00238     \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00MiscSequenceParam\x00\x9f\r\x04\x00\x00\x002\x89\x9f\r\x04\x00\x00\x003\x89\x9f\r\x04\x00\x00\x004\x89\x9f\r\x04\x00\x00\x005\x89\x9f\r\x04\x00\x00\x006\x89\x9f\r\x04\x00\x00\x00&\x00\x00\x00IS\x00\x00\x06\x00\x00\x00*\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x004096    \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x004957    \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00MrProtocolVersion\x00\x9f\r\x04\x00\x00\x00\\\x89\x9f\r\x04\x00\x00\x00]\x89\x9f\r\x04\x00\x00\x00^\x89\x9f\r\x04\x00\x00\x00_\x89\x9f\r\x04\x00\x00\x00`\x89\x9f\r\x04\x00\x00\x00\x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x0021510009\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00DataFileName\x00\x00\x00\x00%\x00\x00\x00.\x00\x00\x00K\x00o\x00l\x00e\x00s\x00s\x00a\x00r\x00\x00\x00\x0e6\x0e|\x0eH\x0e!\x0e\x91\x0e\x91\x0e\x02\x0e\x8a\x01\x02\x02\x02\x02\x02\x01\x00\x00\x00LO\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00RepresentativeImage\x00\x02\x00\x00\x00&\x14\xe0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00[\x00\x00\x00\x01\x00\x00\x00UI\x00\x00\x19\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00PositivePCSDirections\x00\x00\x00\x08\x00\x00\x00T\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00SH\x00\x00\x16\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x05\x00\x00\x00\x05\x00\x00\x00M\x00\x00\x00\x05\x00\x00\x00+LPH\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00RelTablePosition\x00F\x0cj\x0c!\x0cF\x0c\xb4\x01\x02\x02\x02\x02\x02\x02\x02\x02\x01\xcd\xd2\xc3\x01\x01\x00T\x00r\x00i\x00o\x00T\x00i\x00m\x00\x00\x00\x0e\x99\x0e\x8a\x0e2\x03\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00ReadoutOS\x00ing::sortkey\x00.\x00\x08\x00\x00b\x00\x00\x00\x02\x00\x00\x00R\x0e\x00\x00\xee\x03\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0031\x01\x00\x00\x00FD\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x00\x0b\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x002.00000000\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00LongModelName\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00*\x00\x00\x00L\x00\x00\x00\x02\x00\x00\x00T\x0e\x00\x00\x02\x00\x00\x00C\x0e\x00\x00\x00\x00\x00\x00\n\x00\x00\x00\xff\xff\xff\xff\x04\x00\x00\x00\x01\x00\x00\x00LO\x00\x00\x13\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\n\x00\x00\x00\n\x00\x00\x00M\x00\x00\x00\n\x00\x00\x00NUMARIS/4\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00SliceArrayConcatenations\x00\x00\x00\x00C\x0e\x00\x00\x00\x00\x00\x00\t\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x001       \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00SliceResolution\x00\x00\x00\x00\x00\x14\x00\x00\x00\xa0\x00\x00\x00x\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00@\x00\x00\x00[\x00\x00\x00\x00\x0c\x00\x00\x01\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x00\x0b\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x001.00000000\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00AbsTablePosition\x00\x00\x00\x00\r\x00\x00\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00IS\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00-1263   \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00AutoAlignMatrix\x00ase::mySecurityObject\x00\x00\x00\x00\x08\x00\x00c\x00\x00\x00\x02\x00\x00\x00$\x11\x00\x00\xee\x03\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00FL\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00MeasurementIndex\x00\x00\x00\x00\x1d\x00\x00\x00L\x00\x00\x00\x02\x00\x00\x00o\t\x00\x00\x02\x00\x00\x00i\t\x00\x00\x02\x00\x00\x00\x16\x08\x00\x00\xff\xff\xff\xff\x04\x00\x00\x00\x08\x00\x00\x00\x01\x00\x00\x00FL\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00CoilString\x00\xff\x04\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00CsaPersFound\x01\x00\x00\x00LO\x00\x00\x13\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\n\x00\x00\x00\n\x00\x00\x00M\x00\x00\x00\n\x00\x00\x00T:HEA;HEP\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00PATModeText\x00ound::myUserInfo_flag.CsaFlag::myValue\x00\x00\x00\x08\x00\x00|\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00LO\x00\x00\x13\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00M\x00\x00\x00\x03\x00\x00\x00p2\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00PatReinPattern\x00Equipment\x00\x00\x00\x00\x00\x08\x00\x00s\x00\x00\x00\x02\x00\x00\x00-\x11\x00\x00\xee\x03\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00ST\x00\x00\x17\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00#\x00\x00\x00#\x00\x00\x00M\x00\x00\x00#\x00\x00\x001;HFS;45.36;25.00;3;0;0;2113630609\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00ProtocolChangeHistory\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x001\x00\x00\x00L\x00\x00\x00\x02\x00\x00\x00/\x11\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00US\x00\x00\n\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00Isocentered\x00\x02\x00\x00\x001\x11\x00\x00\xee\x03\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x004\x00\x00\x00L\x00\x00\x00\x02\x00\x00\x001\x11\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00US\x00\x00\n\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00MrPhoenixProtocol\x00\x00\x003\x11\x00\x00\xee\x03\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x007\x00\x00\x00L\x00\x00\x00\x02\x00\x00\x003\x11\x00\x00\x01\x00\x00\x00UN\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00N\xf2\x00\x00N\xf2\x00\x00M\x00\x00\x00N\xf2\x00\x00<XProtocol> \n{\n  <Name> "PhoenixMetaProtocol" \n  <ID> 1000002 \n  <Userversion> 2.0 \n  \n  <ParamMap.""> \n  {\n    \n    <ParamBool."IsInlineComposed"> \n    {\n      <LimitRange> { "false" "true" }\n    }\n    \n    <ParamLong."Count"> \n    {\n      1 \n    }\n    \n    <ParamString."Protocol0"> \n    {\n      "<XProtocol> \n{\n  <Name> ""MultiStep Controller"" \n  <ID> 1000001 \n  <Userversion> 666.0 \n  \n  <EVAStringTable> \n  {\n    33 \n    400 ""Multistep Protocol"" \n    401 ""Step"" \n    402 ""Inline Composing"" \n    403 ""Composing Group"" \n    404 ""Last Step"" \n    405 ""Composing Function"" \n    406 ""Inline Combine"" \n    407 ""Enables you to set up a Multistep Protocol."" \n    408 ""Indicates the number of the current Step of the Multistep Protocol.\\nPress the + button to add a Step at the end of the list.\\nPress the - button to delete the current Step."" \n    409 ""Invokes Inline Composing."" \n    410 ""Identifies all Steps that will be composed."" \n    411 ""Defines the last measurement step of a composing function."" \n    412 ""Save all measurements of the Multistep Protocol into one series."" \n    413 ""Defines the composing algorithm to be used."" \n    414 ""Prio Recon"" \n    415 ""Enables Prio Recon measurement"" \n    416 ""Auto Align Spine"" \n    417 ""Enables the Auto Align Spine mode in GSP when protocol is open"" \n    422 ""Auto Coil Select"" \n    423 ""If set to """"Default"""",\\nglobal settings from the queue menu will be used."" \n    424 ""On"" \n    425 ""Off"" \n    426 ""Default"" \n    429 ""Wait for user to start"" \n    430 ""Load images to graphic segments"" \n    431 ""Before measurement"" \n    432 ""After measurement"" \n    433 ""1st segment"" \n    434 ""2nd segment"" \n    435 ""3rd segment"" \n    436 ""All segments"" \n    445 ""Angio"" \n    446 ""Spine"" \n  }\n  \n  <ParamMap.""""> \n  {\n    \n    <ParamLong.""LoadHook""> \n    {\n    }\n    \n    <ParamBool.""AlwaysFalse""> \n    {\n      <LimitRange> { ""false"" ""true"" }\n    }\n    \n    <ParamMap.""DMWL""> \n    {\n      \n      <ParamMap.""Pause""> \n      {\n        \n        <ParamString.""CodeValue""> \n        {\n        }\n        \n        <ParamString.""CodingSchemeVersion""> \n        {\n        }\n        \n        <ParamString.""CodingSchemeDesignator""> \n        {\n        }\n        \n        <ParamString.""CodeMeaning""> \n        {\n        }\n      }\n      \n      <ParamMap.""Meas""> \n      {\n        \n        <ParamString.""CodeValue""> \n        {\n        }\n        \n        <ParamString.""CodingSchemeVersion""> \n        {\n        }\n        \n        <ParamString.""CodingSchemeDesignator""> \n        {\n        }\n        \n        <ParamString.""CodeMeaning""> \n        {\n        }\n      }\n    }\n    \n    <ParamMap.""MultiStep""> \n    {\n      \n      <ParamBool.""IsMultistep""> \n      {\n        <Label> ""Multistep Protocol"" \n        <Tooltip> ""Enables you to set up a Multistep Protocol."" \n        <LimitRange> { ""false"" ""true"" }\n      }\n      \n      <ParamArray.""SubStep""> \n      {\n        <Label> ""Step"" \n        <Tooltip> ""Indicates the number of the current Step of the Multistep Protocol.\\nPress the + button to add a Step at the end of the list.\\nPress the - button to delete the current Step."" \n        <Default> <ParamLong.""""> \n        {\n          <Label> ""x"" \n        }\n        { }\n        \n      }\n      \n      <ParamBool.""IsInlineCompose""> \n      {\n        <Label> ""Inline Composing"" \n        <Tooltip> ""Invokes Inline Composing."" \n        <LimitRange> { ""false"" ""true"" }\n      }\n      \n      <ParamBool.""ComposingGroupSwitch""> \n      {\n        <Visible> ""false"" \n        <LimitRange> { ""false"" ""true"" }\n      }\n      \n      <ParamLong.""ComposingGroup""> \n      {\n        <Label> ""Composing Group"" \n        <Tooltip> ""Identifies all Steps that will be composed."" \n        <Default> 1 \n        <LimitRange> { 1 100 }\n      }\n      \n      <ParamBool.""IsLastStep""> \n      {\n        <Label> ""Last Step"" \n        <Tooltip> ""Defines the last measurement step of a composing function."" \n        <LimitRange> { ""false"" ""true"" }\n      }\n      \n      <ParamChoice.""ComposingFunction""> \n      {\n        <Label> ""Composing Function"" \n        <Tooltip> ""Defines the composing algorithm to be used."" \n        <LimitRange> { ""Angio"" ""Spine"" }\n      }\n      \n      <ParamBool.""IsInlineCombine""> \n      {\n        <Label> ""Inline Combine"" \n        <Tooltip> ""Save all measurements of the Multistep Protocol into one series."" \n        <LimitRange> { ""false"" ""true"" }\n      }\n      \n      <ParamLong.""2DDistCor""> \n      {\n      }\n      \n      <ParamLong.""TpPosMode""> \n      {\n      }\n    }\n    \n    <ParamMap.""Properties""> \n    {\n      \n      <ParamMap.""Reconstruction""> \n      {\n        \n        <ParamBool.""recon_prio""> \n        {\n          <Label> ""Prio Recon"" \n          <Tooltip> ""Enables Prio Recon measurement"" \n          <LimitRange> { ""false"" ""true"" }\n        }\n      }\n      \n      <ParamMap.""Sound""> \n      {\n        \n        <ParamString.""PreSound""> \n        {\n          <Label> ""Before measurement"" \n          <MinSize> 1 \n          <MaxSize> 1000000000 \n        }\n        \n        <ParamBool.""PreSoundOn""> \n        {\n          <Label> ""Before measurement"" \n          <MinSize> 1 \n          <MaxSize> 1000000000 \n          <LimitRange> { ""false"" ""true"" }\n        }\n        \n        <ParamString.""PostSound""> \n        {\n          <Label> ""After measurement"" \n          <MinSize> 1 \n          <MaxSize> 1000000000 \n        }\n        \n        <ParamBool.""PostSoundOn""> \n        {\n          <Label> ""After measurement"" \n          <MinSize> 1 \n          <MaxSize> 1000000000 \n          <LimitRange> { ""false"" ""true"" }\n        }\n      }\n      \n      <ParamMap.""AutoLoad""> \n      {\n        \n        <ParamBool.""DisableAutoTransfer""> \n        {\n          <LimitRange> { ""false"" ""true"" }\n        }\n        \n        <ParamBool.""AutoStore""> \n        {\n          <Label> ""Auto store images"" \n          <Default> ""true"" \n          <LimitRange> { ""false"" ""true"" }\n        }\n        \n        <ParamBool.""LoadToFilming""> \n        {\n          <Label> ""Load to filming"" \n          <Default> ""true"" \n          <LimitRange> { ""false"" ""true"" }\n        }\n        \n        <ParamBool.""LoadToViewer""> \n        {\n          <Label> ""Load to viewer"" \n          <Default> ""true"" \n          <LimitRange> { ""false"" ""true"" }\n        }\n        \n        <ParamBool.""LoadToStamp""> \n        {\n          <Label> ""Load to stamp segments"" \n          <LimitRange> { ""false"" ""true"" }\n        }\n        \n        <ParamBool.""LoadToGraphic""> \n        {\n          <Label> ""Load images to graphic segments"" \n          <MinSize> 1 \n          <MaxSize> 1000000000 \n          <LimitRange> { ""false"" ""true"" }\n        }\n        \n        <ParamChoice.""GraphicSegmentChoice""> \n        {\n          <Label> ""Graphic segment"" \n          <MinSize> 1 \n          <MaxSize> 1000000000 \n          <Limit> { ""Default"" ""1st segment"" ""2nd segment"" ""3rd segment"" ""All segments"" }\n        }\n        \n        <ParamBool.""InlineMovie""> \n        {\n          <Label> ""Inline movie"" \n          <LimitRange> { ""false"" ""true"" }\n        }\n        \n        <ParamBool.""AutoOpenInlineDisplay""> \n        {\n          <Label> ""Auto open inline display"" \n          <LimitRange> { ""false"" ""true"" }\n        }\n        \n        <ParamBool.""AutoCloseInlineDisplay""> \n        {\n          <Label> ""Auto close inline display"" \n          <LimitRange> { ""false"" ""true"" }\n        }\n        \n        <ParamBool.""InlinePositionDisplay""> \n        {\n          <Label> ""Inline Position Display"" \n          <LimitRange> { ""false"" ""true"" }\n        }\n        \n        <ParamChoice.""InlinePositionDisplayOrientation""> \n        {\n          <Limit> { ""All"" ""Sag"" ""Cor"" ""Tra"" }\n        }\n      }\n      \n      <ParamMap.""SlicePositioning""> \n      {\n        \n        <ParamBool.""AutoAlignSpine""> \n        {\n          <Label> ""Auto Align Spine"" \n          <Tooltip> ""Enables the Auto Align Spine mode in GSP when protocol is open"" \n          <LimitRange> { ""false"" ""true"" }\n        }\n      }\n      \n      <ParamMap.""Queue""> \n      {\n        \n        <ParamChoice.""CoilSelectMode""> \n        {\n          <Label> ""Auto Coil Select"" \n          <Tooltip> ""If set to """"Default"""",\\nglobal settings from the queue menu will be used."" \n          <Limit> { ""Default"" ""Off"" ""On"" }\n        }\n        \n        <ParamBool.""WorkingMan""> \n        {\n          <Label> ""Start measurement without further preparation"" \n          <Default> ""true"" \n          <LimitRange> { ""false"" ""true"" }\n        }\n        \n        <ParamBool.""WaitForUserToStart""> \n        {\n          <Label> ""Wait for user to start"" \n          <MinSize> 1 \n          <MaxSize> 1000000000 \n          <LimitRange> { ""false"" ""true"" }\n          ""true"" \n        }\n        \n        <ParamChoice.""WaitForStartChoice""> \n        {\n          <Label> ""Start measurements"" \n          <Limit> { ""single"" ""repeated"" }\n        }\n        \n        <ParamString.""Description""> \n        {\n          <Label> ""Description"" \n        }\n        \n        <ParamString.""ProtocolName""> \n        {\n          <Label> ""Protocol name"" \n          <Default> ""Initialized by sequence"" \n          ""ep2d_bold"" \n        }\n      }\n      \n      <ParamMap.""CopyRefOpt""> \n      {\n        \n        <ParamBool.""CopyPhaseEncDir""> \n        {\n          <Label> ""CopyPhaseEncDir"" \n          <LimitRange> { ""false"" ""true"" }\n        }\n        \n        <ParamBool.""IgnoreMeasurements""> \n        {\n          <Label> ""IgnoreMeasurements"" \n          <LimitRange> { ""false"" ""true"" }\n        }\n        \n        <ParamBool.""IgnoreLastStep""> \n        {\n          <Label> ""IgnoreLastStep"" \n          <LimitRange> { ""false"" ""true"" }\n        }\n        \n        <ParamBool.""CopySubSteps""> \n        {\n          <Label> ""CopySubSteps"" \n          <LimitRange> { ""false"" ""true"" }\n        }\n      }\n    }\n    \n    <ParamMap.""PerformanceCache""> \n    {\n      \n      <ParamLong.""inline_posdisp_can_set""> \n      {\n        <Default> -1 \n        1 \n      }\n      \n      <ParamLong.""recon_prio_can_set""> \n      {\n        <Default> -1 \n        1 \n      }\n      \n      <ParamArray.""EstimatedDuration""> \n      {\n        <MinSize> 1 \n        <MaxSize> 1000000000 \n        <Default> <ParamLong.""""> \n        {\n        }\n        { 328  }\n        \n      }\n      \n      <ParamArray.""HasPostProcessing""> \n      {\n        <MinSize> 1 \n        <MaxSize> 1000000000 \n        <Default> <ParamBool.""""> \n        {\n          <LimitRange> { ""false"" ""true"" }\n        }\n        { }\n        \n      }\n      \n      <ParamArray.""EnableAutoStore""> \n      {\n        <MinSize> 1 \n        <MaxSize> 1000000000 \n        <Default> <ParamBool.""""> \n        {\n          <LimitRange> { ""false"" ""true"" }\n        }\n        { }\n        \n      }\n      \n      <ParamArray.""SequencePath""> \n      {\n        <MinSize> 1 \n        <MaxSize> 1000000000 \n        <Default> <ParamString.""""> \n        {\n        }\n        { ""%SiemensSeq%\\ep2d_bold""  }\n        \n      }\n      \n      <ParamArray.""IsAASSequenceProcessing""> \n      {\n        <MinSize> 1 \n        <MaxSize> 1000000000 \n        <Default> <ParamBool.""""> \n        {\n          <LimitRange> { ""false"" ""true"" }\n        }\n        { }\n        \n      }\n    }\n  }\n  \n  <EVACardLayout.""Multistep""> \n  {\n    ""LAYOUT_10X2_WIDE_CONTROLS"" \n    7 \n    ""MultiStep.IsMultistep"" 110 3 ""UI_CHECKBOX"" \n    ""MultiStep.SubStep"" 77 18 ""UI_STD"" \n    ""MultiStep.IsInlineCompose"" 110 48 ""UI_CHECKBOX"" \n    ""MultiStep.ComposingFunction"" 77 63 ""UI_STD"" \n    ""MultiStep.ComposingGroup"" 77 78 ""UI_STD"" \n    ""MultiStep.IsLastStep"" 110 93 ""UI_CHECKBOX"" \n    ""MultiStep.IsInlineCombine"" 110 108 ""UI_CHECKBOX"" \n    <Line>  { 126 3 126 33 }\n    <Line>  { 126 48 126 140 }\n    <Line>  { 276 48 276 140 }\n  }\n  <EVACardLayout.""Inline Compose""> \n  {\n    ""LAYOUT_10X2_WIDE_CONTROLS"" \n    4 \n    ""MultiStep.IsInlineCompose"" 110 48 ""UI_CHECKBOX"" \n    ""MultiStep.ComposingFunction"" 77 63 ""UI_STD"" \n    ""MultiStep.ComposingGroup"" 77 78 ""UI_STD"" \n    ""MultiStep.IsLastStep"" 110 93 ""UI_CHECKBOX"" \n    <Line>  { 126 48 126 140 }\n    <Line>  { 276 48 276 140 }\n  }\n  \n  <Dependency.""Value_FALSE""> {""AlwaysFalse"" }\n  <Dependency.""1_Availability""> {""MultiStep.IsMultistep"" ""MultiStep.SubStep"" ""MultiStep.IsInlineCombine"" <Context> ""ONLINE"" }\n  <Dependency.""1_Availability""> {""MultiStep.IsInlineCompose"" ""MultiStep.ComposingFunction"" ""MultiStep.ComposingGroup"" ""MultiStep.IsLastStep"" <Context> ""ONLINE"" }\n  <Dependency.""1_NOT_Availability""> {""MultiStep.IsMultistep"" ""MultiStep.ComposingGroup"" ""MultiStep.IsLastStep"" <Context> ""ONLINE"" }\n  <Dependency.""1_NOT_Availability""> {""MultiStep.IsInlineCombine"" ""MultiStep.IsInlineCompose"" <Context> ""ONLINE"" }\n  <Dependency.""1_NOT_Availability""> {""MultiStep.IsInlineCompose"" ""MultiStep.IsInlineCombine"" <Context> ""ONLINE"" }\n  <Dependency.""MrMS_DH_Multistep""> {""MultiStep.IsMultistep"" ""MultiStep.IsInlineCompose"" ""MultiStep.IsInlineCombine"" ""MultiStep.SubStep"" ""MultiStep.ComposingGroup"" ""MultiStep.IsLastStep"" ""MultiStep.ComposingFunction"" <Dll> ""MrMultiStepDependencies"" <Context> ""ONLINE"" }\n  <Dependency.""MrMS_DH_2DDistCor""> {""MultiStep.2DDistCor"" ""MultiStep.IsInlineCompose"" ""MultiStep.IsInlineCombine"" <Dll> ""MrMultiStepDependencies"" <Context> ""ONLINE"" }\n  <Dependency.""MrMS_DH_InlineCompose""> {""MultiStep.IsInlineCompose"" ""MultiStep.ComposingFunction"" ""MultiStep.ComposingGroup"" ""MultiStep.IsLastStep"" ""MultiStep.ComposingGroupSwitch"" <Dll> ""MrMultiStepDependencies"" <Context> ""ONLINE"" }\n  <Dependency.""MrMS_DH_InlineCombine""> {""MultiStep.IsInlineCombine"" <Dll> ""MrMultiStepDependencies"" <Context> ""ONLINE"" }\n  <Dependency.""MrMS_DH_ComposingGroup""> {""MultiStep.ComposingGroup"" ""MultiStep.SubStep"" <Dll> ""MrMultiStepDependencies"" <Context> ""ONLINE"" }\n  <Dependency.""MrMS_DH_LastStep""> {""MultiStep.IsLastStep"" ""MultiStep.IsMultistep"" ""MultiStep.IsInlineCompose"" <Dll> ""MrMultiStepDependencies"" <Context> ""ONLINE"" }\n  <Dependency.""MrMS_DH_SubSteps""> {""MultiStep.SubStep"" ""Properties.Queue.WaitForUserToStart"" ""MultiStep.IsMultistep"" ""MultiStep.IsInlineCompose"" ""Properties.Queue.ProtocolName"" ""Properties.AutoLoad.LoadToFilming"" ""Properties.AutoLoad.LoadToViewer"" ""MultiStep.SubStep.*"" <Dll> ""MrMultiStepDependencies"" <Context> ""ONLINE"" }\n  <Dependency.""MrMS_DH_AutoStore""> {""Properties.AutoLoad.AutoStore"" <Dll> ""MrMultiStepDependencies"" <Context> ""ONLINE"" }\n  <Dependency.""MrMS_DH_recon_prio""> {""Properties.Reconstruction.recon_prio"" ""PerformanceCache.recon_prio_can_set"" <Dll> ""MrMultiStepDependencies"" <Context> ""ONLINE"" }\n  <Dependency.""MrMS_DH_InlinePosDisp""> {""Properties.AutoLoad.InlinePositionDisplay"" ""PerformanceCache.inline_posdisp_can_set"" <Dll> ""MrMultiStepDependencies"" <Context> ""ONLINE"" }\n  <Dependency.""MrMS_DH_TpPosMode""> {""MultiStep.TpPosMode"" <Dll> ""MrMultiStepDependencies"" <Context> ""ONLINE"" }\n  <Dependency.""MrMS_DH_SubStepProperties""> {""MultiStep.SubStep"" ""MultiStep.IsMultistep"" ""LoadHook"" ""Properties.Sound.PreSound"" ""Properties.Sound.PostSound"" ""Properties.Sound.PreSoundOn"" ""Properties.Sound.PostSoundOn"" ""Properties.AutoLoad.LoadToGraphic"" ""Properties.AutoLoad.GraphicSegmentChoice"" ""Properties.Queue.WaitForUserToStart"" <Dll> ""MrMultiStepDependencies"" <Context> ""ONLINE"" }\n  <Dependency.""MrMS_DH_Forward""> {""MultiStep.IsMultistep"" ""MultiStep.SubStep"" ""Properties.AutoLoad.InlinePositionDisplay"" ""Properties.AutoLoad.InlinePositionDisplayOrientation"" ""Properties.AutoLoad.DisableAutoTransfer"" ""DMWL.Pause.CodeValue"" ""DMWL.Pause.CodingSchemeVersion"" ""DMWL.Pause.CodingSchemeDesignator"" ""DMWL.Pause.CodeMeaning"" ""DMWL.Meas.CodeValue"" ""DMWL.Meas.CodingSchemeVersion"" ""DMWL.Meas.CodingSchemeDesignator"" ""DMWL.Meas.CodeMeaning"" <Dll> ""MrMultiStepDependencies"" <Context> ""ONLINE"" }\n  <Dependency.""Sound_UI""> {""Properties.Sound.PreSoundOn"" ""Properties.Sound.PreSound"" <Dll> ""MrXPia"" <Context> ""ONLINE"" }\n  <Dependency.""Sound_UI""> {""Properties.Sound.PostSoundOn"" ""Properties.Sound.PostSound"" <Dll> ""MrXPia"" <Context> ""ONLINE"" }\n  <Dependency.""1_Visibility""> {""AlwaysFalse"" ""Properties.Sound.PreSoundOn"" ""Properties.Sound.PostSoundOn"" <Context> ""ONLINE"" }\n  <Dependency.""MrMS_DH_IRT""> {""MultiStep.IsInlineCompose"" ""Properties.Queue.CoilSelectMode"" <Dll> ""MrMultiStepDependencies"" <Context> ""ONLINE"" }\n  <Dependency.""MrMS_DH_TIMCT""> {""MultiStep.IsInlineCompose"" <Dll> ""MrMultiStepDependencies"" <Context> ""ONLINE"" }\n  \n}\n\n<XProtocol> \n{\n  <ID> 2 \n  <Userversion> 3.0 \n  \n  <ParamMap.""""> \n  {\n    <PipeService.""EVA""> \n    {\n      <Class> ""PipeLinkService@MrParc"" \n      \n      <ParamLong.""POOLTHREADS"">  { 1  }\n      <ParamString.""GROUP"">  { ""Calculation""  }\n      <ParamLong.""DATATHREADS"">  { }\n      <ParamLong.""WATERMARK"">  { 16  }\n      <ParamString.""tdefaultEVAProt"">  { ""%SiemensEvaDefProt%/BOLD/t-test_10B10A_moco.evp""  }\n      <ParamBool.""tt_visible"">  { }\n      <ParamFunctor.""MosaicUnwrapper""> \n      {\n        <Class> ""MosaicUnwrapper@IceImagePostProcFunctors"" \n        \n        <ParamBool.""EXECUTE"">  { }\n        <Event.""ImageReady"">  { ""int32_t"" ""class IceAs &"" ""class MrPtr<class MiniHeader,class Parc::Component> &"" ""class ImageControl &""  }\n        <Method.""ComputeImage"">  { ""int32_t"" ""class IceAs &"" ""class MrPtr<class MiniHeader,class Parc::Component> &"" ""class ImageControl &""  }\n        <Connection.""c1"">  { ""ImageReady"" """" ""ComputeImage""  }\n      }\n      <ParamFunctor.""MotionCorrDecorator""> \n      {\n        <Class> ""MotionCorrDecorator@IceImagePostProcFunctors"" \n        \n        <ParamBool.""EXECUTE"">  { }\n        <ParamBool.""MoCo"">  { }\n        <ParamChoice.""InterpolMoCo"">  { <Limit> { ""linear"" ""3D-K-space"" ""Sinc"" ""QuinSpline"" } ""3D-K-space""  }\n        <ParamLong.""SincKernelSize"">  { 5  }\n        <ParamBool.""Filter"">  { }\n        <ParamDouble.""FilterWidth"">  { <Precision> 1  1.0  }\n        <ParamBool.""IsInlineProcessing"">  { ""true""  }\n        <ParamLong.""Pace"">  { 1  }\n        <ParamDouble.""RotAngle"">  { <Precision> 6  }\n        <ParamLong.""Rep2BePatched"">  { -1  }\n        <ParamBool.""DumpPaceInfo"">  { }\n        <ParamDouble.""PatchTransX"">  { <Precision> 1  }\n        <ParamDouble.""PatchTransY"">  { <Precision> 1  }\n        <ParamDouble.""PatchTransZ"">  { <Precision> 1  }\n        <ParamDouble.""PatchRotX"">  { <Precision> 1  }\n        <ParamDouble.""PatchRotY"">  { <Precision> 1  }\n        <ParamDouble.""PatchRotZ"">  { <Precision> 1  }\n        <Event.""ImageReady"">  { ""int32_t"" ""class IceAs &"" ""class MrPtr<class MiniHeader,class Parc::Component> &"" ""class ImageControl &""  }\n        <Method.""ComputeImage"">  { ""int32_t"" ""class IceAs &"" ""class MrPtr<class MiniHeader,class Parc::Component> &"" ""class ImageControl &""  }\n        <Connection.""c1"">  { ""ImageReady"" """" ""ComputeImage""  }\n      }\n      <ParamFunctor.""MosaicDecorator""> \n      {\n        <Class> ""MosaicDecorator@IceImagePostProcFunctors"" \n        \n        <ParamBool.""EXECUTE"">  { ""true""  }\n        <ParamBool.""Mosaic"">  { ""true""  }\n        <Event.""ImageReady"">  { ""int32_t"" ""class IceAs &"" ""class MrPtr<class MiniHeader,class Parc::Component> &"" ""class ImageControl &""  }\n        <Method.""ComputeImage"">  { ""int32_t"" ""class IceAs &"" ""class MrPtr<class MiniHeader,class Parc::Component> &"" ""class ImageControl &""  }\n        <Connection.""connection0"">  { ""ImageReady"" ""SendImage.imagesend"" ""ComputeImage""  }\n      }\n      <ParamFunctor.""FMRIFunctor""> \n      {\n        <Class> ""FMRIFunctor@IceImagePostProcFunctors"" \n        \n        <ParamBool.""EXECUTE"">  { }\n        <ParamLong.""IgnoreMeas"">  { }\n        <ParamLong.""IgnoresAfterTransition"">  { }\n        <ParamBool.""HRFModelConvolution"">  { }\n        <ParamBool.""TemporalHighpass"">  { }\n        <ParamLong.""paradigm_size"">  { 30  }\n        <ParamArray.""paradigm""> \n        {\n          <Default> <ParamChoice.""""> \n          {\n            <Default> ""active"" \n            <Limit> { ""ignore"" ""active"" ""baseline"" }\n          }\n          { ""baseline""  }\n          { ""baseline""  }\n          { ""baseline""  }\n          { ""baseline""  }\n          { ""baseline""  }\n          { ""baseline""  }\n          { ""baseline""  }\n          { ""baseline""  }\n          { ""baseline""  }\n          { ""baseline""  }\n          { }\n          { }\n          { }\n          { }\n          { }\n          { }\n          { }\n          { }\n          { }\n          { }\n          { }\n          { }\n          { }\n          { }\n          { }\n          { }\n          { }\n          { }\n          { }\n          { }\n          \n        }\n        <ParamBool.""t-test"">  { }\n        <ParamBool.""glm"">  { }\n        <ParamDouble.""Threshold"">  { <Precision> 2  4.00  }\n        <ParamChoice.""window"">  { <Limit> { ""constWindow"" ""Growing Window"" } ""Growing Window""  }\n        <ParamBool.""AllTTest"">  { }\n        <ParamBool.""IsInlineProcessing"">  { ""true""  }\n        <ParamChoice.""InlineLUT"">  { <Limit> { ""<Not found>"" ""BOLDInline.pal"" ""HotMetal.pal"" ""ColdMetal.pal"" ""Thal.pal"" } ""BOLDInline.pal""  }\n        <ParamDouble.""InlineLUTRange"">  { <Precision> 2  6.00  }\n        <ParamLong.""StartInlineAtMeas"">  { }\n        <ParamLong.""MaxCovarHighpass"">  { 16  }\n        <ParamLong.""ForcedCovarHighpass"">  { -1  }\n        <ParamDouble.""HRFDelay_s"">  { 99999.999  }\n        <ParamBool.""UseExternalDesign"">  { }\n        <ParamString.""ExternalInputDir"">  { ""Tap2Con""  }\n        <ParamLong.""JobsPerCPU"">  { 1  }\n        <Event.""ImageReady"">  { ""int32_t"" ""class IceAs &"" ""class MrPtr<class MiniHeader,class Parc::Component> &"" ""class ImageControl &""  }\n        <Method.""ComputeImage"">  { ""int32_t"" ""class IceAs &"" ""class MrPtr<class MiniHeader,class Parc::Component> &"" ""class ImageControl &""  }\n        <Connection.""c1"">  { ""ImageReady"" """" ""ComputeImage""  }\n      }\n    }\n  }\n}\n### ASCCONV BEGIN ###\nulVersion                                = 0x1483779\ntSequenceFileName                        = ""%SiemensSeq%\\ep2d_bold""\ntProtocolName                            = ""ep2d+AF8-bold""\ntReferenceImage0                         = ""1.3.12.2.1107.5.2.32.35139.2009102017265699489354071""\ntReferenceImage1                         = ""1.3.12.2.1107.5.2.32.35139.2009102017265987503554075""\ntReferenceImage2                         = ""1.3.12.2.1107.5.2.32.35139.2009102017270275512854079""\nucScanRegionPosValid                     = 0x1\nucTablePositioningMode                   = 0x1\nsProtConsistencyInfo.tBaselineString     = ""N4_VB15A_LATEST_20070519""\nsProtConsistencyInfo.tSystemType         = ""092""\nsProtConsistencyInfo.flNominalB0         = 2.89362\nsProtConsistencyInfo.flGMax              = 26\nsProtConsistencyInfo.flRiseTime          = 5.88\nsProtConsistencyInfo.lMaximumNofRxReceiverChannels = 32\nsGRADSPEC.sEddyCompensationX.aflAmplitude[0] = 0.00190813\nsGRADSPEC.sEddyCompensationX.aflAmplitude[1] = 0.0027344\nsGRADSPEC.sEddyCompensationX.aflAmplitude[2] = -0.00117831\nsGRADSPEC.sEddyCompensationX.aflAmplitude[3] = 0.000121476\nsGRADSPEC.sEddyCompensationX.aflAmplitude[4] = 0.00173983\nsGRADSPEC.sEddyCompensationX.aflTimeConstant[0] = 1.82003\nsGRADSPEC.sEddyCompensationX.aflTimeConstant[1] = 0.389085\nsGRADSPEC.sEddyCompensationX.aflTimeConstant[2] = 0.20907\nsGRADSPEC.sEddyCompensationX.aflTimeConstant[3] = 0.021751\nsGRADSPEC.sEddyCompensationX.aflTimeConstant[4] = 0.000499213\nsGRADSPEC.sEddyCompensationY.aflAmplitude[0] = 0.000483516\nsGRADSPEC.sEddyCompensationY.aflAmplitude[1] = -0.000481536\nsGRADSPEC.sEddyCompensationY.aflAmplitude[2] = -0.000415866\nsGRADSPEC.sEddyCompensationY.aflAmplitude[3] = 0.000322869\nsGRADSPEC.sEddyCompensationY.aflAmplitude[4] = 0.000955127\nsGRADSPEC.sEddyCompensationY.aflTimeConstant[0] = 2.21143\nsGRADSPEC.sEddyCompensationY.aflTimeConstant[1] = 0.30294\nsGRADSPEC.sEddyCompensationY.aflTimeConstant[2] = 0.233131\nsGRADSPEC.sEddyCompensationY.aflTimeConstant[3] = 0.00901296\nsGRADSPEC.sEddyCompensationY.aflTimeConstant[4] = 0.00074212\nsGRADSPEC.sEddyCompensationZ.aflAmplitude[0] = 0.00289965\nsGRADSPEC.sEddyCompensationZ.aflAmplitude[1] = 0.00709674\nsGRADSPEC.sEddyCompensationZ.aflAmplitude[2] = 0.000940395\nsGRADSPEC.sEddyCompensationZ.aflAmplitude[3] = 0.00318459\nsGRADSPEC.sEddyCompensationZ.aflAmplitude[4] = -0.00639602\nsGRADSPEC.sEddyCompensationZ.aflTimeConstant[0] = 3.63041\nsGRADSPEC.sEddyCompensationZ.aflTimeConstant[1] = 0.86865\nsGRADSPEC.sEddyCompensationZ.aflTimeConstant[2] = 0.115284\nsGRADSPEC.sEddyCompensationZ.aflTimeConstant[3] = 0.001\nsGRADSPEC.sEddyCompensationZ.aflTimeConstant[4] = 0.000501767\nsGRADSPEC.bEddyCompensationValid         = 1\nsGRADSPEC.sB0CompensationX.aflAmplitude[0] = -0.111266\nsGRADSPEC.sB0CompensationX.aflAmplitude[1] = -0.00430208\nsGRADSPEC.sB0CompensationX.aflAmplitude[2] = 0.000857887\nsGRADSPEC.sB0CompensationX.aflTimeConstant[0] = 0.65782\nsGRADSPEC.sB0CompensationX.aflTimeConstant[1] = 0.0077501\nsGRADSPEC.sB0CompensationX.aflTimeConstant[2] = 0.00199047\nsGRADSPEC.sB0CompensationY.aflAmplitude[0] = 0.0933481\nsGRADSPEC.sB0CompensationY.aflAmplitude[1] = 0.0190041\nsGRADSPEC.sB0CompensationY.aflAmplitude[2] = -0.0191413\nsGRADSPEC.sB0CompensationY.aflTimeConstant[0] = 0.799131\nsGRADSPEC.sB0CompensationY.aflTimeConstant[1] = 0.55636\nsGRADSPEC.sB0CompensationY.aflTimeConstant[2] = 0.00185603\nsGRADSPEC.sB0CompensationZ.aflAmplitude[0] = 0.263017\nsGRADSPEC.sB0CompensationZ.aflAmplitude[1] = 0.0192468\nsGRADSPEC.sB0CompensationZ.aflAmplitude[2] = -0.0388444\nsGRADSPEC.sB0CompensationZ.aflTimeConstant[0] = 0.58689\nsGRADSPEC.sB0CompensationZ.aflTimeConstant[1] = 0.0326636\nsGRADSPEC.sB0CompensationZ.aflTimeConstant[2] = 0.0018695\nsGRADSPEC.bB0CompensationValid           = 1\nsGRADSPEC.sCrossTermCompensationXY.aflAmplitude[0] = 0.000235579\nsGRADSPEC.sCrossTermCompensationXY.aflTimeConstant[0] = 0.394041\nsGRADSPEC.sCrossTermCompensationXZ.aflAmplitude[0] = -0.000936719\nsGRADSPEC.sCrossTermCompensationXZ.aflTimeConstant[0] = 0.613438\nsGRADSPEC.sCrossTermCompensationYX.aflAmplitude[0] = -0.00011147\nsGRADSPEC.sCrossTermCompensationYX.aflTimeConstant[0] = 0.349026\nsGRADSPEC.sCrossTermCompensationYZ.aflAmplitude[0] = 0.00018441\nsGRADSPEC.sCrossTermCompensationYZ.aflTimeConstant[0] = 1.33503\nsGRADSPEC.sCrossTermCompensationZX.aflAmplitude[0] = -0.000439141\nsGRADSPEC.sCrossTermCompensationZX.aflTimeConstant[0] = 0.547458\nsGRADSPEC.sCrossTermCompensationZY.aflAmplitude[0] = -0.000424925\nsGRADSPEC.sCrossTermCompensationZY.aflTimeConstant[0] = 0.523181\nsGRADSPEC.bCrossTermCompensationValid    = 1\nsGRADSPEC.lOffsetX                       = 4763\nsGRADSPEC.lOffsetY                       = -29426\nsGRADSPEC.lOffsetZ                       = -11833\nsGRADSPEC.bOffsetValid                   = 1\nsGRADSPEC.lDelayX                        = 12\nsGRADSPEC.lDelayY                        = 14\nsGRADSPEC.lDelayZ                        = 10\nsGRADSPEC.bDelayValid                    = 1\nsGRADSPEC.flSensitivityX                 = 7.91565e-005\nsGRADSPEC.flSensitivityY                 = 7.89372e-005\nsGRADSPEC.flSensitivityZ                 = 9.07105e-005\nsGRADSPEC.bSensitivityValid              = 1\nsGRADSPEC.alShimCurrent[0]               = 172\nsGRADSPEC.alShimCurrent[1]               = 198\nsGRADSPEC.alShimCurrent[2]               = -96\nsGRADSPEC.alShimCurrent[3]               = -218\nsGRADSPEC.alShimCurrent[4]               = -5\nsGRADSPEC.bShimCurrentValid              = 1\nsGRADSPEC.ucMode                         = 0x1\nsTXSPEC.asNucleusInfo[0].tNucleus        = ""1H""\nsTXSPEC.asNucleusInfo[0].lFrequency      = 123250707\nsTXSPEC.asNucleusInfo[0].bFrequencyValid = 1\nsTXSPEC.asNucleusInfo[0].flReferenceAmplitude = 248.034\nsTXSPEC.asNucleusInfo[0].bReferenceAmplitudeValid = 1\nsTXSPEC.asNucleusInfo[0].flAmplitudeCorrection = 1\nsTXSPEC.asNucleusInfo[0].bAmplitudeCorrectionValid = 1\nsTXSPEC.asNucleusInfo[0].bRFPAIndexValid = 1\nsTXSPEC.asNucleusInfo[1].bFrequencyValid = 1\nsTXSPEC.asNucleusInfo[1].bReferenceAmplitudeValid = 1\nsTXSPEC.asNucleusInfo[1].flAmplitudeCorrection = 1\nsTXSPEC.asNucleusInfo[1].bAmplitudeCorrectionValid = 1\nsTXSPEC.asNucleusInfo[1].lRFPAIndex      = -1\nsTXSPEC.asNucleusInfo[1].bRFPAIndexValid = 1\nsTXSPEC.aRFPULSE[0].tName                = ""SincRFPulse""\nsTXSPEC.aRFPULSE[0].bAmplitudeValid      = 0x1\nsTXSPEC.aRFPULSE[0].flAmplitude          = 209.874\nsTXSPEC.aRFPULSE[1].tName                = ""SLoopFCSatNS""\nsTXSPEC.aRFPULSE[1].bAmplitudeValid      = 0x1\nsTXSPEC.aRFPULSE[1].flAmplitude          = 61.143\nsTXSPEC.lNoOfTraPulses                   = 2\nsTXSPEC.flKDynMagnitudeMin               = 0.5\nsTXSPEC.flKDynMagnitudeMax               = 1.5\nsTXSPEC.flKDynMagnitudeClipLow           = 1\nsTXSPEC.flKDynMagnitudeClipHigh          = 1\nsTXSPEC.flKDynPhaseMax                   = 0.698132\nsTXSPEC.flKDynPhaseClip                  = 0.174533\nsTXSPEC.bKDynValid                       = 1\nsTXSPEC.ucRFPulseType                    = 0x2\nsTXSPEC.ucExcitMode                      = 0x1\nsTXSPEC.ucSimultaneousExcitation         = 0x1\nsRXSPEC.lGain                            = 1\nsRXSPEC.bGainValid                       = 1\nsRXSPEC.alDwellTime[0]                   = 2300\nsAdjData.uiAdjFreMode                    = 0x1\nsAdjData.uiAdjShimMode                   = 0x2\nsAdjData.uiAdjWatSupMode                 = 0x1\nsAdjData.uiAdjMDSMode                    = 0x1\nsAdjData.uiAdjTableTolerance             = 0x1\nsAdjData.uiAdjProtID                     = 0xc6\nsAdjData.uiAdjFreProtRelated             = 0x1\nsAdjData.sAdjVolume.sPosition.dSag       = 1.060914137\nsAdjData.sAdjVolume.sPosition.dCor       = 1.452784097\nsAdjData.sAdjVolume.sPosition.dTra       = -11.19305018\nsAdjData.sAdjVolume.sNormal.dTra         = 1\nsAdjData.sAdjVolume.dThickness           = 144\nsAdjData.sAdjVolume.dPhaseFOV            = 240\nsAdjData.sAdjVolume.dReadoutFOV          = 240\nucEnableNoiseAdjust                      = 0x1\nalTR[0]                                  = 8000000\nlContrasts                               = 1\nalTE[0]                                  = 22000\nacFlowComp[0]                            = 1\nlCombinedEchoes                          = 1\nsSliceArray.asSlice[0].sPosition.dSag    = 1.060914137\nsSliceArray.asSlice[0].sPosition.dCor    = 1.452784097\nsSliceArray.asSlice[0].sPosition.dTra    = -81.19305018\nsSliceArray.asSlice[0].sNormal.dTra      = 1\nsSliceArray.asSlice[0].dThickness        = 4\nsSliceArray.asSlice[0].dPhaseFOV         = 240\nsSliceArray.asSlice[0].dReadoutFOV       = 240\nsSliceArray.asSlice[1].sPosition.dSag    = 1.060914137\nsSliceArray.asSlice[1].sPosition.dCor    = 1.452784097\nsSliceArray.asSlice[1].sPosition.dTra    = -77.19305018\nsSliceArray.asSlice[1].sNormal.dTra      = 1\nsSliceArray.asSlice[1].dThickness        = 4\nsSliceArray.asSlice[1].dPhaseFOV         = 240\nsSliceArray.asSlice[1].dReadoutFOV       = 240\nsSliceArray.asSlice[2].sPosition.dSag    = 1.060914137\nsSliceArray.asSlice[2].sPosition.dCor    = 1.452784097\nsSliceArray.asSlice[2].sPosition.dTra    = -73.19305018\nsSliceArray.asSlice[2].sNormal.dTra      = 1\nsSliceArray.asSlice[2].dThickness        = 4\nsSliceArray.asSlice[2].dPhaseFOV         = 240\nsSliceArray.asSlice[2].dReadoutFOV       = 240\nsSliceArray.asSlice[3].sPosition.dSag    = 1.060914137\nsSliceArray.asSlice[3].sPosition.dCor    = 1.452784097\nsSliceArray.asSlice[3].sPosition.dTra    = -69.19305018\nsSliceArray.asSlice[3].sNormal.dTra      = 1\nsSliceArray.asSlice[3].dThickness        = 4\nsSliceArray.asSlice[3].dPhaseFOV         = 240\nsSliceArray.asSlice[3].dReadoutFOV       = 240\nsSliceArray.asSlice[4].sPosition.dSag    = 1.060914137\nsSliceArray.asSlice[4].sPosition.dCor    = 1.452784097\nsSliceArray.asSlice[4].sPosition.dTra    = -65.19305018\nsSliceArray.asSlice[4].sNormal.dTra      = 1\nsSliceArray.asSlice[4].dThickness        = 4\nsSliceArray.asSlice[4].dPhaseFOV         = 240\nsSliceArray.asSlice[4].dReadoutFOV       = 240\nsSliceArray.asSlice[5].sPosition.dSag    = 1.060914137\nsSliceArray.asSlice[5].sPosition.dCor    = 1.452784097\nsSliceArray.asSlice[5].sPosition.dTra    = -61.19305018\nsSliceArray.asSlice[5].sNormal.dTra      = 1\nsSliceArray.asSlice[5].dThickness        = 4\nsSliceArray.asSlice[5].dPhaseFOV         = 240\nsSliceArray.asSlice[5].dReadoutFOV       = 240\nsSliceArray.asSlice[6].sPosition.dSag    = 1.060914137\nsSliceArray.asSlice[6].sPosition.dCor    = 1.452784097\nsSliceArray.asSlice[6].sPosition.dTra    = -57.19305018\nsSliceArray.asSlice[6].sNormal.dTra      = 1\nsSliceArray.asSlice[6].dThickness        = 4\nsSliceArray.asSlice[6].dPhaseFOV         = 240\nsSliceArray.asSlice[6].dReadoutFOV       = 240\nsSliceArray.asSlice[7].sPosition.dSag    = 1.060914137\nsSliceArray.asSlice[7].sPosition.dCor    = 1.452784097\nsSliceArray.asSlice[7].sPosition.dTra    = -53.19305018\nsSliceArray.asSlice[7].sNormal.dTra      = 1\nsSliceArray.asSlice[7].dThickness        = 4\nsSliceArray.asSlice[7].dPhaseFOV         = 240\nsSliceArray.asSlice[7].dReadoutFOV       = 240\nsSliceArray.asSlice[8].sPosition.dSag    = 1.060914137\nsSliceArray.asSlice[8].sPosition.dCor    = 1.452784097\nsSliceArray.asSlice[8].sPosition.dTra    = -49.19305018\nsSliceArray.asSlice[8].sNormal.dTra      = 1\nsSliceArray.asSlice[8].dThickness        = 4\nsSliceArray.asSlice[8].dPhaseFOV         = 240\nsSliceArray.asSlice[8].dReadoutFOV       = 240\nsSliceArray.asSlice[9].sPosition.dSag    = 1.060914137\nsSliceArray.asSlice[9].sPosition.dCor    = 1.452784097\nsSliceArray.asSlice[9].sPosition.dTra    = -45.19305018\nsSliceArray.asSlice[9].sNormal.dTra      = 1\nsSliceArray.asSlice[9].dThickness        = 4\nsSliceArray.asSlice[9].dPhaseFOV         = 240\nsSliceArray.asSlice[9].dReadoutFOV       = 240\nsSliceArray.asSlice[10].sPosition.dSag   = 1.060914137\nsSliceArray.asSlice[10].sPosition.dCor   = 1.452784097\nsSliceArray.asSlice[10].sPosition.dTra   = -41.19305018\nsSliceArray.asSlice[10].sNormal.dTra     = 1\nsSliceArray.asSlice[10].dThickness       = 4\nsSliceArray.asSlice[10].dPhaseFOV        = 240\nsSliceArray.asSlice[10].dReadoutFOV      = 240\nsSliceArray.asSlice[11].sPosition.dSag   = 1.060914137\nsSliceArray.asSlice[11].sPosition.dCor   = 1.452784097\nsSliceArray.asSlice[11].sPosition.dTra   = -37.19305018\nsSliceArray.asSlice[11].sNormal.dTra     = 1\nsSliceArray.asSlice[11].dThickness       = 4\nsSliceArray.asSlice[11].dPhaseFOV        = 240\nsSliceArray.asSlice[11].dReadoutFOV      = 240\nsSliceArray.asSlice[12].sPosition.dSag   = 1.060914137\nsSliceArray.asSlice[12].sPosition.dCor   = 1.452784097\nsSliceArray.asSlice[12].sPosition.dTra   = -33.19305018\nsSliceArray.asSlice[12].sNormal.dTra     = 1\nsSliceArray.asSlice[12].dThickness       = 4\nsSliceArray.asSlice[12].dPhaseFOV        = 240\nsSliceArray.asSlice[12].dReadoutFOV      = 240\nsSliceArray.asSlice[13].sPosition.dSag   = 1.060914137\nsSliceArray.asSlice[13].sPosition.dCor   = 1.452784097\nsSliceArray.asSlice[13].sPosition.dTra   = -29.19305018\nsSliceArray.asSlice[13].sNormal.dTra     = 1\nsSliceArray.asSlice[13].dThickness       = 4\nsSliceArray.asSlice[13].dPhaseFOV        = 240\nsSliceArray.asSlice[13].dReadoutFOV      = 240\nsSliceArray.asSlice[14].sPosition.dSag   = 1.060914137\nsSliceArray.asSlice[14].sPosition.dCor   = 1.452784097\nsSliceArray.asSlice[14].sPosition.dTra   = -25.19305018\nsSliceArray.asSlice[14].sNormal.dTra     = 1\nsSliceArray.asSlice[14].dThickness       = 4\nsSliceArray.asSlice[14].dPhaseFOV        = 240\nsSliceArray.asSlice[14].dReadoutFOV      = 240\nsSliceArray.asSlice[15].sPosition.dSag   = 1.060914137\nsSliceArray.asSlice[15].sPosition.dCor   = 1.452784097\nsSliceArray.asSlice[15].sPosition.dTra   = -21.19305018\nsSliceArray.asSlice[15].sNormal.dTra     = 1\nsSliceArray.asSlice[15].dThickness       = 4\nsSliceArray.asSlice[15].dPhaseFOV        = 240\nsSliceArray.asSlice[15].dReadoutFOV      = 240\nsSliceArray.asSlice[16].sPosition.dSag   = 1.060914137\nsSliceArray.asSlice[16].sPosition.dCor   = 1.452784097\nsSliceArray.asSlice[16].sPosition.dTra   = -17.19305018\nsSliceArray.asSlice[16].sNormal.dTra     = 1\nsSliceArray.asSlice[16].dThickness       = 4\nsSliceArray.asSlice[16].dPhaseFOV        = 240\nsSliceArray.asSlice[16].dReadoutFOV      = 240\nsSliceArray.asSlice[17].sPosition.dSag   = 1.060914137\nsSliceArray.asSlice[17].sPosition.dCor   = 1.452784097\nsSliceArray.asSlice[17].sPosition.dTra   = -13.19305018\nsSliceArray.asSlice[17].sNormal.dTra     = 1\nsSliceArray.asSlice[17].dThickness       = 4\nsSliceArray.asSlice[17].dPhaseFOV        = 240\nsSliceArray.asSlice[17].dReadoutFOV      = 240\nsSliceArray.asSlice[18].sPosition.dSag   = 1.060914137\nsSliceArray.asSlice[18].sPosition.dCor   = 1.452784097\nsSliceArray.asSlice[18].sPosition.dTra   = -9.193050182\nsSliceArray.asSlice[18].sNormal.dTra     = 1\nsSliceArray.asSlice[18].dThickness       = 4\nsSliceArray.asSlice[18].dPhaseFOV        = 240\nsSliceArray.asSlice[18].dReadoutFOV      = 240\nsSliceArray.asSlice[19].sPosition.dSag   = 1.060914137\nsSliceArray.asSlice[19].sPosition.dCor   = 1.452784097\nsSliceArray.asSlice[19].sPosition.dTra   = -5.193050182\nsSliceArray.asSlice[19].sNormal.dTra     = 1\nsSliceArray.asSlice[19].dThickness       = 4\nsSliceArray.asSlice[19].dPhaseFOV        = 240\nsSliceArray.asSlice[19].dReadoutFOV      = 240\nsSliceArray.asSlice[20].sPosition.dSag   = 1.060914137\nsSliceArray.asSlice[20].sPosition.dCor   = 1.452784097\nsSliceArray.asSlice[20].sPosition.dTra   = -1.193050182\nsSliceArray.asSlice[20].sNormal.dTra     = 1\nsSliceArray.asSlice[20].dThickness       = 4\nsSliceArray.asSlice[20].dPhaseFOV        = 240\nsSliceArray.asSlice[20].dReadoutFOV      = 240\nsSliceArray.asSlice[21].sPosition.dSag   = 1.060914137\nsSliceArray.asSlice[21].sPosition.dCor   = 1.452784097\nsSliceArray.asSlice[21].sPosition.dTra   = 2.806949818\nsSliceArray.asSlice[21].sNormal.dTra     = 1\nsSliceArray.asSlice[21].dThickness       = 4\nsSliceArray.asSlice[21].dPhaseFOV        = 240\nsSliceArray.asSlice[21].dReadoutFOV      = 240\nsSliceArray.asSlice[22].sPosition.dSag   = 1.060914137\nsSliceArray.asSlice[22].sPosition.dCor   = 1.452784097\nsSliceArray.asSlice[22].sPosition.dTra   = 6.806949818\nsSliceArray.asSlice[22].sNormal.dTra     = 1\nsSliceArray.asSlice[22].dThickness       = 4\nsSliceArray.asSlice[22].dPhaseFOV        = 240\nsSliceArray.asSlice[22].dReadoutFOV      = 240\nsSliceArray.asSlice[23].sPosition.dSag   = 1.060914137\nsSliceArray.asSlice[23].sPosition.dCor   = 1.452784097\nsSliceArray.asSlice[23].sPosition.dTra   = 10.80694982\nsSliceArray.asSlice[23].sNormal.dTra     = 1\nsSliceArray.asSlice[23].dThickness       = 4\nsSliceArray.asSlice[23].dPhaseFOV        = 240\nsSliceArray.asSlice[23].dReadoutFOV      = 240\nsSliceArray.asSlice[24].sPosition.dSag   = 1.060914137\nsSliceArray.asSlice[24].sPosition.dCor   = 1.452784097\nsSliceArray.asSlice[24].sPosition.dTra   = 14.80694982\nsSliceArray.asSlice[24].sNormal.dTra     = 1\nsSliceArray.asSlice[24].dThickness       = 4\nsSliceArray.asSlice[24].dPhaseFOV        = 240\nsSliceArray.asSlice[24].dReadoutFOV      = 240\nsSliceArray.asSlice[25].sPosition.dSag   = 1.060914137\nsSliceArray.asSlice[25].sPosition.dCor   = 1.452784097\nsSliceArray.asSlice[25].sPosition.dTra   = 18.80694982\nsSliceArray.asSlice[25].sNormal.dTra     = 1\nsSliceArray.asSlice[25].dThickness       = 4\nsSliceArray.asSlice[25].dPhaseFOV        = 240\nsSliceArray.asSlice[25].dReadoutFOV      = 240\nsSliceArray.asSlice[26].sPosition.dSag   = 1.060914137\nsSliceArray.asSlice[26].sPosition.dCor   = 1.452784097\nsSliceArray.asSlice[26].sPosition.dTra   = 22.80694982\nsSliceArray.asSlice[26].sNormal.dTra     = 1\nsSliceArray.asSlice[26].dThickness       = 4\nsSliceArray.asSlice[26].dPhaseFOV        = 240\nsSliceArray.asSlice[26].dReadoutFOV      = 240\nsSliceArray.asSlice[27].sPosition.dSag   = 1.060914137\nsSliceArray.asSlice[27].sPosition.dCor   = 1.452784097\nsSliceArray.asSlice[27].sPosition.dTra   = 26.80694982\nsSliceArray.asSlice[27].sNormal.dTra     = 1\nsSliceArray.asSlice[27].dThickness       = 4\nsSliceArray.asSlice[27].dPhaseFOV        = 240\nsSliceArray.asSlice[27].dReadoutFOV      = 240\nsSliceArray.asSlice[28].sPosition.dSag   = 1.060914137\nsSliceArray.asSlice[28].sPosition.dCor   = 1.452784097\nsSliceArray.asSlice[28].sPosition.dTra   = 30.80694982\nsSliceArray.asSlice[28].sNormal.dTra     = 1\nsSliceArray.asSlice[28].dThickness       = 4\nsSliceArray.asSlice[28].dPhaseFOV        = 240\nsSliceArray.asSlice[28].dReadoutFOV      = 240\nsSliceArray.asSlice[29].sPosition.dSag   = 1.060914137\nsSliceArray.asSlice[29].sPosition.dCor   = 1.452784097\nsSliceArray.asSlice[29].sPosition.dTra   = 34.80694982\nsSliceArray.asSlice[29].sNormal.dTra     = 1\nsSliceArray.asSlice[29].dThickness       = 4\nsSliceArray.asSlice[29].dPhaseFOV        = 240\nsSliceArray.asSlice[29].dReadoutFOV      = 240\nsSliceArray.asSlice[30].sPosition.dSag   = 1.060914137\nsSliceArray.asSlice[30].sPosition.dCor   = 1.452784097\nsSliceArray.asSlice[30].sPosition.dTra   = 38.80694982\nsSliceArray.asSlice[30].sNormal.dTra     = 1\nsSliceArray.asSlice[30].dThickness       = 4\nsSliceArray.asSlice[30].dPhaseFOV        = 240\nsSliceArray.asSlice[30].dReadoutFOV      = 240\nsSliceArray.asSlice[31].sPosition.dSag   = 1.060914137\nsSliceArray.asSlice[31].sPosition.dCor   = 1.452784097\nsSliceArray.asSlice[31].sPosition.dTra   = 42.80694982\nsSliceArray.asSlice[31].sNormal.dTra     = 1\nsSliceArray.asSlice[31].dThickness       = 4\nsSliceArray.asSlice[31].dPhaseFOV        = 240\nsSliceArray.asSlice[31].dReadoutFOV      = 240\nsSliceArray.asSlice[32].sPosition.dSag   = 1.060914137\nsSliceArray.asSlice[32].sPosition.dCor   = 1.452784097\nsSliceArray.asSlice[32].sPosition.dTra   = 46.80694982\nsSliceArray.asSlice[32].sNormal.dTra     = 1\nsSliceArray.asSlice[32].dThickness       = 4\nsSliceArray.asSlice[32].dPhaseFOV        = 240\nsSliceArray.asSlice[32].dReadoutFOV      = 240\nsSliceArray.asSlice[33].sPosition.dSag   = 1.060914137\nsSliceArray.asSlice[33].sPosition.dCor   = 1.452784097\nsSliceArray.asSlice[33].sPosition.dTra   = 50.80694982\nsSliceArray.asSlice[33].sNormal.dTra     = 1\nsSliceArray.asSlice[33].dThickness       = 4\nsSliceArray.asSlice[33].dPhaseFOV        = 240\nsSliceArray.asSlice[33].dReadoutFOV      = 240\nsSliceArray.asSlice[34].sPosition.dSag   = 1.060914137\nsSliceArray.asSlice[34].sPosition.dCor   = 1.452784097\nsSliceArray.asSlice[34].sPosition.dTra   = 54.80694982\nsSliceArray.asSlice[34].sNormal.dTra     = 1\nsSliceArray.asSlice[34].dThickness       = 4\nsSliceArray.asSlice[34].dPhaseFOV        = 240\nsSliceArray.asSlice[34].dReadoutFOV      = 240\nsSliceArray.asSlice[35].sPosition.dSag   = 1.060914137\nsSliceArray.asSlice[35].sPosition.dCor   = 1.452784097\nsSliceArray.asSlice[35].sPosition.dTra   = 58.80694982\nsSliceArray.asSlice[35].sNormal.dTra     = 1\nsSliceArray.asSlice[35].dThickness       = 4\nsSliceArray.asSlice[35].dPhaseFOV        = 240\nsSliceArray.asSlice[35].dReadoutFOV      = 240\nsSliceArray.anAsc[1]                     = 1\nsSliceArray.anAsc[2]                     = 2\nsSliceArray.anAsc[3]                     = 3\nsSliceArray.anAsc[4]                     = 4\nsSliceArray.anAsc[5]                     = 5\nsSliceArray.anAsc[6]                     = 6\nsSliceArray.anAsc[7]                     = 7\nsSliceArray.anAsc[8]                     = 8\nsSliceArray.anAsc[9]                     = 9\nsSliceArray.anAsc[10]                    = 10\nsSliceArray.anAsc[11]                    = 11\nsSliceArray.anAsc[12]                    = 12\nsSliceArray.anAsc[13]                    = 13\nsSliceArray.anAsc[14]                    = 14\nsSliceArray.anAsc[15]                    = 15\nsSliceArray.anAsc[16]                    = 16\nsSliceArray.anAsc[17]                    = 17\nsSliceArray.anAsc[18]                    = 18\nsSliceArray.anAsc[19]                    = 19\nsSliceArray.anAsc[20]                    = 20\nsSliceArray.anAsc[21]                    = 21\nsSliceArray.anAsc[22]                    = 22\nsSliceArray.anAsc[23]                    = 23\nsSliceArray.anAsc[24]                    = 24\nsSliceArray.anAsc[25]                    = 25\nsSliceArray.anAsc[26]                    = 26\nsSliceArray.anAsc[27]                    = 27\nsSliceArray.anAsc[28]                    = 28\nsSliceArray.anAsc[29]                    = 29\nsSliceArray.anAsc[30]                    = 30\nsSliceArray.anAsc[31]                    = 31\nsSliceArray.anAsc[32]                    = 32\nsSliceArray.anAsc[33]                    = 33\nsSliceArray.anAsc[34]                    = 34\nsSliceArray.anAsc[35]                    = 35\nsSliceArray.anPos[1]                     = 1\nsSliceArray.anPos[2]                     = 2\nsSliceArray.anPos[3]                     = 3\nsSliceArray.anPos[4]                     = 4\nsSliceArray.anPos[5]                     = 5\nsSliceArray.anPos[6]                     = 6\nsSliceArray.anPos[7]                     = 7\nsSliceArray.anPos[8]                     = 8\nsSliceArray.anPos[9]                     = 9\nsSliceArray.anPos[10]                    = 10\nsSliceArray.anPos[11]                    = 11\nsSliceArray.anPos[12]                    = 12\nsSliceArray.anPos[13]                    = 13\nsSliceArray.anPos[14]                    = 14\nsSliceArray.anPos[15]                    = 15\nsSliceArray.anPos[16]                    = 16\nsSliceArray.anPos[17]                    = 17\nsSliceArray.anPos[18]                    = 18\nsSliceArray.anPos[19]                    = 19\nsSliceArray.anPos[20]                    = 20\nsSliceArray.anPos[21]                    = 21\nsSliceArray.anPos[22]                    = 22\nsSliceArray.anPos[23]                    = 23\nsSliceArray.anPos[24]                    = 24\nsSliceArray.anPos[25]                    = 25\nsSliceArray.anPos[26]                    = 26\nsSliceArray.anPos[27]                    = 27\nsSliceArray.anPos[28]                    = 28\nsSliceArray.anPos[29]                    = 29\nsSliceArray.anPos[30]                    = 30\nsSliceArray.anPos[31]                    = 31\nsSliceArray.anPos[32]                    = 32\nsSliceArray.anPos[33]                    = 33\nsSliceArray.anPos[34]                    = 34\nsSliceArray.anPos[35]                    = 35\nsSliceArray.lSize                        = 36\nsSliceArray.lConc                        = 1\nsSliceArray.ucMode                       = 0x4\nsSliceArray.sTSat.dThickness             = 50\nsGroupArray.asGroup[0].nSize             = 36\nsGroupArray.anMember[1]                  = 1\nsGroupArray.anMember[2]                  = 2\nsGroupArray.anMember[3]                  = 3\nsGroupArray.anMember[4]                  = 4\nsGroupArray.anMember[5]                  = 5\nsGroupArray.anMember[6]                  = 6\nsGroupArray.anMember[7]                  = 7\nsGroupArray.anMember[8]                  = 8\nsGroupArray.anMember[9]                  = 9\nsGroupArray.anMember[10]                 = 10\nsGroupArray.anMember[11]                 = 11\nsGroupArray.anMember[12]                 = 12\nsGroupArray.anMember[13]                 = 13\nsGroupArray.anMember[14]                 = 14\nsGroupArray.anMember[15]                 = 15\nsGroupArray.anMember[16]                 = 16\nsGroupArray.anMember[17]                 = 17\nsGroupArray.anMember[18]                 = 18\nsGroupArray.anMember[19]                 = 19\nsGroupArray.anMember[20]                 = 20\nsGroupArray.anMember[21]                 = 21\nsGroupArray.anMember[22]                 = 22\nsGroupArray.anMember[23]                 = 23\nsGroupArray.anMember[24]                 = 24\nsGroupArray.anMember[25]                 = 25\nsGroupArray.anMember[26]                 = 26\nsGroupArray.anMember[27]                 = 27\nsGroupArray.anMember[28]                 = 28\nsGroupArray.anMember[29]                 = 29\nsGroupArray.anMember[30]                 = 30\nsGroupArray.anMember[31]                 = 31\nsGroupArray.anMember[32]                 = 32\nsGroupArray.anMember[33]                 = 33\nsGroupArray.anMember[34]                 = 34\nsGroupArray.anMember[35]                 = 35\nsGroupArray.anMember[36]                 = -1\nsGroupArray.lSize                        = 1\nsGroupArray.sPSat.dThickness             = 50\nsGroupArray.sPSat.dGap                   = 10\nsAutoAlign.dAAMatrix[0]                  = 1\nsAutoAlign.dAAMatrix[5]                  = 1\nsAutoAlign.dAAMatrix[10]                 = 1\nsAutoAlign.dAAMatrix[15]                 = 1\nsNavigatorPara.lBreathHoldMeas           = 1\nsNavigatorPara.lRespComp                 = 4\nsBladePara.dBladeCoverage                = 100\nsBladePara.ucMotionCorr                  = 0x2\nsPrepPulses.ucFatSat                     = 0x1\nsPrepPulses.ucWaterSat                   = 0x4\nsPrepPulses.ucInversion                  = 0x4\nsPrepPulses.ucSatRecovery                = 0x1\nsPrepPulses.ucT2Prep                     = 0x1\nsPrepPulses.ucTIScout                    = 0x1\nsPrepPulses.ucFatSatMode                 = 0x2\nsPrepPulses.dDarkBloodThickness          = 200\nsPrepPulses.dDarkBloodFlipAngle          = 200\nsPrepPulses.dT2PrepDuration              = 40\nsPrepPulses.dIRPulseThicknessFactor      = 0.77\nsKSpace.dPhaseResolution                 = 1\nsKSpace.dSliceResolution                 = 1\nsKSpace.dAngioDynCentralRegionA          = 20\nsKSpace.dAngioDynSamplingDensityB        = 25\nsKSpace.lBaseResolution                  = 128\nsKSpace.lPhaseEncodingLines              = 128\nsKSpace.lPartitions                      = 64\nsKSpace.lImagesPerSlab                   = 64\nsKSpace.lRadialViews                     = 64\nsKSpace.lRadialInterleavesPerImage       = 2\nsKSpace.lLinesPerShot                    = 1\nsKSpace.unReordering                     = 0x1\nsKSpace.dSeqPhasePartialFourierForSNR    = 1\nsKSpace.ucPhasePartialFourier            = 0x4\nsKSpace.ucSlicePartialFourier            = 0x10\nsKSpace.ucAveragingMode                  = 0x2\nsKSpace.ucMultiSliceMode                 = 0x2\nsKSpace.ucDimension                      = 0x2\nsKSpace.ucTrajectory                     = 0x1\nsKSpace.ucViewSharing                    = 0x1\nsKSpace.ucAsymmetricEchoMode             = 0x1\nsFastImaging.lEPIFactor                  = 128\nsFastImaging.lTurboFactor                = 1\nsFastImaging.lSliceTurboFactor           = 1\nsFastImaging.lSegments                   = 1\nsFastImaging.lEchoSpacing                = 690\nsFastImaging.ucFreeEchoSpacing           = 0x1\nsFastImaging.ucSegmentationMode          = 0x1\nsFastImaging.lShots                      = 1\nsFastImaging.lEchoTrainDuration          = 700\nsPhysioImaging.lSignal1                  = 1\nsPhysioImaging.lMethod1                  = 1\nsPhysioImaging.lSignal2                  = 1\nsPhysioImaging.lMethod2                  = 1\nsPhysioImaging.lPhases                   = 1\nsPhysioImaging.lRetroGatedImages         = 16\nsPhysioImaging.sPhysioECG.lTriggerPulses = 1\nsPhysioImaging.sPhysioECG.lTriggerWindow = 5\nsPhysioImaging.sPhysioECG.lArrhythmiaDetection = 1\nsPhysioImaging.sPhysioECG.lCardiacGateOnThreshold = 100000\nsPhysioImaging.sPhysioECG.lCardiacGateOffThreshold = 700000\nsPhysioImaging.sPhysioECG.lTriggerIntervals = 1\nsPhysioImaging.sPhysioPulse.lTriggerPulses = 1\nsPhysioImaging.sPhysioPulse.lTriggerWindow = 5\nsPhysioImaging.sPhysioPulse.lCardiacGateOnThreshold = 100000\nsPhysioImaging.sPhysioPulse.lCardiacGateOffThreshold = 700000\nsPhysioImaging.sPhysioPulse.lTriggerIntervals = 1\nsPhysioImaging.sPhysioExt.lTriggerPulses = 1\nsPhysioImaging.sPhysioExt.lTriggerWindow = 5\nsPhysioImaging.sPhysioExt.lCardiacGateOnThreshold = 100000\nsPhysioImaging.sPhysioExt.lCardiacGateOffThreshold = 700000\nsPhysioImaging.sPhysioExt.lTriggerIntervals = 1\nsPhysioImaging.sPhysioResp.lRespGateThreshold = 20\nsPhysioImaging.sPhysioResp.lRespGatePhase = 2\nsPhysioImaging.sPhysioResp.dGatingRatio  = 0.3\nsPhysioImaging.sPhysioNative.ucMode      = 0x1\nsSpecPara.lPhaseCyclingType              = 1\nsSpecPara.lPhaseEncodingType             = 1\nsSpecPara.lRFExcitationBandwidth         = 1\nsSpecPara.ucRemoveOversampling           = 0x1\nsSpecPara.lDecouplingType                = 1\nsSpecPara.lNOEType                       = 1\nsSpecPara.lExcitationType                = 1\nsSpecPara.lSpectralSuppression           = 1\nsDiffusion.ulMode                        = 0x1\nsAngio.ucPCFlowMode                      = 0x2\nsAngio.ucTOFInflow                       = 0x4\nsAngio.lDynamicReconMode                 = 1\nsAngio.lTemporalInterpolation            = 1\nsDistortionCorrFilter.ucMode             = 0x1\nsPat.lAccelFactPE                        = 2\nsPat.lAccelFact3D                        = 1\nsPat.lRefLinesPE                         = 24\nsPat.ucPATMode                           = 0x2\nsPat.ucRefScanMode                       = 0x4\nsMDS.ulMdsModeMask                       = 0x1\nsMDS.sMdsEndPosSBCS_mm.dTra              = 600\nsMDS.ulMdsReconMode                      = 0x1\nsMDS.dMdsRangeExtension                  = 600\nucDisableChangeStoreImages               = 0x1\nucReconstructionMode                     = 0x1\nucOneSeriesForAllMeas                    = 0x1\nucPHAPSMode                              = 0x1\nucDixon                                  = 0x1\nucDixonSaveOriginal                      = 0x1\nucWaitForPrepareCompletion               = 0x1\nlAverages                                = 1\ndAveragesDouble                          = 1\nlRepetitions                             = 37\nlDelayTimeInTR                           = 5800000\nadFlipAngleDegree[0]                     = 75\nlScanTimeSec                             = 8\nlTotalScanTimeSec                        = 328\ndRefSNR                                  = 52863.03056\ndRefSNR_VOI                              = 52863.03056\ntdefaultEVAProt                          = ""%SiemensEvaDefProt%\\BOLD\\t-test_10B10A_moco.evp""\nasCoilSelectMeas[0].tNucleus             = ""1H""\nasCoilSelectMeas[0].iUsedRFactor         = 3\nasCoilSelectMeas[0].asList[0].sCoilElementID.tCoilID = ""HeadMatrix""\nasCoilSelectMeas[0].asList[0].sCoilElementID.lCoilCopy = 1\nasCoilSelectMeas[0].asList[0].sCoilElementID.tElement = ""H4P""\nasCoilSelectMeas[0].asList[0].lElementSelected = 1\nasCoilSelectMeas[0].asList[0].lRxChannelConnected = 1\nasCoilSelectMeas[0].asList[1].sCoilElementID.tCoilID = ""HeadMatrix""\nasCoilSelectMeas[0].asList[1].sCoilElementID.lCoilCopy = 1\nasCoilSelectMeas[0].asList[1].sCoilElementID.tElement = ""H3P""\nasCoilSelectMeas[0].asList[1].lElementSelected = 1\nasCoilSelectMeas[0].asList[1].lRxChannelConnected = 2\nasCoilSelectMeas[0].asList[2].sCoilElementID.tCoilID = ""HeadMatrix""\nasCoilSelectMeas[0].asList[2].sCoilElementID.lCoilCopy = 1\nasCoilSelectMeas[0].asList[2].sCoilElementID.tElement = ""H3S""\nasCoilSelectMeas[0].asList[2].lElementSelected = 1\nasCoilSelectMeas[0].asList[2].lRxChannelConnected = 3\nasCoilSelectMeas[0].asList[3].sCoilElementID.tCoilID = ""HeadMatrix""\nasCoilSelectMeas[0].asList[3].sCoilElementID.lCoilCopy = 1\nasCoilSelectMeas[0].asList[3].sCoilElementID.tElement = ""H3T""\nasCoilSelectMeas[0].asList[3].lElementSelected = 1\nasCoilSelectMeas[0].asList[3].lRxChannelConnected = 4\nasCoilSelectMeas[0].asList[4].sCoilElementID.tCoilID = ""HeadMatrix""\nasCoilSelectMeas[0].asList[4].sCoilElementID.lCoilCopy = 1\nasCoilSelectMeas[0].asList[4].sCoilElementID.tElement = ""H4S""\nasCoilSelectMeas[0].asList[4].lElementSelected = 1\nasCoilSelectMeas[0].asList[4].lRxChannelConnected = 5\nasCoilSelectMeas[0].asList[5].sCoilElementID.tCoilID = ""HeadMatrix""\nasCoilSelectMeas[0].asList[5].sCoilElementID.lCoilCopy = 1\nasCoilSelectMeas[0].asList[5].sCoilElementID.tElement = ""H4T""\nasCoilSelectMeas[0].asList[5].lElementSelected = 1\nasCoilSelectMeas[0].asList[5].lRxChannelConnected = 6\nasCoilSelectMeas[0].asList[6].sCoilElementID.tCoilID = ""HeadMatrix""\nasCoilSelectMeas[0].asList[6].sCoilElementID.lCoilCopy = 1\nasCoilSelectMeas[0].asList[6].sCoilElementID.tElement = ""H2P""\nasCoilSelectMeas[0].asList[6].lElementSelected = 1\nasCoilSelectMeas[0].asList[6].lRxChannelConnected = 7\nasCoilSelectMeas[0].asList[7].sCoilElementID.tCoilID = ""HeadMatrix""\nasCoilSelectMeas[0].asList[7].sCoilElementID.lCoilCopy = 1\nasCoilSelectMeas[0].asList[7].sCoilElementID.tElement = ""H1P""\nasCoilSelectMeas[0].asList[7].lElementSelected = 1\nasCoilSelectMeas[0].asList[7].lRxChannelConnected = 8\nasCoilSelectMeas[0].asList[8].sCoilElementID.tCoilID = ""HeadMatrix""\nasCoilSelectMeas[0].asList[8].sCoilElementID.lCoilCopy = 1\nasCoilSelectMeas[0].asList[8].sCoilElementID.tElement = ""H1S""\nasCoilSelectMeas[0].asList[8].lElementSelected = 1\nasCoilSelectMeas[0].asList[8].lRxChannelConnected = 9\nasCoilSelectMeas[0].asList[9].sCoilElementID.tCoilID = ""HeadMatrix""\nasCoilSelectMeas[0].asList[9].sCoilElementID.lCoilCopy = 1\nasCoilSelectMeas[0].asList[9].sCoilElementID.tElement = ""H1T""\nasCoilSelectMeas[0].asList[9].lElementSelected = 1\nasCoilSelectMeas[0].asList[9].lRxChannelConnected = 10\nasCoilSelectMeas[0].asList[10].sCoilElementID.tCoilID = ""HeadMatrix""\nasCoilSelectMeas[0].asList[10].sCoilElementID.lCoilCopy = 1\nasCoilSelectMeas[0].asList[10].sCoilElementID.tElement = ""H2S""\nasCoilSelectMeas[0].asList[10].lElementSelected = 1\nasCoilSelectMeas[0].asList[10].lRxChannelConnected = 11\nasCoilSelectMeas[0].asList[11].sCoilElementID.tCoilID = ""HeadMatrix""\nasCoilSelectMeas[0].asList[11].sCoilElementID.lCoilCopy = 1\nasCoilSelectMeas[0].asList[11].sCoilElementID.tElement = ""H2T""\nasCoilSelectMeas[0].asList[11].lElementSelected = 1\nasCoilSelectMeas[0].asList[11].lRxChannelConnected = 12\nasCoilSelectMeas[0].sCOILPLUGS.aulPlugId[0] = 0xff\nasCoilSelectMeas[0].sCOILPLUGS.aulPlugId[1] = 0xee\nasCoilSelectMeas[0].sCOILPLUGS.aulPlugId[2] = 0xee\nasCoilSelectMeas[0].sCOILPLUGS.aulPlugId[3] = 0xad\nasCoilSelectMeas[0].sCOILPLUGS.aulPlugId[4] = 0xee\nasCoilSelectMeas[0].sCOILPLUGS.aulPlugId[5] = 0xee\nasCoilSelectMeas[0].sCOILPLUGS.aulPlugId[6] = 0x5d\nasCoilSelectMeas[0].sCOILPLUGS.aulPlugId[7] = 0xee\nasCoilSelectMeas[0].sCOILPLUGS.aulPlugId[8] = 0xee\nasCoilSelectMeas[0].sCOILPLUGS.aulPlugId[9] = 0xee\nasCoilSelectMeas[0].sCOILPLUGS.aulPlugId[10] = 0xee\nasCoilSelectMeas[0].sCOILPLUGS.auiNmbrOfNibbles[0] = 0x2\nasCoilSelectMeas[0].sCOILPLUGS.auiNmbrOfNibbles[1] = 0x2\nasCoilSelectMeas[0].sCOILPLUGS.auiNmbrOfNibbles[2] = 0x2\nasCoilSelectMeas[0].sCOILPLUGS.auiNmbrOfNibbles[3] = 0x2\nasCoilSelectMeas[0].sCOILPLUGS.auiNmbrOfNibbles[4] = 0x2\nasCoilSelectMeas[0].sCOILPLUGS.auiNmbrOfNibbles[5] = 0x2\nasCoilSelectMeas[0].sCOILPLUGS.auiNmbrOfNibbles[6] = 0x2\nasCoilSelectMeas[0].sCOILPLUGS.auiNmbrOfNibbles[7] = 0x2\nasCoilSelectMeas[0].sCOILPLUGS.auiNmbrOfNibbles[8] = 0x2\nasCoilSelectMeas[0].sCOILPLUGS.auiNmbrOfNibbles[9] = 0x2\nasCoilSelectMeas[0].sCOILPLUGS.auiNmbrOfNibbles[10] = 0x2\nasCoilSelectMeas[0].aFFT_SCALE[0].flFactor = 2.1931\nasCoilSelectMeas[0].aFFT_SCALE[0].bValid = 1\nasCoilSelectMeas[0].aFFT_SCALE[0].lRxChannel = 1\nasCoilSelectMeas[0].aFFT_SCALE[1].flFactor = 2.21194\nasCoilSelectMeas[0].aFFT_SCALE[1].bValid = 1\nasCoilSelectMeas[0].aFFT_SCALE[1].lRxChannel = 2\nasCoilSelectMeas[0].aFFT_SCALE[2].flFactor = 2.2935\nasCoilSelectMeas[0].aFFT_SCALE[2].bValid = 1\nasCoilSelectMeas[0].aFFT_SCALE[2].lRxChannel = 3\nasCoilSelectMeas[0].aFFT_SCALE[3].flFactor = 2.41715\nasCoilSelectMeas[0].aFFT_SCALE[3].bValid = 1\nasCoilSelectMeas[0].aFFT_SCALE[3].lRxChannel = 4\nasCoilSelectMeas[0].aFFT_SCALE[4].flFactor = 2.42931\nasCoilSelectMeas[0].aFFT_SCALE[4].bValid = 1\nasCoilSelectMeas[0].aFFT_SCALE[4].lRxChannel = 5\nasCoilSelectMeas[0].aFFT_SCALE[5].flFactor = 2.33435\nasCoilSelectMeas[0].aFFT_SCALE[5].bValid = 1\nasCoilSelectMeas[0].aFFT_SCALE[5].lRxChannel = 6\nasCoilSelectMeas[0].aFFT_SCALE[6].flFactor = 2.71661\nasCoilSelectMeas[0].aFFT_SCALE[6].bValid = 1\nasCoilSelectMeas[0].aFFT_SCALE[6].lRxChannel = 7\nasCoilSelectMeas[0].aFFT_SCALE[7].flFactor = 2.73861\nasCoilSelectMeas[0].aFFT_SCALE[7].bValid = 1\nasCoilSelectMeas[0].aFFT_SCALE[7].lRxChannel = 8\nasCoilSelectMeas[0].aFFT_SCALE[8].flFactor = 2.70716\nasCoilSelectMeas[0].aFFT_SCALE[8].bValid = 1\nasCoilSelectMeas[0].aFFT_SCALE[8].lRxChannel = 9\nasCoilSelectMeas[0].aFFT_SCALE[9].flFactor = 2.75873\nasCoilSelectMeas[0].aFFT_SCALE[9].bValid = 1\nasCoilSelectMeas[0].aFFT_SCALE[9].lRxChannel = 10\nasCoilSelectMeas[0].aFFT_SCALE[10].flFactor = 2.77491\nasCoilSelectMeas[0].aFFT_SCALE[10].bValid = 1\nasCoilSelectMeas[0].aFFT_SCALE[10].lRxChannel = 11\nasCoilSelectMeas[0].aFFT_SCALE[11].flFactor = 2.80183\nasCoilSelectMeas[0].aFFT_SCALE[11].bValid = 1\nasCoilSelectMeas[0].aFFT_SCALE[11].lRxChannel = 12\nsCoilSelectUI.asList[0].sCoilElementID.tCoilID = ""CP_HeadArray""\nsCoilSelectUI.asList[0].sCoilElementID.lCoilCopy = 1\nsCoilSelectUI.asList[0].sCoilElementID.tElement = ""HE""\nsCoilSelectUI.asList[0].lElementSelected = 1\nsCoilSelectUI.asList[0].lRxChannelConnected = 1\nsEFISPEC.bEFIDataValid                   = 1\nucBOLDParadigmArray[0]                   = 0xaa\nucBOLDParadigmArray[1]                   = 0xaa\nucBOLDParadigmArray[2]                   = 0x5a # \'Z\'\nucBOLDParadigmArray[3]                   = 0x55 # \'U\'\nucBOLDParadigmArray[4]                   = 0x55 # \'U\'\nucBOLDParadigmArray[5]                   = 0x55 # \'U\'\nucBOLDParadigmArray[6]                   = 0x55 # \'U\'\nucBOLDParadigmArray[7]                   = 0xa5\nucBOLDParadigmArray[8]                   = 0xaa\nucBOLDParadigmArray[9]                   = 0xa\nlParadigmPeriodicity                     = 30\nucCineMode                               = 0x1\nucSequenceType                           = 0x4\nucCoilCombineMode                        = 0x1\nucFlipAngleMode                          = 0x1\nlTOM                                     = 1\nlProtID                                  = -1099\nucReadOutMode                            = 0x1\nucBold3dPace                             = 0x1\nucForcePositioningOnNDIS                 = 0x1\nucInteractiveRealtime                    = 0x1\nucInternalTablePosValid                  = 0x1\nsParametricMapping.ucParametricMap       = 0x1\n### ASCCONV END ###" \n    }\n  }\n}\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00GradientMode\x00\x00\x00\x00\x02\x00\x00\x005\x11\x00\x00\xee\x03\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x002\x00\x00\x00L\x00\x00\x00\x02\x00\x00\x005\x11\x00\x00\x01\x00\x00\x00SH\x00\x00\x16\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x05\x00\x00\x00\x05\x00\x00\x00M\x00\x00\x00\x05\x00\x00\x00Fast\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00FlowCompensation\x00tr\x00\x00\x08\x00\x00\x8e\x00\x00\x00\x02\x00\x00\x007\x11\x00\x00\xee\x03\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00CsaP\x01\x00\x00\x00SH\x00\x00\x16\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00M\x00\x00\x00\x03\x00\x00\x00No\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00PostProcProtocol\x00.\x15\x0e\xb8.\x15\x0e      <M\xc8.\x15\x0e\xc8.\x15\x0e10000000\xd8.\x15\x0e\xd8.\x15\x0e      <L\x01\x00\x00\x00UT\x00\x00\x1b\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00RFSWDOperationMode\x00\x01\xa0\xa7\xfe\x01\xb0\xa7\xfe\x01\xc0\xa7\xfe\x01\xd0\xa7\xfe\x01\xe0\xa7\xfe\x01\xf0\xa7\xfe\x01\x00\xa8\xfe\x01\x10\xa8\xfe\x01 \xa8\xfe\x010\xa8\xfe\x01@\xa8\xfe\x01\x01\x00\x00\x00SS\x00\x00\x08\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00+0      \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00RFSWDMostCriticalAspect\x00\xf0\xac\xfe\x01\x00\xad\xfe\x01\x10\xad\xfe\x01 \xad\xfe\x010\xad\xfe\x01@\xad\xfe\x01P\xad\xfe\x01`\xad\xfe\x01p\xad\xfe\x01\x80\xad\xfe\x01\x01\x00\x00\x00SH\x00\x00\x16\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x05\x00\x00\x00\x05\x00\x00\x00M\x00\x00\x00\x05\x00\x00\x00Head\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00SARMostCriticalAspect\x00\xfe\x01\xf0\xb3\xfe\x01\x00\xb4\xfe\x01\x10\xb4\xfe\x01 \xb4\xfe\x010\xb4\xfe\x01@\xb4\xfe\x01P\xb4\xfe\x01`\xb4\xfe\x01p\xb4\xfe\x01\x80\xb4\xfe\x01\x03\x00\x00\x00DS\x00\x00\x03\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x00\x0b\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x003.20000000\x00\x00\x0b\x00\x00\x00\x0b\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x000.05364229\x00\x00\x0b\x00\x00\x00\x0b\x00\x00\x00M\x00\x00\x00\x0b\x00\x00\x000.00000000\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00TablePositionOrigin\x00p\xb9\xfe\x01\x80\xb9\xfe\x01\x90\xb9\xfe\x01\xa0\xb9\xfe\x01\xb0\xb9\xfe\x01\xc0\xb9\xfe\x01\xd0\xb9\xfe\x01\xe0\xb9\xfe\x01\xf0\xb9\xfe\x01\x00\xba\xfe\x01\x10\xba\xfe\x01\x03\x00\x00\x00SL\x00\x00\x07\x00\x00\x00\x06\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x000       \x00\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00M\x00\x00\x00\t\x00\x00\x00-1263   \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00MrProtocol\x00\x01\x10\xbf\xfe\x01 \xbf\xfe\x010\xbf\xfe\x01@\xbf\xfe\x01P\xbf\xfe\x01`\xbf\xfe\x01p\xbf\xfe\x01\x80\xbf\xfe\x01\x90\xbf\xfe\x01\xa0\xbf\xfe\x01\xb0\xbf\xfe\x01\xc0\xbf\xfe\x01\xd0\xbf\xfe\x01\x01\x00\x00\x00UN\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00MrEvaProtocol\x00\xfe\x01\xc0\xca\xfe\x01\xd0\xca\xfe\x01\xe0\xca\xfe\x01\xf0\xca\xfe\x01\x00\xcb\xfe\x01\x10\xcb\xfe\x01 \xcb\xfe\x010\xcb\xfe\x01@\xcb\xfe\x01P\xcb\xfe\x01`\xcb\xfe\x01p\xcb\xfe\x01\x01\x00\x00\x00UN\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00VFModelInfo\x00   <Label> ""Protocol name"" \n          <Default> ""\x01\x00\x00\x00UN\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x00\x00\x00\x00\x00\x00\x00'
(0029, 1160) [Series Workflow Status]            UN: 'com '
(0032, 1060) Requested Procedure Description     LO: 'phantom'
(0040, 0244) Performed Procedure Step Start Date DA: '20091020'
(0040, 0245) Performed Procedure Step Start Time TM: '172423.640000'
(0040, 0253) Performed Procedure Step ID         SH: 'MR20091020172423'
(0040, 0254) Performed Procedure Step Descriptio LO: 'phantom'
(0051, 0010) Private Creator                     LO: 'SIEMENS MR HEADER'
(0051, 1008) [CSA Image Header Type]             UN: 'IMAGE NUM 4 '
(0051, 1009) [CSA Image Header Version ??]       UN: '1.0 '
(0051, 100a) [Unknown]                           UN: 'TA 00.03'
(0051, 100b) [AcquisitionMatrixText]             UN: '128p*128'
(0051, 100c) [Unknown]                           UN: 'FoV 1440*1440 '
(0051, 100e) [Unknown]                           UN: 'Tra '
(0051, 100f) [CoilString]                        UN: 'T:HEA;HEP '
(0051, 1011) [PATModeText]                       UN: 'p2'
(0051, 1012) [Unknown]                           UN: 'TP 0'
(0051, 1013) [PositivePCSDirections]             UN: '+LPH'
(0051, 1016) [Unknown]                           UN: 'p2 M/ND/MOSAIC'
(0051, 1017) [Unknown]                           UN: 'SL 4.0'
(0051, 1019) [Unknown]                           UN: 'A1/PFP/FS '
(7fe0, 0010) Pixel Data                          OW: Array of 1179648 bytes

A side-note. This is a DICOM mosaic file. A mosaic file is a DICOM file that stores an entire volume in one DICOM file.

http://nipy.sourceforge.net/nibabel/dicom/dicom_mosaic.html

You can see it's a mosaic file because, if you show the data, instead of looking like one single slice (the default for DICOM), you get a "mosaic" of slices.

In [6]:
plt.imshow(dcm_data.pixel_array, cmap='gray')
Out[6]:
<matplotlib.image.AxesImage at 0x105d181d0>

Now load up the nibabel DICOM readers. These extract even more information from DICOMs.

In [7]:
import nibabel.nicom.dicomwrappers as nicw
-c:1: UserWarning: The DICOM readers are highly experimental, unstable, and only work for Siemens time-series at the moment
Please use with caution.  We would be grateful for your help in improving them
In [8]:
dcm_wrapped = nicw.wrapper_from_data(dcm_data)
In [9]:
dcm_wrapped
Out[9]:
<nibabel.nicom.dicomwrappers.MosaicWrapper at 0x109a72f10>

The plan I recommend is to explore this object, dcm_wrapped for any further information that might be relevant to slice timing. Remember of course that you can have a look for the object attributes with dcm_wrapped. (note the dot at the end) and then do tab complete. Is there extra information in any of those fields? Recall that DICOM is confusing...

Am I right about my slice timing? How would you document your assumption about slice timing?