default_en.json 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568
  1. {
  2. "Id": "c75da44f-c7a4-4c5c-b2fd-cf4beddc5d36",
  3. "UpdateTime": "2021-05-27T14:37:08",
  4. "IsCustom": false,
  5. "Author": "",
  6. "Name": "General",
  7. "PagePadding": {
  8. "Left": 56.83,
  9. "Top": 56.83,
  10. "Right": 56.83,
  11. "Bottom": 56.83
  12. },
  13. "PageSize": {
  14. "Height": 841.88976377952747,
  15. "Width": 595.275590551181
  16. },
  17. "HeaderHeight": null,
  18. "FooterHeight": null,
  19. "HeaderDistance": 34.0,
  20. "FooterDistance": 34.0,
  21. "Tags": {},
  22. "CustomizeTranslation": {
  23. "Chinese": {},
  24. "English": {},
  25. "German": {},
  26. "Greek": {},
  27. "Malay": {},
  28. "Portuguese": {},
  29. "Romanian": {},
  30. "Spanish": {},
  31. "Swedish": {},
  32. "Norwegian": {},
  33. "Danish": {},
  34. "Finnish": {},
  35. "French": {},
  36. "Polish": {},
  37. "Russian": {},
  38. "Uighur": {},
  39. "Italian": {},
  40. "Czech": {},
  41. "Khmer": {},
  42. "Hungarian": {}
  43. },
  44. "CustomizeComments": [],
  45. "CustomizeReportComments": [],
  46. "CustomizeCalculations": [],
  47. "Blocks": [
  48. {
  49. "AutoHide": false,
  50. "IsAverageColumnWidth": false,
  51. "AllowBreakAcrossPages": true,
  52. "ColumnDefinitions": [
  53. {
  54. "Width": 477.0
  55. }
  56. ],
  57. "RowDefinitions": [
  58. {
  59. "Height": 34.3975,
  60. "Type": "MinValue",
  61. "MinHeight": 18.0
  62. },
  63. {
  64. "Height": 23.247500000000009,
  65. "Type": "MinValue",
  66. "MinHeight": 18.0
  67. }
  68. ],
  69. "Cells": [
  70. {
  71. "Row": 0,
  72. "Column": 0,
  73. "RowSpan": 1,
  74. "ColumnSpan": 1
  75. },
  76. {
  77. "Blocks": [
  78. {
  79. "LineSpace": 0.0,
  80. "Elements": [
  81. {
  82. "IsReadOnly": false,
  83. "FontName": "Arial",
  84. "FontSize": 26.0,
  85. "FontStyles": [],
  86. "FontColor": {
  87. "A": 255,
  88. "R": 0,
  89. "G": 0,
  90. "B": 0
  91. },
  92. "Background": {
  93. "A": 255,
  94. "R": 255,
  95. "G": 255,
  96. "B": 255
  97. },
  98. "LineLength": 18,
  99. "LineWidth": 189.0,
  100. "TextWrap": false,
  101. "Id": "017ce934-446f-423d-be66-664aeb89c217",
  102. "Index": 0,
  103. "Tag": {
  104. "Id": "7abbaa61-a91d-4399-a3f4-df29117d2d59",
  105. "Name": "HospitalName",
  106. "IsDefault": true,
  107. "ElementTagType": "General"
  108. },
  109. "MeasureTag": null,
  110. "HorizontalAlignment": "Stretch",
  111. "VerticalAlignment": "Center",
  112. "Margin": {
  113. "Left": 0.0,
  114. "Top": 0.0,
  115. "Right": 0.0,
  116. "Bottom": 0.0
  117. },
  118. "ElementType": {
  119. "Name": "InputText"
  120. }
  121. }
  122. ],
  123. "Id": "077c8f4e-886d-44ab-a469-19fec83aadd1",
  124. "Index": 0,
  125. "Tag": null,
  126. "MeasureTag": null,
  127. "HorizontalAlignment": "Center",
  128. "VerticalAlignment": "Center",
  129. "Margin": {
  130. "Left": 0.0,
  131. "Top": 0.0,
  132. "Right": 0.0,
  133. "Bottom": 0.0
  134. },
  135. "ElementType": {
  136. "Name": "Paragraph"
  137. }
  138. }
  139. ],
  140. "Background": {
  141. "A": 255,
  142. "R": 255,
  143. "G": 255,
  144. "B": 255
  145. },
  146. "WidthType": "FixedValue",
  147. "HeightType": "MinValue",
  148. "Borders": {
  149. "Left": {
  150. "BorderStyle": "None",
  151. "Color": {
  152. "A": 255,
  153. "R": 0,
  154. "G": 0,
  155. "B": 0
  156. },
  157. "Thickness": 1.0
  158. },
  159. "Top": {
  160. "BorderStyle": "None",
  161. "Color": {
  162. "A": 255,
  163. "R": 0,
  164. "G": 0,
  165. "B": 0
  166. },
  167. "Thickness": 1.0
  168. },
  169. "Right": {
  170. "BorderStyle": "None",
  171. "Color": {
  172. "A": 255,
  173. "R": 0,
  174. "G": 0,
  175. "B": 0
  176. },
  177. "Thickness": 1.0
  178. },
  179. "Bottom": {
  180. "BorderStyle": "None",
  181. "Color": {
  182. "A": 255,
  183. "R": 0,
  184. "G": 0,
  185. "B": 0
  186. },
  187. "Thickness": 1.0
  188. }
  189. },
  190. "Id": "f25c3502-94d6-4dd6-aa34-dd37112fcbac",
  191. "Index": 0,
  192. "Tag": null,
  193. "MeasureTag": null,
  194. "HorizontalAlignment": "Stretch",
  195. "VerticalAlignment": "Center",
  196. "Margin": {
  197. "Left": 0.0,
  198. "Top": 0.0,
  199. "Right": 0.0,
  200. "Bottom": 0.0
  201. },
  202. "ElementType": {
  203. "Name": "RTCell"
  204. }
  205. },
  206. {
  207. "Row": 1,
  208. "Column": 0,
  209. "RowSpan": 1,
  210. "ColumnSpan": 1
  211. },
  212. {
  213. "Blocks": [
  214. {
  215. "LineSpace": 0.0,
  216. "Elements": [
  217. {
  218. "Text": "Ultrasound Result",
  219. "FontName": "Arial",
  220. "FontSize": 15.0,
  221. "FontStyles": [],
  222. "FontColor": {
  223. "A": 255,
  224. "R": 0,
  225. "G": 0,
  226. "B": 0
  227. },
  228. "Background": {
  229. "A": 255,
  230. "R": 255,
  231. "G": 255,
  232. "B": 255
  233. },
  234. "LineLength": 17,
  235. "LineWidth": 0.0,
  236. "TextWrap": false,
  237. "Id": "9cb7f9fb-0763-4c08-b49f-32804f389e54",
  238. "Index": 0,
  239. "Tag": null,
  240. "MeasureTag": null,
  241. "HorizontalAlignment": "Stretch",
  242. "VerticalAlignment": "Center",
  243. "Margin": {
  244. "Left": 0.0,
  245. "Top": 0.0,
  246. "Right": 0.0,
  247. "Bottom": 0.0
  248. },
  249. "ElementType": {
  250. "Name": "StaticText"
  251. }
  252. }
  253. ],
  254. "Id": "d46254fa-af41-46b7-ae66-c6e7d3d058f0",
  255. "Index": 0,
  256. "Tag": null,
  257. "MeasureTag": null,
  258. "HorizontalAlignment": "Center",
  259. "VerticalAlignment": "Stretch",
  260. "Margin": {
  261. "Left": 0.0,
  262. "Top": 0.0,
  263. "Right": 0.0,
  264. "Bottom": 0.0
  265. },
  266. "ElementType": {
  267. "Name": "Paragraph"
  268. }
  269. }
  270. ],
  271. "Background": {
  272. "A": 255,
  273. "R": 255,
  274. "G": 255,
  275. "B": 255
  276. },
  277. "WidthType": "FixedValue",
  278. "HeightType": "MinValue",
  279. "Borders": {
  280. "Left": {
  281. "BorderStyle": "None",
  282. "Color": {
  283. "A": 255,
  284. "R": 0,
  285. "G": 0,
  286. "B": 0
  287. },
  288. "Thickness": 1.0
  289. },
  290. "Top": {
  291. "BorderStyle": "None",
  292. "Color": {
  293. "A": 255,
  294. "R": 0,
  295. "G": 0,
  296. "B": 0
  297. },
  298. "Thickness": 1.0
  299. },
  300. "Right": {
  301. "BorderStyle": "None",
  302. "Color": {
  303. "A": 255,
  304. "R": 0,
  305. "G": 0,
  306. "B": 0
  307. },
  308. "Thickness": 1.0
  309. },
  310. "Bottom": {
  311. "BorderStyle": "None",
  312. "Color": {
  313. "A": 255,
  314. "R": 0,
  315. "G": 0,
  316. "B": 0
  317. },
  318. "Thickness": 1.0
  319. }
  320. },
  321. "Id": "f00a0bef-5950-4571-979c-d6505ff56c9f",
  322. "Index": 0,
  323. "Tag": null,
  324. "MeasureTag": null,
  325. "HorizontalAlignment": "Stretch",
  326. "VerticalAlignment": "Center",
  327. "Margin": {
  328. "Left": 0.0,
  329. "Top": 0.0,
  330. "Right": 0.0,
  331. "Bottom": 0.0
  332. },
  333. "ElementType": {
  334. "Name": "RTCell"
  335. }
  336. }
  337. ],
  338. "Id": "d6f59e01-d0a2-4630-a310-b5fb7c06c9e1",
  339. "Index": 0,
  340. "Tag": null,
  341. "MeasureTag": null,
  342. "HorizontalAlignment": "Center",
  343. "VerticalAlignment": "Stretch",
  344. "Margin": {
  345. "Left": 0.0,
  346. "Top": 0.0,
  347. "Right": 0.0,
  348. "Bottom": 0.0
  349. },
  350. "ElementType": {
  351. "Name": "RTTable"
  352. }
  353. },
  354. {
  355. "LineSpace": 0.0,
  356. "Elements": [
  357. {
  358. "Width": 478.61559055118107,
  359. "BorderStyle": "Solid",
  360. "Stroke": {
  361. "A": 255,
  362. "R": 0,
  363. "G": 0,
  364. "B": 0
  365. },
  366. "Thickness": 1.0,
  367. "Id": "f5ad739d-ec93-4c83-99a0-c5f49eec49eb",
  368. "Index": 0,
  369. "Tag": null,
  370. "MeasureTag": null,
  371. "HorizontalAlignment": "Stretch",
  372. "VerticalAlignment": "Stretch",
  373. "Margin": {
  374. "Left": 0.0,
  375. "Top": 0.0,
  376. "Right": 0.0,
  377. "Bottom": 0.0
  378. },
  379. "ElementType": {
  380. "Name": "Line"
  381. }
  382. }
  383. ],
  384. "Id": "9d196a0d-030e-4d35-bd5d-1ad4502366df",
  385. "Index": 1,
  386. "Tag": null,
  387. "MeasureTag": null,
  388. "HorizontalAlignment": "Stretch",
  389. "VerticalAlignment": "Stretch",
  390. "Margin": {
  391. "Left": 0.0,
  392. "Top": 0.0,
  393. "Right": 0.0,
  394. "Bottom": 0.0
  395. },
  396. "ElementType": {
  397. "Name": "Paragraph"
  398. }
  399. },
  400. {
  401. "AutoHide": false,
  402. "IsAverageColumnWidth": false,
  403. "AllowBreakAcrossPages": true,
  404. "ColumnDefinitions": [
  405. {
  406. "Width": 159.11333333333334
  407. },
  408. {
  409. "Width": 159.1133333333334
  410. },
  411. {
  412. "Width": 159.11333333333329
  413. }
  414. ],
  415. "RowDefinitions": [
  416. {
  417. "Height": 22.5,
  418. "Type": "MinValue",
  419. "MinHeight": 18.0
  420. },
  421. {
  422. "Height": 23.25,
  423. "Type": "MinValue",
  424. "MinHeight": 18.0
  425. }
  426. ],
  427. "Cells": [
  428. {
  429. "Row": 0,
  430. "Column": 0,
  431. "RowSpan": 1,
  432. "ColumnSpan": 1
  433. },
  434. {
  435. "Blocks": [
  436. {
  437. "LineSpace": 0.0,
  438. "Elements": [
  439. {
  440. "Text": "Name: ",
  441. "FontName": "Arial",
  442. "FontSize": 10.5,
  443. "FontStyles": [],
  444. "FontColor": {
  445. "A": 255,
  446. "R": 0,
  447. "G": 0,
  448. "B": 0
  449. },
  450. "Background": {
  451. "A": 255,
  452. "R": 255,
  453. "G": 255,
  454. "B": 255
  455. },
  456. "LineLength": 6,
  457. "LineWidth": 0.0,
  458. "TextWrap": false,
  459. "Id": "8a12d025-4219-4bf8-9bbf-dbc85ade5a2b",
  460. "Index": 0,
  461. "Tag": null,
  462. "MeasureTag": null,
  463. "HorizontalAlignment": "Stretch",
  464. "VerticalAlignment": "Center",
  465. "Margin": {
  466. "Left": 0.0,
  467. "Top": 0.0,
  468. "Right": 0.0,
  469. "Bottom": 0.0
  470. },
  471. "ElementType": {
  472. "Name": "StaticText"
  473. }
  474. },
  475. {
  476. "IsReadOnly": false,
  477. "FontName": "Arial",
  478. "FontSize": 10.5,
  479. "FontStyles": [],
  480. "FontColor": {
  481. "A": 255,
  482. "R": 0,
  483. "G": 0,
  484. "B": 0
  485. },
  486. "Background": {
  487. "A": 255,
  488. "R": 255,
  489. "G": 255,
  490. "B": 255
  491. },
  492. "LineLength": 10,
  493. "LineWidth": 105.0,
  494. "TextWrap": false,
  495. "Id": "98d9600b-3d4e-4413-ad81-d12133c9d817",
  496. "Index": 1,
  497. "Tag": {
  498. "Id": "91bbaa61-a91d-4399-a3f4-df29117d2d59",
  499. "Name": "PatientName",
  500. "IsDefault": true,
  501. "ElementTagType": "General"
  502. },
  503. "MeasureTag": null,
  504. "HorizontalAlignment": "Stretch",
  505. "VerticalAlignment": "Center",
  506. "Margin": {
  507. "Left": 0.0,
  508. "Top": 0.0,
  509. "Right": 0.0,
  510. "Bottom": 0.0
  511. },
  512. "ElementType": {
  513. "Name": "InputText"
  514. }
  515. }
  516. ],
  517. "Id": "e72f93b5-8779-48de-b93d-216ab80f097b",
  518. "Index": 0,
  519. "Tag": null,
  520. "MeasureTag": null,
  521. "HorizontalAlignment": "Stretch",
  522. "VerticalAlignment": "Stretch",
  523. "Margin": {
  524. "Left": 0.0,
  525. "Top": 0.0,
  526. "Right": 0.0,
  527. "Bottom": 0.0
  528. },
  529. "ElementType": {
  530. "Name": "Paragraph"
  531. }
  532. }
  533. ],
  534. "Background": {
  535. "A": 255,
  536. "R": 255,
  537. "G": 255,
  538. "B": 255
  539. },
  540. "WidthType": "FixedValue",
  541. "HeightType": "MinValue",
  542. "Borders": {
  543. "Left": {
  544. "BorderStyle": "None",
  545. "Color": {
  546. "A": 255,
  547. "R": 0,
  548. "G": 0,
  549. "B": 0
  550. },
  551. "Thickness": 1.0
  552. },
  553. "Top": {
  554. "BorderStyle": "None",
  555. "Color": {
  556. "A": 255,
  557. "R": 0,
  558. "G": 0,
  559. "B": 0
  560. },
  561. "Thickness": 1.0
  562. },
  563. "Right": {
  564. "BorderStyle": "None",
  565. "Color": {
  566. "A": 255,
  567. "R": 0,
  568. "G": 0,
  569. "B": 0
  570. },
  571. "Thickness": 1.0
  572. },
  573. "Bottom": {
  574. "BorderStyle": "None",
  575. "Color": {
  576. "A": 255,
  577. "R": 0,
  578. "G": 0,
  579. "B": 0
  580. },
  581. "Thickness": 1.0
  582. }
  583. },
  584. "Id": "be07a5d9-a340-4c02-b9ef-097fe44acebf",
  585. "Index": 0,
  586. "Tag": null,
  587. "MeasureTag": null,
  588. "HorizontalAlignment": "Stretch",
  589. "VerticalAlignment": "Stretch",
  590. "Margin": {
  591. "Left": 0.0,
  592. "Top": 0.0,
  593. "Right": 0.0,
  594. "Bottom": 0.0
  595. },
  596. "ElementType": {
  597. "Name": "RTCell"
  598. }
  599. },
  600. {
  601. "Row": 0,
  602. "Column": 1,
  603. "RowSpan": 1,
  604. "ColumnSpan": 1
  605. },
  606. {
  607. "Blocks": [
  608. {
  609. "LineSpace": 0.0,
  610. "Elements": [
  611. {
  612. "Text": "Gender: ",
  613. "FontName": "Arial",
  614. "FontSize": 10.5,
  615. "FontStyles": [],
  616. "FontColor": {
  617. "A": 255,
  618. "R": 0,
  619. "G": 0,
  620. "B": 0
  621. },
  622. "Background": {
  623. "A": 255,
  624. "R": 255,
  625. "G": 255,
  626. "B": 255
  627. },
  628. "LineLength": 8,
  629. "LineWidth": 0.0,
  630. "TextWrap": false,
  631. "Id": "fbfa9028-a8c4-44f0-bdf8-e23f72745e3a",
  632. "Index": 0,
  633. "Tag": null,
  634. "MeasureTag": null,
  635. "HorizontalAlignment": "Stretch",
  636. "VerticalAlignment": "Center",
  637. "Margin": {
  638. "Left": 0.0,
  639. "Top": 0.0,
  640. "Right": 0.0,
  641. "Bottom": 0.0
  642. },
  643. "ElementType": {
  644. "Name": "StaticText"
  645. }
  646. },
  647. {
  648. "IsReadOnly": false,
  649. "Items": [
  650. "Male",
  651. "Female",
  652. "Unassigned"
  653. ],
  654. "DisplayStyle": "OnlyShowSelectedItem",
  655. "FontName": "Arial",
  656. "FontSize": 10.5,
  657. "FontStyles": [],
  658. "FontColor": {
  659. "A": 255,
  660. "R": 0,
  661. "G": 0,
  662. "B": 0
  663. },
  664. "Background": {
  665. "A": 255,
  666. "R": 255,
  667. "G": 255,
  668. "B": 255
  669. },
  670. "LineLength": 10,
  671. "LineWidth": 101.99,
  672. "TextWrap": false,
  673. "Id": "f6c50df4-06e2-4c1f-a21e-ffef3833f234",
  674. "Index": 1,
  675. "Tag": {
  676. "Id": "93bbaa61-a91d-4399-a3f4-df29117d2d59",
  677. "Name": "PatientGender",
  678. "IsDefault": true,
  679. "ElementTagType": "General"
  680. },
  681. "MeasureTag": null,
  682. "HorizontalAlignment": "Stretch",
  683. "VerticalAlignment": "Center",
  684. "Margin": {
  685. "Left": 0.0,
  686. "Top": 0.0,
  687. "Right": 0.0,
  688. "Bottom": 0.0
  689. },
  690. "ElementType": {
  691. "Name": "SingleSelected"
  692. }
  693. }
  694. ],
  695. "Id": "43722b5d-2c39-4c2a-bcd1-dfb15b02b3fd",
  696. "Index": 0,
  697. "Tag": null,
  698. "MeasureTag": null,
  699. "HorizontalAlignment": "Stretch",
  700. "VerticalAlignment": "Stretch",
  701. "Margin": {
  702. "Left": 0.0,
  703. "Top": 0.0,
  704. "Right": 0.0,
  705. "Bottom": 0.0
  706. },
  707. "ElementType": {
  708. "Name": "Paragraph"
  709. }
  710. }
  711. ],
  712. "Background": {
  713. "A": 255,
  714. "R": 255,
  715. "G": 255,
  716. "B": 255
  717. },
  718. "WidthType": "FixedValue",
  719. "HeightType": "MinValue",
  720. "Borders": {
  721. "Left": {
  722. "BorderStyle": "None",
  723. "Color": {
  724. "A": 255,
  725. "R": 0,
  726. "G": 0,
  727. "B": 0
  728. },
  729. "Thickness": 1.0
  730. },
  731. "Top": {
  732. "BorderStyle": "None",
  733. "Color": {
  734. "A": 255,
  735. "R": 0,
  736. "G": 0,
  737. "B": 0
  738. },
  739. "Thickness": 1.0
  740. },
  741. "Right": {
  742. "BorderStyle": "None",
  743. "Color": {
  744. "A": 255,
  745. "R": 0,
  746. "G": 0,
  747. "B": 0
  748. },
  749. "Thickness": 1.0
  750. },
  751. "Bottom": {
  752. "BorderStyle": "None",
  753. "Color": {
  754. "A": 255,
  755. "R": 0,
  756. "G": 0,
  757. "B": 0
  758. },
  759. "Thickness": 1.0
  760. }
  761. },
  762. "Id": "fa13499e-5154-432e-9741-f46afaa4f688",
  763. "Index": 0,
  764. "Tag": null,
  765. "MeasureTag": null,
  766. "HorizontalAlignment": "Stretch",
  767. "VerticalAlignment": "Stretch",
  768. "Margin": {
  769. "Left": 0.0,
  770. "Top": 0.0,
  771. "Right": 0.0,
  772. "Bottom": 0.0
  773. },
  774. "ElementType": {
  775. "Name": "RTCell"
  776. }
  777. },
  778. {
  779. "Row": 0,
  780. "Column": 2,
  781. "RowSpan": 1,
  782. "ColumnSpan": 1
  783. },
  784. {
  785. "Blocks": [
  786. {
  787. "LineSpace": 0.0,
  788. "Elements": [
  789. {
  790. "Text": "ID: ",
  791. "FontName": "Arial",
  792. "FontSize": 10.5,
  793. "FontStyles": [],
  794. "FontColor": {
  795. "A": 255,
  796. "R": 0,
  797. "G": 0,
  798. "B": 0
  799. },
  800. "Background": {
  801. "A": 255,
  802. "R": 255,
  803. "G": 255,
  804. "B": 255
  805. },
  806. "LineLength": 11,
  807. "LineWidth": 0.0,
  808. "TextWrap": false,
  809. "Id": "0660fc3f-2736-41b5-a452-4f0231843bf0",
  810. "Index": 0,
  811. "Tag": null,
  812. "MeasureTag": null,
  813. "HorizontalAlignment": "Stretch",
  814. "VerticalAlignment": "Center",
  815. "Margin": {
  816. "Left": 0.0,
  817. "Top": 0.0,
  818. "Right": 0.0,
  819. "Bottom": 0.0
  820. },
  821. "ElementType": {
  822. "Name": "StaticText"
  823. }
  824. },
  825. {
  826. "IsReadOnly": false,
  827. "FontName": "Arial",
  828. "FontSize": 10.5,
  829. "FontStyles": [],
  830. "FontColor": {
  831. "A": 255,
  832. "R": 0,
  833. "G": 0,
  834. "B": 0
  835. },
  836. "Background": {
  837. "A": 255,
  838. "R": 255,
  839. "G": 255,
  840. "B": 255
  841. },
  842. "LineLength": 9,
  843. "LineWidth": 94.5,
  844. "TextWrap": false,
  845. "Id": "15162cff-f94d-44e9-9912-e77585256a59",
  846. "Index": 1,
  847. "Tag": {
  848. "Id": "90bbaa61-a91d-4399-a3f4-df29117d2d59",
  849. "Name": "PatientId",
  850. "IsDefault": true,
  851. "ElementTagType": "General"
  852. },
  853. "MeasureTag": null,
  854. "HorizontalAlignment": "Stretch",
  855. "VerticalAlignment": "Center",
  856. "Margin": {
  857. "Left": 0.0,
  858. "Top": 0.0,
  859. "Right": 0.0,
  860. "Bottom": 0.0
  861. },
  862. "ElementType": {
  863. "Name": "InputText"
  864. }
  865. }
  866. ],
  867. "Id": "b85aad9c-9cfd-459f-aa39-adca945b2149",
  868. "Index": 0,
  869. "Tag": null,
  870. "MeasureTag": null,
  871. "HorizontalAlignment": "Stretch",
  872. "VerticalAlignment": "Stretch",
  873. "Margin": {
  874. "Left": 0.0,
  875. "Top": 0.0,
  876. "Right": 0.0,
  877. "Bottom": 0.0
  878. },
  879. "ElementType": {
  880. "Name": "Paragraph"
  881. }
  882. }
  883. ],
  884. "Background": {
  885. "A": 255,
  886. "R": 255,
  887. "G": 255,
  888. "B": 255
  889. },
  890. "WidthType": "FixedValue",
  891. "HeightType": "MinValue",
  892. "Borders": {
  893. "Left": {
  894. "BorderStyle": "None",
  895. "Color": {
  896. "A": 255,
  897. "R": 0,
  898. "G": 0,
  899. "B": 0
  900. },
  901. "Thickness": 1.0
  902. },
  903. "Top": {
  904. "BorderStyle": "None",
  905. "Color": {
  906. "A": 255,
  907. "R": 0,
  908. "G": 0,
  909. "B": 0
  910. },
  911. "Thickness": 1.0
  912. },
  913. "Right": {
  914. "BorderStyle": "None",
  915. "Color": {
  916. "A": 255,
  917. "R": 0,
  918. "G": 0,
  919. "B": 0
  920. },
  921. "Thickness": 1.0
  922. },
  923. "Bottom": {
  924. "BorderStyle": "None",
  925. "Color": {
  926. "A": 255,
  927. "R": 0,
  928. "G": 0,
  929. "B": 0
  930. },
  931. "Thickness": 1.0
  932. }
  933. },
  934. "Id": "72bc72d6-fb56-4f92-9c49-3fc75c4dd784",
  935. "Index": 0,
  936. "Tag": null,
  937. "MeasureTag": null,
  938. "HorizontalAlignment": "Stretch",
  939. "VerticalAlignment": "Stretch",
  940. "Margin": {
  941. "Left": 0.0,
  942. "Top": 0.0,
  943. "Right": 0.0,
  944. "Bottom": 0.0
  945. },
  946. "ElementType": {
  947. "Name": "RTCell"
  948. }
  949. },
  950. {
  951. "Row": 1,
  952. "Column": 0,
  953. "RowSpan": 1,
  954. "ColumnSpan": 1
  955. },
  956. {
  957. "Blocks": [
  958. {
  959. "LineSpace": 0.0,
  960. "Elements": [
  961. {
  962. "Text": "DOB: ",
  963. "FontName": "Arial",
  964. "FontSize": 10.5,
  965. "FontStyles": [],
  966. "FontColor": {
  967. "A": 255,
  968. "R": 0,
  969. "G": 0,
  970. "B": 0
  971. },
  972. "Background": {
  973. "A": 255,
  974. "R": 255,
  975. "G": 255,
  976. "B": 255
  977. },
  978. "LineLength": 7,
  979. "LineWidth": 0.0,
  980. "TextWrap": false,
  981. "Id": "34211a5c-7918-4830-be84-ef312ebe0ebb",
  982. "Index": 0,
  983. "Tag": null,
  984. "MeasureTag": null,
  985. "HorizontalAlignment": "Stretch",
  986. "VerticalAlignment": "Center",
  987. "Margin": {
  988. "Left": 0.0,
  989. "Top": 0.0,
  990. "Right": 0.0,
  991. "Bottom": 0.0
  992. },
  993. "ElementType": {
  994. "Name": "StaticText"
  995. }
  996. },
  997. {
  998. "IsReadOnly": false,
  999. "DateTimeFormat": "yyyy/MM/dd",
  1000. "IsRealTime": false,
  1001. "ShowEnabled": true,
  1002. "FontName": "Arial",
  1003. "FontSize": 10.5,
  1004. "FontStyles": [],
  1005. "FontColor": {
  1006. "A": 255,
  1007. "R": 0,
  1008. "G": 0,
  1009. "B": 0
  1010. },
  1011. "Background": {
  1012. "A": 255,
  1013. "R": 255,
  1014. "G": 255,
  1015. "B": 255
  1016. },
  1017. "LineLength": 5,
  1018. "LineWidth": 0.0,
  1019. "TextWrap": false,
  1020. "Id": "07c963b8-4961-46eb-91c2-ba089971cbe9",
  1021. "Index": 1,
  1022. "Tag": {
  1023. "Id": "9aabaa61-a91d-4399-a3f4-df29117d2d59",
  1024. "Name": "PatientBirthday",
  1025. "IsDefault": true,
  1026. "ElementTagType": "General"
  1027. },
  1028. "MeasureTag": null,
  1029. "HorizontalAlignment": "Stretch",
  1030. "VerticalAlignment": "Center",
  1031. "Margin": {
  1032. "Left": 0.0,
  1033. "Top": 0.0,
  1034. "Right": 0.0,
  1035. "Bottom": 0.0
  1036. },
  1037. "ElementType": {
  1038. "Name": "DateTime"
  1039. }
  1040. }
  1041. ],
  1042. "Id": "419a165d-a9d0-4f16-84d4-b7c2f83ed006",
  1043. "Index": 0,
  1044. "Tag": null,
  1045. "MeasureTag": null,
  1046. "HorizontalAlignment": "Stretch",
  1047. "VerticalAlignment": "Stretch",
  1048. "Margin": {
  1049. "Left": 0.0,
  1050. "Top": 0.0,
  1051. "Right": 0.0,
  1052. "Bottom": 0.0
  1053. },
  1054. "ElementType": {
  1055. "Name": "Paragraph"
  1056. }
  1057. }
  1058. ],
  1059. "Background": {
  1060. "A": 255,
  1061. "R": 255,
  1062. "G": 255,
  1063. "B": 255
  1064. },
  1065. "WidthType": "FixedValue",
  1066. "HeightType": "MinValue",
  1067. "Borders": {
  1068. "Left": {
  1069. "BorderStyle": "None",
  1070. "Color": {
  1071. "A": 255,
  1072. "R": 0,
  1073. "G": 0,
  1074. "B": 0
  1075. },
  1076. "Thickness": 1.0
  1077. },
  1078. "Top": {
  1079. "BorderStyle": "None",
  1080. "Color": {
  1081. "A": 255,
  1082. "R": 0,
  1083. "G": 0,
  1084. "B": 0
  1085. },
  1086. "Thickness": 1.0
  1087. },
  1088. "Right": {
  1089. "BorderStyle": "None",
  1090. "Color": {
  1091. "A": 255,
  1092. "R": 0,
  1093. "G": 0,
  1094. "B": 0
  1095. },
  1096. "Thickness": 1.0
  1097. },
  1098. "Bottom": {
  1099. "BorderStyle": "None",
  1100. "Color": {
  1101. "A": 255,
  1102. "R": 0,
  1103. "G": 0,
  1104. "B": 0
  1105. },
  1106. "Thickness": 1.0
  1107. }
  1108. },
  1109. "Id": "6dd87cc5-17c6-4de1-847b-9c8dbc2faaaf",
  1110. "Index": 0,
  1111. "Tag": null,
  1112. "MeasureTag": null,
  1113. "HorizontalAlignment": "Stretch",
  1114. "VerticalAlignment": "Stretch",
  1115. "Margin": {
  1116. "Left": 0.0,
  1117. "Top": 0.0,
  1118. "Right": 0.0,
  1119. "Bottom": 0.0
  1120. },
  1121. "ElementType": {
  1122. "Name": "RTCell"
  1123. }
  1124. },
  1125. {
  1126. "Row": 1,
  1127. "Column": 1,
  1128. "RowSpan": 1,
  1129. "ColumnSpan": 1
  1130. },
  1131. {
  1132. "Blocks": [
  1133. {
  1134. "LineSpace": 0.0,
  1135. "Elements": [
  1136. {
  1137. "Text": "Age: ",
  1138. "FontName": "Arial",
  1139. "FontSize": 10.5,
  1140. "FontStyles": [],
  1141. "FontColor": {
  1142. "A": 255,
  1143. "R": 0,
  1144. "G": 0,
  1145. "B": 0
  1146. },
  1147. "Background": {
  1148. "A": 255,
  1149. "R": 255,
  1150. "G": 255,
  1151. "B": 255
  1152. },
  1153. "LineLength": 11,
  1154. "LineWidth": 0.0,
  1155. "TextWrap": false,
  1156. "Id": "66c8a095-f31d-4b13-b4d4-536a2dea4fcc",
  1157. "Index": 0,
  1158. "Tag": null,
  1159. "MeasureTag": null,
  1160. "HorizontalAlignment": "Stretch",
  1161. "VerticalAlignment": "Center",
  1162. "Margin": {
  1163. "Left": 0.0,
  1164. "Top": 0.0,
  1165. "Right": 0.0,
  1166. "Bottom": 0.0
  1167. },
  1168. "ElementType": {
  1169. "Name": "StaticText"
  1170. }
  1171. },
  1172. {
  1173. "IsReadOnly": false,
  1174. "FontName": "Arial",
  1175. "FontSize": 10.5,
  1176. "FontStyles": [],
  1177. "FontColor": {
  1178. "A": 255,
  1179. "R": 0,
  1180. "G": 0,
  1181. "B": 0
  1182. },
  1183. "Background": {
  1184. "A": 255,
  1185. "R": 255,
  1186. "G": 255,
  1187. "B": 255
  1188. },
  1189. "LineLength": 10,
  1190. "LineWidth": 101.99,
  1191. "TextWrap": false,
  1192. "Id": "ac472a5a-9d45-46c4-8362-1ad7ba51e90d",
  1193. "Index": 1,
  1194. "Tag": {
  1195. "Id": "92bbaa61-a91d-4399-a3f4-df29117d2d59",
  1196. "Name": "PatientAge",
  1197. "IsDefault": true,
  1198. "ElementTagType": "General"
  1199. },
  1200. "MeasureTag": null,
  1201. "HorizontalAlignment": "Stretch",
  1202. "VerticalAlignment": "Center",
  1203. "Margin": {
  1204. "Left": 0.0,
  1205. "Top": 0.0,
  1206. "Right": 0.0,
  1207. "Bottom": 0.0
  1208. },
  1209. "ElementType": {
  1210. "Name": "InputText"
  1211. }
  1212. }
  1213. ],
  1214. "Id": "827265cb-8c00-4c5a-88c7-33df96b97446",
  1215. "Index": 0,
  1216. "Tag": null,
  1217. "MeasureTag": null,
  1218. "HorizontalAlignment": "Stretch",
  1219. "VerticalAlignment": "Stretch",
  1220. "Margin": {
  1221. "Left": 0.0,
  1222. "Top": 0.0,
  1223. "Right": 0.0,
  1224. "Bottom": 0.0
  1225. },
  1226. "ElementType": {
  1227. "Name": "Paragraph"
  1228. }
  1229. }
  1230. ],
  1231. "Background": {
  1232. "A": 255,
  1233. "R": 255,
  1234. "G": 255,
  1235. "B": 255
  1236. },
  1237. "WidthType": "FixedValue",
  1238. "HeightType": "MinValue",
  1239. "Borders": {
  1240. "Left": {
  1241. "BorderStyle": "None",
  1242. "Color": {
  1243. "A": 255,
  1244. "R": 0,
  1245. "G": 0,
  1246. "B": 0
  1247. },
  1248. "Thickness": 1.0
  1249. },
  1250. "Top": {
  1251. "BorderStyle": "None",
  1252. "Color": {
  1253. "A": 255,
  1254. "R": 0,
  1255. "G": 0,
  1256. "B": 0
  1257. },
  1258. "Thickness": 1.0
  1259. },
  1260. "Right": {
  1261. "BorderStyle": "None",
  1262. "Color": {
  1263. "A": 255,
  1264. "R": 0,
  1265. "G": 0,
  1266. "B": 0
  1267. },
  1268. "Thickness": 1.0
  1269. },
  1270. "Bottom": {
  1271. "BorderStyle": "None",
  1272. "Color": {
  1273. "A": 255,
  1274. "R": 0,
  1275. "G": 0,
  1276. "B": 0
  1277. },
  1278. "Thickness": 1.0
  1279. }
  1280. },
  1281. "Id": "fd1d6c9f-31c2-47cb-b930-546a057ca45a",
  1282. "Index": 0,
  1283. "Tag": null,
  1284. "MeasureTag": null,
  1285. "HorizontalAlignment": "Stretch",
  1286. "VerticalAlignment": "Stretch",
  1287. "Margin": {
  1288. "Left": 0.0,
  1289. "Top": 0.0,
  1290. "Right": 0.0,
  1291. "Bottom": 0.0
  1292. },
  1293. "ElementType": {
  1294. "Name": "RTCell"
  1295. }
  1296. },
  1297. {
  1298. "Row": 1,
  1299. "Column": 2,
  1300. "RowSpan": 1,
  1301. "ColumnSpan": 1
  1302. },
  1303. {
  1304. "Blocks": [
  1305. {
  1306. "LineSpace": 0.0,
  1307. "Elements": [
  1308. {
  1309. "Text": "History: ",
  1310. "FontName": "Arial",
  1311. "FontSize": 10.5,
  1312. "FontStyles": [],
  1313. "FontColor": {
  1314. "A": 255,
  1315. "R": 0,
  1316. "G": 0,
  1317. "B": 0
  1318. },
  1319. "Background": {
  1320. "A": 255,
  1321. "R": 255,
  1322. "G": 255,
  1323. "B": 255
  1324. },
  1325. "LineLength": 9,
  1326. "LineWidth": 0.0,
  1327. "TextWrap": false,
  1328. "Id": "e455f339-1007-4363-9635-a02f82b287e5",
  1329. "Index": 0,
  1330. "Tag": null,
  1331. "MeasureTag": null,
  1332. "HorizontalAlignment": "Stretch",
  1333. "VerticalAlignment": "Center",
  1334. "Margin": {
  1335. "Left": 0.0,
  1336. "Top": 0.0,
  1337. "Right": 0.0,
  1338. "Bottom": 0.0
  1339. },
  1340. "ElementType": {
  1341. "Name": "StaticText"
  1342. }
  1343. },
  1344. {
  1345. "IsReadOnly": false,
  1346. "FontName": "Arial",
  1347. "FontSize": 10.5,
  1348. "FontStyles": [],
  1349. "FontColor": {
  1350. "A": 255,
  1351. "R": 0,
  1352. "G": 0,
  1353. "B": 0
  1354. },
  1355. "Background": {
  1356. "A": 255,
  1357. "R": 255,
  1358. "G": 255,
  1359. "B": 255
  1360. },
  1361. "LineLength": 9,
  1362. "LineWidth": 94.5,
  1363. "TextWrap": false,
  1364. "Id": "2a2b6e6e-4f85-4537-a8e4-6ee11c696fef",
  1365. "Index": 1,
  1366. "Tag": {
  1367. "Id": "12340A8E-16FA-4528-B69D-C160F9B24AD5",
  1368. "Name": "History",
  1369. "IsDefault": true,
  1370. "ElementTagType": "General"
  1371. },
  1372. "MeasureTag": null,
  1373. "HorizontalAlignment": "Stretch",
  1374. "VerticalAlignment": "Center",
  1375. "Margin": {
  1376. "Left": 0.0,
  1377. "Top": 0.0,
  1378. "Right": 0.0,
  1379. "Bottom": 0.0
  1380. },
  1381. "ElementType": {
  1382. "Name": "InputText"
  1383. }
  1384. }
  1385. ],
  1386. "Id": "babd83aa-8c1c-494e-b3d3-ad066979fc61",
  1387. "Index": 0,
  1388. "Tag": null,
  1389. "MeasureTag": null,
  1390. "HorizontalAlignment": "Stretch",
  1391. "VerticalAlignment": "Stretch",
  1392. "Margin": {
  1393. "Left": 0.0,
  1394. "Top": 0.0,
  1395. "Right": 0.0,
  1396. "Bottom": 0.0
  1397. },
  1398. "ElementType": {
  1399. "Name": "Paragraph"
  1400. }
  1401. }
  1402. ],
  1403. "Background": {
  1404. "A": 255,
  1405. "R": 255,
  1406. "G": 255,
  1407. "B": 255
  1408. },
  1409. "WidthType": "FixedValue",
  1410. "HeightType": "MinValue",
  1411. "Borders": {
  1412. "Left": {
  1413. "BorderStyle": "None",
  1414. "Color": {
  1415. "A": 255,
  1416. "R": 0,
  1417. "G": 0,
  1418. "B": 0
  1419. },
  1420. "Thickness": 1.0
  1421. },
  1422. "Top": {
  1423. "BorderStyle": "None",
  1424. "Color": {
  1425. "A": 255,
  1426. "R": 0,
  1427. "G": 0,
  1428. "B": 0
  1429. },
  1430. "Thickness": 1.0
  1431. },
  1432. "Right": {
  1433. "BorderStyle": "None",
  1434. "Color": {
  1435. "A": 255,
  1436. "R": 0,
  1437. "G": 0,
  1438. "B": 0
  1439. },
  1440. "Thickness": 1.0
  1441. },
  1442. "Bottom": {
  1443. "BorderStyle": "None",
  1444. "Color": {
  1445. "A": 255,
  1446. "R": 0,
  1447. "G": 0,
  1448. "B": 0
  1449. },
  1450. "Thickness": 1.0
  1451. }
  1452. },
  1453. "Id": "6566838e-88ce-4e5a-b484-9d258bb6ce36",
  1454. "Index": 0,
  1455. "Tag": null,
  1456. "MeasureTag": null,
  1457. "HorizontalAlignment": "Stretch",
  1458. "VerticalAlignment": "Stretch",
  1459. "Margin": {
  1460. "Left": 0.0,
  1461. "Top": 0.0,
  1462. "Right": 0.0,
  1463. "Bottom": 0.0
  1464. },
  1465. "ElementType": {
  1466. "Name": "RTCell"
  1467. }
  1468. }
  1469. ],
  1470. "Id": "59c5d601-f567-4212-a203-0c205c37cb9b",
  1471. "Index": 2,
  1472. "Tag": null,
  1473. "MeasureTag": null,
  1474. "HorizontalAlignment": "Left",
  1475. "VerticalAlignment": "Stretch",
  1476. "Margin": {
  1477. "Left": 0.0,
  1478. "Top": 0.0,
  1479. "Right": 0.0,
  1480. "Bottom": 0.0
  1481. },
  1482. "ElementType": {
  1483. "Name": "RTTable"
  1484. }
  1485. },
  1486. {
  1487. "LineSpace": 0.0,
  1488. "Elements": [
  1489. {
  1490. "Width": 478.61559055118107,
  1491. "BorderStyle": "Solid",
  1492. "Stroke": {
  1493. "A": 255,
  1494. "R": 0,
  1495. "G": 0,
  1496. "B": 0
  1497. },
  1498. "Thickness": 1.0,
  1499. "Id": "dea84ad2-3528-41ac-9786-94fc21462b9e",
  1500. "Index": 0,
  1501. "Tag": null,
  1502. "MeasureTag": null,
  1503. "HorizontalAlignment": "Stretch",
  1504. "VerticalAlignment": "Stretch",
  1505. "Margin": {
  1506. "Left": 0.0,
  1507. "Top": 0.0,
  1508. "Right": 0.0,
  1509. "Bottom": 0.0
  1510. },
  1511. "ElementType": {
  1512. "Name": "Line"
  1513. }
  1514. }
  1515. ],
  1516. "Id": "2b63bce7-40af-44b4-80d4-e76b2f35e2fe",
  1517. "Index": 3,
  1518. "Tag": null,
  1519. "MeasureTag": null,
  1520. "HorizontalAlignment": "Stretch",
  1521. "VerticalAlignment": "Stretch",
  1522. "Margin": {
  1523. "Left": 0.0,
  1524. "Top": 0.0,
  1525. "Right": 0.0,
  1526. "Bottom": 0.0
  1527. },
  1528. "ElementType": {
  1529. "Name": "Paragraph"
  1530. }
  1531. },
  1532. {
  1533. "Elements": [],
  1534. "ImageWidth": 238.64,
  1535. "ImageHeight": 151.99,
  1536. "HasImageBorder": false,
  1537. "Column": 2,
  1538. "IsReadOnly": false,
  1539. "TransparentBackground": false,
  1540. "HasGap": true,
  1541. "Id": "5cc4fbbe-9729-4577-a087-30f8eafcfed0",
  1542. "Index": 4,
  1543. "Tag": {
  1544. "Id": "9fbbaa61-a91d-4399-a3f4-df29117d2d59",
  1545. "Name": "ReportImages",
  1546. "IsDefault": true,
  1547. "ElementTagType": "General"
  1548. },
  1549. "MeasureTag": null,
  1550. "HorizontalAlignment": "Center",
  1551. "VerticalAlignment": "Stretch",
  1552. "Margin": {
  1553. "Left": 0.0,
  1554. "Top": 0.0,
  1555. "Right": 0.0,
  1556. "Bottom": 0.0
  1557. },
  1558. "ElementType": {
  1559. "Name": "ImageList"
  1560. }
  1561. },
  1562. {
  1563. "LineSpace": 0.0,
  1564. "Elements": [
  1565. {
  1566. "Width": 478.61559055118107,
  1567. "BorderStyle": "Solid",
  1568. "Stroke": {
  1569. "A": 255,
  1570. "R": 0,
  1571. "G": 0,
  1572. "B": 0
  1573. },
  1574. "Thickness": 1.0,
  1575. "Id": "5a1fdb4b-bf59-4b49-abad-e2c7807f6ce7",
  1576. "Index": 0,
  1577. "Tag": null,
  1578. "MeasureTag": null,
  1579. "HorizontalAlignment": "Stretch",
  1580. "VerticalAlignment": "Stretch",
  1581. "Margin": {
  1582. "Left": 0.0,
  1583. "Top": 0.0,
  1584. "Right": 0.0,
  1585. "Bottom": 0.0
  1586. },
  1587. "ElementType": {
  1588. "Name": "Line"
  1589. }
  1590. }
  1591. ],
  1592. "Id": "2329d150-508a-4c33-9c06-f92e7a1a85b4",
  1593. "Index": 5,
  1594. "Tag": null,
  1595. "MeasureTag": null,
  1596. "HorizontalAlignment": "Stretch",
  1597. "VerticalAlignment": "Stretch",
  1598. "Margin": {
  1599. "Left": 0.0,
  1600. "Top": 0.0,
  1601. "Right": 0.0,
  1602. "Bottom": 0.0
  1603. },
  1604. "ElementType": {
  1605. "Name": "Paragraph"
  1606. }
  1607. },
  1608. {
  1609. "LineSpace": 0.0,
  1610. "Elements": [
  1611. {
  1612. "Text": "Description",
  1613. "FontName": "Arial",
  1614. "FontSize": 15.0,
  1615. "FontStyles": [],
  1616. "FontColor": {
  1617. "A": 255,
  1618. "R": 0,
  1619. "G": 0,
  1620. "B": 0
  1621. },
  1622. "Background": {
  1623. "A": 255,
  1624. "R": 255,
  1625. "G": 255,
  1626. "B": 255
  1627. },
  1628. "LineLength": 11,
  1629. "LineWidth": 0.0,
  1630. "TextWrap": false,
  1631. "Id": "45884194-ce60-4b63-86cf-1e2521db94fd",
  1632. "Index": 0,
  1633. "Tag": null,
  1634. "MeasureTag": null,
  1635. "HorizontalAlignment": "Stretch",
  1636. "VerticalAlignment": "Center",
  1637. "Margin": {
  1638. "Left": 0.0,
  1639. "Top": 0.0,
  1640. "Right": 0.0,
  1641. "Bottom": 0.0
  1642. },
  1643. "ElementType": {
  1644. "Name": "StaticText"
  1645. }
  1646. }
  1647. ],
  1648. "Id": "c2566539-73b3-4b32-b67d-a00b26749a50",
  1649. "Index": 6,
  1650. "Tag": null,
  1651. "MeasureTag": null,
  1652. "HorizontalAlignment": "Stretch",
  1653. "VerticalAlignment": "Stretch",
  1654. "Margin": {
  1655. "Left": 0.0,
  1656. "Top": 0.0,
  1657. "Right": 0.0,
  1658. "Bottom": 0.0
  1659. },
  1660. "ElementType": {
  1661. "Name": "Paragraph"
  1662. }
  1663. },
  1664. {
  1665. "LineSpace": 0.0,
  1666. "Elements": [
  1667. {
  1668. "IsReadOnly": false,
  1669. "FontName": "Arial",
  1670. "FontSize": 10.5,
  1671. "FontStyles": [],
  1672. "FontColor": {
  1673. "A": 255,
  1674. "R": 0,
  1675. "G": 0,
  1676. "B": 0
  1677. },
  1678. "Background": {
  1679. "A": 255,
  1680. "R": 255,
  1681. "G": 255,
  1682. "B": 255
  1683. },
  1684. "LineLength": 62,
  1685. "LineWidth": 474.43,
  1686. "TextWrap": true,
  1687. "Id": "33e272e5-c9a9-4ebb-a813-389de1f48481",
  1688. "Index": 0,
  1689. "Tag": {
  1690. "Id": "9dbbaa61-a91d-4399-a3f4-df29117d2d59",
  1691. "Name": "ReportDescription",
  1692. "IsDefault": true,
  1693. "ElementTagType": "DiagnosticEntry"
  1694. },
  1695. "MeasureTag": null,
  1696. "HorizontalAlignment": "Stretch",
  1697. "VerticalAlignment": "Center",
  1698. "Margin": {
  1699. "Left": 0.0,
  1700. "Top": 0.0,
  1701. "Right": 0.0,
  1702. "Bottom": 0.0
  1703. },
  1704. "ElementType": {
  1705. "Name": "InputText"
  1706. }
  1707. }
  1708. ],
  1709. "Id": "40925ac8-bfc0-425b-8718-0f43eaedc5fb",
  1710. "Index": 7,
  1711. "Tag": null,
  1712. "MeasureTag": null,
  1713. "HorizontalAlignment": "Stretch",
  1714. "VerticalAlignment": "Stretch",
  1715. "Margin": {
  1716. "Left": 0.0,
  1717. "Top": 0.0,
  1718. "Right": 0.0,
  1719. "Bottom": 0.0
  1720. },
  1721. "ElementType": {
  1722. "Name": "Paragraph"
  1723. }
  1724. },
  1725. {
  1726. "LineSpace": 0.0,
  1727. "Elements": [
  1728. {
  1729. "Text": "\r\nComments",
  1730. "FontName": "Arial",
  1731. "FontSize": 15.0,
  1732. "FontStyles": [],
  1733. "FontColor": {
  1734. "A": 255,
  1735. "R": 0,
  1736. "G": 0,
  1737. "B": 0
  1738. },
  1739. "Background": {
  1740. "A": 255,
  1741. "R": 255,
  1742. "G": 255,
  1743. "B": 255
  1744. },
  1745. "LineLength": 10,
  1746. "LineWidth": 0.0,
  1747. "TextWrap": false,
  1748. "Id": "d47c11ce-d556-4c08-a5ee-93c1167f019a",
  1749. "Index": 0,
  1750. "Tag": null,
  1751. "MeasureTag": null,
  1752. "HorizontalAlignment": "Stretch",
  1753. "VerticalAlignment": "Center",
  1754. "Margin": {
  1755. "Left": 0.0,
  1756. "Top": 0.0,
  1757. "Right": 0.0,
  1758. "Bottom": 0.0
  1759. },
  1760. "ElementType": {
  1761. "Name": "StaticText"
  1762. }
  1763. }
  1764. ],
  1765. "Id": "c17f52da-0550-44dd-aea1-912708c57bc2",
  1766. "Index": 8,
  1767. "Tag": null,
  1768. "MeasureTag": null,
  1769. "HorizontalAlignment": "Stretch",
  1770. "VerticalAlignment": "Stretch",
  1771. "Margin": {
  1772. "Left": 0.0,
  1773. "Top": 0.0,
  1774. "Right": 0.0,
  1775. "Bottom": 0.0
  1776. },
  1777. "ElementType": {
  1778. "Name": "Paragraph"
  1779. }
  1780. },
  1781. {
  1782. "LineSpace": 0.0,
  1783. "Elements": [
  1784. {
  1785. "IsReadOnly": false,
  1786. "FontName": "Arial",
  1787. "FontSize": 10.5,
  1788. "FontStyles": [],
  1789. "FontColor": {
  1790. "A": 255,
  1791. "R": 0,
  1792. "G": 0,
  1793. "B": 0
  1794. },
  1795. "Background": {
  1796. "A": 255,
  1797. "R": 255,
  1798. "G": 255,
  1799. "B": 255
  1800. },
  1801. "LineLength": 62,
  1802. "LineWidth": 474.43,
  1803. "TextWrap": true,
  1804. "Id": "9af5ee42-1ff7-4fa0-8bcd-1abee897661c",
  1805. "Index": 0,
  1806. "Tag": {
  1807. "Id": "9ebbaa61-a91d-4399-a3f4-df29117d2d59",
  1808. "Name": "ReportSummary",
  1809. "IsDefault": true,
  1810. "ElementTagType": "DiagnosticEntry"
  1811. },
  1812. "MeasureTag": null,
  1813. "HorizontalAlignment": "Stretch",
  1814. "VerticalAlignment": "Center",
  1815. "Margin": {
  1816. "Left": 0.0,
  1817. "Top": 0.0,
  1818. "Right": 0.0,
  1819. "Bottom": 0.0
  1820. },
  1821. "ElementType": {
  1822. "Name": "InputText"
  1823. }
  1824. }
  1825. ],
  1826. "Id": "593c81cd-8617-4292-aee5-be5d8589dcfd",
  1827. "Index": 9,
  1828. "Tag": null,
  1829. "MeasureTag": null,
  1830. "HorizontalAlignment": "Stretch",
  1831. "VerticalAlignment": "Stretch",
  1832. "Margin": {
  1833. "Left": 0.0,
  1834. "Top": 0.0,
  1835. "Right": 0.0,
  1836. "Bottom": 0.0
  1837. },
  1838. "ElementType": {
  1839. "Name": "Paragraph"
  1840. }
  1841. },
  1842. {
  1843. "LineSpace": 0.0,
  1844. "Elements": [
  1845. {
  1846. "Text": " ",
  1847. "FontName": "Arial",
  1848. "FontSize": 10.5,
  1849. "FontStyles": [],
  1850. "FontColor": {
  1851. "A": 255,
  1852. "R": 0,
  1853. "G": 0,
  1854. "B": 0
  1855. },
  1856. "Background": {
  1857. "A": 255,
  1858. "R": 255,
  1859. "G": 255,
  1860. "B": 255
  1861. },
  1862. "LineLength": 1,
  1863. "LineWidth": 0.0,
  1864. "TextWrap": false,
  1865. "Id": "33db5fdc-3b49-48b0-840c-030bfa0256db",
  1866. "Index": 0,
  1867. "Tag": null,
  1868. "MeasureTag": null,
  1869. "HorizontalAlignment": "Stretch",
  1870. "VerticalAlignment": "Center",
  1871. "Margin": {
  1872. "Left": 0.0,
  1873. "Top": 0.0,
  1874. "Right": 0.0,
  1875. "Bottom": 0.0
  1876. },
  1877. "ElementType": {
  1878. "Name": "StaticText"
  1879. }
  1880. }
  1881. ],
  1882. "Id": "a38a72de-67a2-46be-9ca7-2a6056c691d7",
  1883. "Index": 10,
  1884. "Tag": null,
  1885. "MeasureTag": null,
  1886. "HorizontalAlignment": "Stretch",
  1887. "VerticalAlignment": "Stretch",
  1888. "Margin": {
  1889. "Left": 0.0,
  1890. "Top": 0.0,
  1891. "Right": 0.0,
  1892. "Bottom": 0.0
  1893. },
  1894. "ElementType": {
  1895. "Name": "Paragraph"
  1896. }
  1897. }
  1898. ],
  1899. "Header": [],
  1900. "Footer": [
  1901. {
  1902. "AutoHide": false,
  1903. "IsAverageColumnWidth": false,
  1904. "AllowBreakAcrossPages": true,
  1905. "ColumnDefinitions": [
  1906. {
  1907. "Width": 238.25
  1908. },
  1909. {
  1910. "Width": 238.25
  1911. }
  1912. ],
  1913. "RowDefinitions": [
  1914. {
  1915. "Height": 18.075000000000003,
  1916. "Type": "MinValue",
  1917. "MinHeight": 18.0
  1918. },
  1919. {
  1920. "Height": 18.075000000000003,
  1921. "Type": "MinValue",
  1922. "MinHeight": 18.0
  1923. }
  1924. ],
  1925. "Cells": [
  1926. {
  1927. "Row": 1,
  1928. "Column": 0,
  1929. "RowSpan": 2,
  1930. "ColumnSpan": 1
  1931. },
  1932. {
  1933. "Blocks": [
  1934. {
  1935. "LineSpace": 0.0,
  1936. "Elements": [
  1937. {
  1938. "Text": "Date:",
  1939. "FontName": "Arial",
  1940. "FontSize": 10.5,
  1941. "FontStyles": [],
  1942. "FontColor": {
  1943. "A": 255,
  1944. "R": 0,
  1945. "G": 0,
  1946. "B": 0
  1947. },
  1948. "Background": {
  1949. "A": 255,
  1950. "R": 255,
  1951. "G": 255,
  1952. "B": 255
  1953. },
  1954. "LineLength": 5,
  1955. "LineWidth": 0.0,
  1956. "TextWrap": false,
  1957. "Id": "56a4d09b-0f0e-47b2-86e7-c97153eeaa7f",
  1958. "Index": 0,
  1959. "Tag": null,
  1960. "MeasureTag": null,
  1961. "HorizontalAlignment": "Stretch",
  1962. "VerticalAlignment": "Center",
  1963. "Margin": {
  1964. "Left": 0.0,
  1965. "Top": 0.0,
  1966. "Right": 0.0,
  1967. "Bottom": 0.0
  1968. },
  1969. "ElementType": {
  1970. "Name": "StaticText"
  1971. }
  1972. },
  1973. {
  1974. "IsReadOnly": true,
  1975. "DateTimeFormat": "yyyy-MM-dd",
  1976. "IsRealTime": true,
  1977. "ShowEnabled": true,
  1978. "FontName": "Arial",
  1979. "FontSize": 10.5,
  1980. "FontStyles": [],
  1981. "FontColor": {
  1982. "A": 255,
  1983. "R": 0,
  1984. "G": 0,
  1985. "B": 0
  1986. },
  1987. "Background": {
  1988. "A": 255,
  1989. "R": 255,
  1990. "G": 255,
  1991. "B": 255
  1992. },
  1993. "LineLength": 5,
  1994. "LineWidth": 0.0,
  1995. "TextWrap": false,
  1996. "Id": "6bca4c98-5087-451c-9aa6-9e103d2919ca",
  1997. "Index": 1,
  1998. "Tag": {
  1999. "Id": "4abbaa61-a91d-4399-a3f4-df29117d2d59",
  2000. "Name": "ReportTime",
  2001. "IsDefault": true,
  2002. "ElementTagType": "General"
  2003. },
  2004. "MeasureTag": null,
  2005. "HorizontalAlignment": "Stretch",
  2006. "VerticalAlignment": "Center",
  2007. "Margin": {
  2008. "Left": 0.0,
  2009. "Top": 0.0,
  2010. "Right": 0.0,
  2011. "Bottom": 0.0
  2012. },
  2013. "ElementType": {
  2014. "Name": "DateTime"
  2015. }
  2016. }
  2017. ],
  2018. "Id": "242ce7bd-ce75-4f82-937a-d928407f9914",
  2019. "Index": 0,
  2020. "Tag": null,
  2021. "MeasureTag": null,
  2022. "HorizontalAlignment": "Stretch",
  2023. "VerticalAlignment": "Stretch",
  2024. "Margin": {
  2025. "Left": 0.0,
  2026. "Top": 0.0,
  2027. "Right": 0.0,
  2028. "Bottom": 0.0
  2029. },
  2030. "ElementType": {
  2031. "Name": "Paragraph"
  2032. }
  2033. }
  2034. ],
  2035. "Background": {
  2036. "A": 0,
  2037. "R": 255,
  2038. "G": 255,
  2039. "B": 255
  2040. },
  2041. "WidthType": "FixedValue",
  2042. "HeightType": "MinValue",
  2043. "Borders": {
  2044. "Left": {
  2045. "BorderStyle": "None",
  2046. "Color": {
  2047. "A": 255,
  2048. "R": 0,
  2049. "G": 0,
  2050. "B": 0
  2051. },
  2052. "Thickness": 1.0
  2053. },
  2054. "Top": {
  2055. "BorderStyle": "None",
  2056. "Color": {
  2057. "A": 255,
  2058. "R": 0,
  2059. "G": 0,
  2060. "B": 0
  2061. },
  2062. "Thickness": 1.0
  2063. },
  2064. "Right": {
  2065. "BorderStyle": "None",
  2066. "Color": {
  2067. "A": 255,
  2068. "R": 0,
  2069. "G": 0,
  2070. "B": 0
  2071. },
  2072. "Thickness": 1.0
  2073. },
  2074. "Bottom": {
  2075. "BorderStyle": "None",
  2076. "Color": {
  2077. "A": 255,
  2078. "R": 0,
  2079. "G": 0,
  2080. "B": 0
  2081. },
  2082. "Thickness": 1.0
  2083. }
  2084. },
  2085. "Id": "7f07715e-598d-46c5-a376-3930d62e06a6",
  2086. "Index": 0,
  2087. "Tag": null,
  2088. "MeasureTag": null,
  2089. "HorizontalAlignment": "Stretch",
  2090. "VerticalAlignment": "Stretch",
  2091. "Margin": {
  2092. "Left": 0.0,
  2093. "Top": 0.0,
  2094. "Right": 0.0,
  2095. "Bottom": 0.0
  2096. },
  2097. "ElementType": {
  2098. "Name": "RTCell"
  2099. }
  2100. },
  2101. {
  2102. "Row": 0,
  2103. "Column": 0,
  2104. "RowSpan": 1,
  2105. "ColumnSpan": 1
  2106. },
  2107. {
  2108. "Blocks": [
  2109. {
  2110. "LineSpace": 0.0,
  2111. "Elements": [
  2112. {
  2113. "Text": "Reading Physician:",
  2114. "FontName": "Arial",
  2115. "FontSize": 10.5,
  2116. "FontStyles": [],
  2117. "FontColor": {
  2118. "A": 255,
  2119. "R": 0,
  2120. "G": 0,
  2121. "B": 0
  2122. },
  2123. "Background": {
  2124. "A": 255,
  2125. "R": 255,
  2126. "G": 255,
  2127. "B": 255
  2128. },
  2129. "LineLength": 18,
  2130. "LineWidth": 0.0,
  2131. "TextWrap": false,
  2132. "Id": "e1044854-29a0-4ccb-998a-3946743f4411",
  2133. "Index": 0,
  2134. "Tag": null,
  2135. "MeasureTag": null,
  2136. "HorizontalAlignment": "Stretch",
  2137. "VerticalAlignment": "Center",
  2138. "Margin": {
  2139. "Left": 0.0,
  2140. "Top": 0.0,
  2141. "Right": 0.0,
  2142. "Bottom": 0.0
  2143. },
  2144. "ElementType": {
  2145. "Name": "StaticText"
  2146. }
  2147. },
  2148. {
  2149. "IsReadOnly": false,
  2150. "FontName": "Arial",
  2151. "FontSize": 10.5,
  2152. "FontStyles": [],
  2153. "FontColor": {
  2154. "A": 255,
  2155. "R": 0,
  2156. "G": 0,
  2157. "B": 0
  2158. },
  2159. "Background": {
  2160. "A": 255,
  2161. "R": 255,
  2162. "G": 255,
  2163. "B": 255
  2164. },
  2165. "LineLength": 10,
  2166. "LineWidth": 105.0,
  2167. "TextWrap": false,
  2168. "Id": "630a046d-2d60-4fd9-9117-ac27f802f016",
  2169. "Index": 1,
  2170. "Tag": {
  2171. "Id": "5abbaa61-a91d-4399-a3f4-df29117d2d59",
  2172. "Name": "InspectionPhysician",
  2173. "IsDefault": true,
  2174. "ElementTagType": "General"
  2175. },
  2176. "MeasureTag": null,
  2177. "HorizontalAlignment": "Stretch",
  2178. "VerticalAlignment": "Center",
  2179. "Margin": {
  2180. "Left": 0.0,
  2181. "Top": 0.0,
  2182. "Right": 0.0,
  2183. "Bottom": 0.0
  2184. },
  2185. "ElementType": {
  2186. "Name": "InputText"
  2187. }
  2188. }
  2189. ],
  2190. "Id": "7f3927d7-80da-4294-8f0e-43253bf0512f",
  2191. "Index": 0,
  2192. "Tag": null,
  2193. "MeasureTag": null,
  2194. "HorizontalAlignment": "Stretch",
  2195. "VerticalAlignment": "Stretch",
  2196. "Margin": {
  2197. "Left": 0.0,
  2198. "Top": 0.0,
  2199. "Right": 0.0,
  2200. "Bottom": 0.0
  2201. },
  2202. "ElementType": {
  2203. "Name": "Paragraph"
  2204. }
  2205. }
  2206. ],
  2207. "Background": {
  2208. "A": 0,
  2209. "R": 255,
  2210. "G": 255,
  2211. "B": 255
  2212. },
  2213. "WidthType": "FixedValue",
  2214. "HeightType": "MinValue",
  2215. "Borders": {
  2216. "Left": {
  2217. "BorderStyle": "None",
  2218. "Color": {
  2219. "A": 255,
  2220. "R": 0,
  2221. "G": 0,
  2222. "B": 0
  2223. },
  2224. "Thickness": 1.0
  2225. },
  2226. "Top": {
  2227. "BorderStyle": "None",
  2228. "Color": {
  2229. "A": 255,
  2230. "R": 0,
  2231. "G": 0,
  2232. "B": 0
  2233. },
  2234. "Thickness": 1.0
  2235. },
  2236. "Right": {
  2237. "BorderStyle": "None",
  2238. "Color": {
  2239. "A": 255,
  2240. "R": 0,
  2241. "G": 0,
  2242. "B": 0
  2243. },
  2244. "Thickness": 1.0
  2245. },
  2246. "Bottom": {
  2247. "BorderStyle": "None",
  2248. "Color": {
  2249. "A": 255,
  2250. "R": 0,
  2251. "G": 0,
  2252. "B": 0
  2253. },
  2254. "Thickness": 1.0
  2255. }
  2256. },
  2257. "Id": "0fe61461-db77-4879-ab8c-2b94f8f33620",
  2258. "Index": 0,
  2259. "Tag": null,
  2260. "MeasureTag": null,
  2261. "HorizontalAlignment": "Stretch",
  2262. "VerticalAlignment": "Stretch",
  2263. "Margin": {
  2264. "Left": 0.0,
  2265. "Top": 0.0,
  2266. "Right": 0.0,
  2267. "Bottom": 0.0
  2268. },
  2269. "ElementType": {
  2270. "Name": "RTCell"
  2271. }
  2272. },
  2273. {
  2274. "Row": 0,
  2275. "Column": 1,
  2276. "RowSpan": 1,
  2277. "ColumnSpan": 1
  2278. },
  2279. {
  2280. "Blocks": [
  2281. {
  2282. "LineSpace": 0.0,
  2283. "Elements": [
  2284. {
  2285. "Text": "Report Physician:",
  2286. "FontName": "Arial",
  2287. "FontSize": 10.5,
  2288. "FontStyles": [],
  2289. "FontColor": {
  2290. "A": 255,
  2291. "R": 0,
  2292. "G": 0,
  2293. "B": 0
  2294. },
  2295. "Background": {
  2296. "A": 255,
  2297. "R": 255,
  2298. "G": 255,
  2299. "B": 255
  2300. },
  2301. "LineLength": 5,
  2302. "LineWidth": 0.0,
  2303. "TextWrap": false,
  2304. "Id": "e8c22148-13ea-4acb-a2f0-1879ab5221bd",
  2305. "Index": 0,
  2306. "Tag": null,
  2307. "MeasureTag": null,
  2308. "HorizontalAlignment": "Stretch",
  2309. "VerticalAlignment": "Center",
  2310. "Margin": {
  2311. "Left": 0.0,
  2312. "Top": 0.0,
  2313. "Right": 0.0,
  2314. "Bottom": 0.0
  2315. },
  2316. "ElementType": {
  2317. "Name": "StaticText"
  2318. }
  2319. },
  2320. {
  2321. "IsReadOnly": true,
  2322. "FontName": "Arial",
  2323. "FontSize": 10.5,
  2324. "FontStyles": [],
  2325. "FontColor": {
  2326. "A": 255,
  2327. "R": 0,
  2328. "G": 0,
  2329. "B": 0
  2330. },
  2331. "Background": {
  2332. "A": 255,
  2333. "R": 255,
  2334. "G": 255,
  2335. "B": 255
  2336. },
  2337. "LineLength": 9,
  2338. "LineWidth": 90.91,
  2339. "TextWrap": false,
  2340. "Id": "5c51bdd6-6a10-40d3-8bcf-5a6a952d8ec7",
  2341. "Index": 1,
  2342. "Tag": {
  2343. "Id": "5abbaa61-a91d-4399-a3f4-df29117d2d59",
  2344. "Name": "ReportPhysician",
  2345. "IsDefault": true,
  2346. "ElementTagType": "General"
  2347. },
  2348. "MeasureTag": null,
  2349. "HorizontalAlignment": "Stretch",
  2350. "VerticalAlignment": "Center",
  2351. "Margin": {
  2352. "Left": 0.0,
  2353. "Top": 0.0,
  2354. "Right": 0.0,
  2355. "Bottom": 0.0
  2356. },
  2357. "ElementType": {
  2358. "Name": "InputText"
  2359. }
  2360. }
  2361. ],
  2362. "Id": "9f777412-27ef-497f-8fdc-1b164eabc38e",
  2363. "Index": 0,
  2364. "Tag": null,
  2365. "MeasureTag": null,
  2366. "HorizontalAlignment": "Stretch",
  2367. "VerticalAlignment": "Stretch",
  2368. "Margin": {
  2369. "Left": 0.0,
  2370. "Top": 0.0,
  2371. "Right": 0.0,
  2372. "Bottom": 0.0
  2373. },
  2374. "ElementType": {
  2375. "Name": "Paragraph"
  2376. }
  2377. }
  2378. ],
  2379. "Background": {
  2380. "A": 0,
  2381. "R": 255,
  2382. "G": 255,
  2383. "B": 255
  2384. },
  2385. "WidthType": "FixedValue",
  2386. "HeightType": "MinValue",
  2387. "Borders": {
  2388. "Left": {
  2389. "BorderStyle": "None",
  2390. "Color": {
  2391. "A": 255,
  2392. "R": 0,
  2393. "G": 0,
  2394. "B": 0
  2395. },
  2396. "Thickness": 1.0
  2397. },
  2398. "Top": {
  2399. "BorderStyle": "None",
  2400. "Color": {
  2401. "A": 255,
  2402. "R": 0,
  2403. "G": 0,
  2404. "B": 0
  2405. },
  2406. "Thickness": 1.0
  2407. },
  2408. "Right": {
  2409. "BorderStyle": "None",
  2410. "Color": {
  2411. "A": 255,
  2412. "R": 0,
  2413. "G": 0,
  2414. "B": 0
  2415. },
  2416. "Thickness": 1.0
  2417. },
  2418. "Bottom": {
  2419. "BorderStyle": "None",
  2420. "Color": {
  2421. "A": 255,
  2422. "R": 0,
  2423. "G": 0,
  2424. "B": 0
  2425. },
  2426. "Thickness": 1.0
  2427. }
  2428. },
  2429. "Id": "7e04df27-82e9-4fdd-ba56-c540ae7943ce",
  2430. "Index": 0,
  2431. "Tag": null,
  2432. "MeasureTag": null,
  2433. "HorizontalAlignment": "Stretch",
  2434. "VerticalAlignment": "Stretch",
  2435. "Margin": {
  2436. "Left": 0.0,
  2437. "Top": 0.0,
  2438. "Right": 0.0,
  2439. "Bottom": 0.0
  2440. },
  2441. "ElementType": {
  2442. "Name": "RTCell"
  2443. }
  2444. }
  2445. ],
  2446. "Id": "cd475b1c-1789-4da3-8d70-f6701586d9a6",
  2447. "Index": 0,
  2448. "Tag": null,
  2449. "MeasureTag": null,
  2450. "HorizontalAlignment": "Left",
  2451. "VerticalAlignment": "Stretch",
  2452. "Margin": {
  2453. "Left": 0.0,
  2454. "Top": 0.0,
  2455. "Right": 0.0,
  2456. "Bottom": 0.0
  2457. },
  2458. "ElementType": {
  2459. "Name": "RTTable"
  2460. }
  2461. },
  2462. {
  2463. "LineSpace": 0.0,
  2464. "Elements": [
  2465. {
  2466. "Width": 478.61559055118107,
  2467. "BorderStyle": "Solid",
  2468. "Stroke": {
  2469. "A": 255,
  2470. "R": 0,
  2471. "G": 0,
  2472. "B": 0
  2473. },
  2474. "Thickness": 1.0,
  2475. "Id": "710c0d02-201a-49ee-841f-2c28ff405824",
  2476. "Index": 0,
  2477. "Tag": null,
  2478. "MeasureTag": null,
  2479. "HorizontalAlignment": "Stretch",
  2480. "VerticalAlignment": "Stretch",
  2481. "Margin": {
  2482. "Left": 0.0,
  2483. "Top": 0.0,
  2484. "Right": 0.0,
  2485. "Bottom": 0.0
  2486. },
  2487. "ElementType": {
  2488. "Name": "Line"
  2489. }
  2490. }
  2491. ],
  2492. "Id": "8a963979-c360-4474-a799-d00dd955a8b0",
  2493. "Index": 1,
  2494. "Tag": null,
  2495. "MeasureTag": null,
  2496. "HorizontalAlignment": "Stretch",
  2497. "VerticalAlignment": "Stretch",
  2498. "Margin": {
  2499. "Left": 0.0,
  2500. "Top": 0.0,
  2501. "Right": 0.0,
  2502. "Bottom": 0.0
  2503. },
  2504. "ElementType": {
  2505. "Name": "Paragraph"
  2506. }
  2507. },
  2508. {
  2509. "LineSpace": 0.0,
  2510. "Elements": [
  2511. {
  2512. "Text": "This report is only for clinical reference. ",
  2513. "FontName": "Arial",
  2514. "FontSize": 10.5,
  2515. "FontStyles": [],
  2516. "FontColor": {
  2517. "A": 255,
  2518. "R": 0,
  2519. "G": 0,
  2520. "B": 0
  2521. },
  2522. "Background": {
  2523. "A": 255,
  2524. "R": 255,
  2525. "G": 255,
  2526. "B": 255
  2527. },
  2528. "LineLength": 44,
  2529. "LineWidth": 0.0,
  2530. "TextWrap": false,
  2531. "Id": "329d1bf5-fa8d-4a60-b2be-660c56f6247e",
  2532. "Index": 0,
  2533. "Tag": null,
  2534. "MeasureTag": null,
  2535. "HorizontalAlignment": "Stretch",
  2536. "VerticalAlignment": "Center",
  2537. "Margin": {
  2538. "Left": 0.0,
  2539. "Top": 0.0,
  2540. "Right": 0.0,
  2541. "Bottom": 0.0
  2542. },
  2543. "ElementType": {
  2544. "Name": "StaticText"
  2545. }
  2546. }
  2547. ],
  2548. "Id": "1f73301c-dea7-4b16-bb41-6c1679184b37",
  2549. "Index": 2,
  2550. "Tag": null,
  2551. "MeasureTag": null,
  2552. "HorizontalAlignment": "Stretch",
  2553. "VerticalAlignment": "Stretch",
  2554. "Margin": {
  2555. "Left": 0.0,
  2556. "Top": 0.0,
  2557. "Right": 0.0,
  2558. "Bottom": 0.0
  2559. },
  2560. "ElementType": {
  2561. "Name": "Paragraph"
  2562. }
  2563. }
  2564. ],
  2565. "BaseFontSize": 9.0,
  2566. "InvertColor": false,
  2567. "Version": "1.1_1.7.27.21463"
  2568. }