CamBox_RV1106.PrjPcb 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307
  1. [Design]
  2. Version=1.0
  3. HierarchyMode=0
  4. ChannelRoomNamingStyle=0
  5. ReleasesFolder=
  6. ChannelDesignatorFormatString=$Component_$RoomName
  7. ChannelRoomLevelSeperator=_
  8. OpenOutputs=1
  9. ArchiveProject=0
  10. TimestampOutput=0
  11. SeparateFolders=0
  12. TemplateLocationPath=
  13. PinSwapBy_Netlabel=1
  14. PinSwapBy_Pin=1
  15. AllowPortNetNames=0
  16. AllowSheetEntryNetNames=1
  17. AppendSheetNumberToLocalNets=0
  18. NetlistSinglePinNets=0
  19. DefaultConfiguration=Sources
  20. UserID=0xFFFFFFFF
  21. DefaultPcbProtel=1
  22. DefaultPcbPcad=0
  23. ReorderDocumentsOnCompile=1
  24. NameNetsHierarchically=0
  25. PowerPortNamesTakePriority=0
  26. AutoSheetNumbering=0
  27. PushECOToAnnotationFile=1
  28. DItemRevisionGUID=
  29. ReportSuppressedErrorsInMessages=0
  30. FSMCodingStyle=eFMSDropDownList_OneProcess
  31. FSMEncodingStyle=eFMSDropDownList_OneHot
  32. IsProjectConflictPreventionWarningsEnabled=1
  33. OutputPath=
  34. LogFolderPath=
  35. ManagedProjectGUID=
  36. IncludeDesignInRelease=0
  37. VaultGUID=
  38. ReleaseVaultName=
  39. ItemGUID=
  40. [Preferences]
  41. PrefsVaultGUID=
  42. PrefsRevisionGUID=
  43. [Document1]
  44. DocumentPath=Output.OutJob
  45. AnnotationEnabled=1
  46. AnnotateStartValue=1
  47. AnnotationIndexControlEnabled=0
  48. AnnotateSuffix=
  49. AnnotateScope=All
  50. AnnotateOrder=-1
  51. DoLibraryUpdate=1
  52. DoDatabaseUpdate=1
  53. ClassGenCCAutoEnabled=1
  54. ClassGenCCAutoRoomEnabled=1
  55. ClassGenNCAutoScope=None
  56. DItemRevisionGUID=
  57. GenerateClassCluster=0
  58. DocumentUniqueId=
  59. [Document2]
  60. DocumentPath=Block_Diagram.SchDoc
  61. AnnotationEnabled=1
  62. AnnotateStartValue=1
  63. AnnotationIndexControlEnabled=0
  64. AnnotateSuffix=
  65. AnnotateScope=All
  66. AnnotateOrder=15
  67. DoLibraryUpdate=1
  68. DoDatabaseUpdate=1
  69. ClassGenCCAutoEnabled=1
  70. ClassGenCCAutoRoomEnabled=1
  71. ClassGenNCAutoScope=None
  72. DItemRevisionGUID=
  73. GenerateClassCluster=0
  74. DocumentUniqueId=BCYXRSKT
  75. [Document3]
  76. DocumentPath=POWER.SchDoc
  77. AnnotationEnabled=1
  78. AnnotateStartValue=1
  79. AnnotationIndexControlEnabled=0
  80. AnnotateSuffix=
  81. AnnotateScope=All
  82. AnnotateOrder=0
  83. DoLibraryUpdate=1
  84. DoDatabaseUpdate=1
  85. ClassGenCCAutoEnabled=1
  86. ClassGenCCAutoRoomEnabled=1
  87. ClassGenNCAutoScope=None
  88. DItemRevisionGUID=
  89. GenerateClassCluster=0
  90. DocumentUniqueId=YZVKBUMY
  91. [Document4]
  92. DocumentPath=CORE_RV1106.SchDoc
  93. AnnotationEnabled=1
  94. AnnotateStartValue=1
  95. AnnotationIndexControlEnabled=0
  96. AnnotateSuffix=
  97. AnnotateScope=All
  98. AnnotateOrder=14
  99. DoLibraryUpdate=1
  100. DoDatabaseUpdate=1
  101. ClassGenCCAutoEnabled=1
  102. ClassGenCCAutoRoomEnabled=1
  103. ClassGenNCAutoScope=None
  104. DItemRevisionGUID=
  105. GenerateClassCluster=0
  106. DocumentUniqueId=TYDQGRHT
  107. [Document5]
  108. DocumentPath=MCU_RX130-140.SchDoc
  109. AnnotationEnabled=1
  110. AnnotateStartValue=1
  111. AnnotationIndexControlEnabled=0
  112. AnnotateSuffix=
  113. AnnotateScope=All
  114. AnnotateOrder=16
  115. DoLibraryUpdate=1
  116. DoDatabaseUpdate=1
  117. ClassGenCCAutoEnabled=1
  118. ClassGenCCAutoRoomEnabled=1
  119. ClassGenNCAutoScope=None
  120. DItemRevisionGUID=
  121. GenerateClassCluster=0
  122. DocumentUniqueId=UGELCSZG
  123. [Document6]
  124. DocumentPath=AUDIO.SchDoc
  125. AnnotationEnabled=1
  126. AnnotateStartValue=1
  127. AnnotationIndexControlEnabled=0
  128. AnnotateSuffix=
  129. AnnotateScope=All
  130. AnnotateOrder=2
  131. DoLibraryUpdate=1
  132. DoDatabaseUpdate=1
  133. ClassGenCCAutoEnabled=1
  134. ClassGenCCAutoRoomEnabled=0
  135. ClassGenNCAutoScope=None
  136. DItemRevisionGUID=
  137. GenerateClassCluster=0
  138. DocumentUniqueId=FQUWCDSP
  139. [Document7]
  140. DocumentPath=CAMERA.SchDoc
  141. AnnotationEnabled=1
  142. AnnotateStartValue=1
  143. AnnotationIndexControlEnabled=0
  144. AnnotateSuffix=
  145. AnnotateScope=All
  146. AnnotateOrder=3
  147. DoLibraryUpdate=1
  148. DoDatabaseUpdate=1
  149. ClassGenCCAutoEnabled=1
  150. ClassGenCCAutoRoomEnabled=0
  151. ClassGenNCAutoScope=None
  152. DItemRevisionGUID=
  153. GenerateClassCluster=0
  154. DocumentUniqueId=CPLWNQMC
  155. [Document8]
  156. DocumentPath=UART.SchDoc
  157. AnnotationEnabled=1
  158. AnnotateStartValue=1
  159. AnnotationIndexControlEnabled=0
  160. AnnotateSuffix=
  161. AnnotateScope=All
  162. AnnotateOrder=4
  163. DoLibraryUpdate=1
  164. DoDatabaseUpdate=1
  165. ClassGenCCAutoEnabled=1
  166. ClassGenCCAutoRoomEnabled=0
  167. ClassGenNCAutoScope=None
  168. DItemRevisionGUID=
  169. GenerateClassCluster=0
  170. DocumentUniqueId=IBCFWMTB
  171. [Document9]
  172. DocumentPath=Function.SchDoc
  173. AnnotationEnabled=1
  174. AnnotateStartValue=1
  175. AnnotationIndexControlEnabled=0
  176. AnnotateSuffix=
  177. AnnotateScope=All
  178. AnnotateOrder=5
  179. DoLibraryUpdate=1
  180. DoDatabaseUpdate=1
  181. ClassGenCCAutoEnabled=1
  182. ClassGenCCAutoRoomEnabled=0
  183. ClassGenNCAutoScope=None
  184. DItemRevisionGUID=
  185. GenerateClassCluster=0
  186. DocumentUniqueId=XTFNUDHB
  187. [Document10]
  188. DocumentPath=TF.SchDoc
  189. AnnotationEnabled=1
  190. AnnotateStartValue=1
  191. AnnotationIndexControlEnabled=0
  192. AnnotateSuffix=
  193. AnnotateScope=All
  194. AnnotateOrder=6
  195. DoLibraryUpdate=1
  196. DoDatabaseUpdate=1
  197. ClassGenCCAutoEnabled=1
  198. ClassGenCCAutoRoomEnabled=0
  199. ClassGenNCAutoScope=None
  200. DItemRevisionGUID=
  201. GenerateClassCluster=0
  202. DocumentUniqueId=HTPWMWOC
  203. [Document11]
  204. DocumentPath=4G.SchDoc
  205. AnnotationEnabled=1
  206. AnnotateStartValue=1
  207. AnnotationIndexControlEnabled=0
  208. AnnotateSuffix=
  209. AnnotateScope=All
  210. AnnotateOrder=7
  211. DoLibraryUpdate=1
  212. DoDatabaseUpdate=1
  213. ClassGenCCAutoEnabled=1
  214. ClassGenCCAutoRoomEnabled=0
  215. ClassGenNCAutoScope=None
  216. DItemRevisionGUID=
  217. GenerateClassCluster=0
  218. DocumentUniqueId=HBTPIULA
  219. [Document12]
  220. DocumentPath=GPS.SchDoc
  221. AnnotationEnabled=1
  222. AnnotateStartValue=1
  223. AnnotationIndexControlEnabled=0
  224. AnnotateSuffix=
  225. AnnotateScope=All
  226. AnnotateOrder=8
  227. DoLibraryUpdate=1
  228. DoDatabaseUpdate=1
  229. ClassGenCCAutoEnabled=1
  230. ClassGenCCAutoRoomEnabled=0
  231. ClassGenNCAutoScope=None
  232. DItemRevisionGUID=
  233. GenerateClassCluster=0
  234. DocumentUniqueId=XBHZKGQY
  235. [Document13]
  236. DocumentPath=ETH.SchDoc
  237. AnnotationEnabled=1
  238. AnnotateStartValue=1
  239. AnnotationIndexControlEnabled=0
  240. AnnotateSuffix=
  241. AnnotateScope=All
  242. AnnotateOrder=9
  243. DoLibraryUpdate=1
  244. DoDatabaseUpdate=1
  245. ClassGenCCAutoEnabled=1
  246. ClassGenCCAutoRoomEnabled=0
  247. ClassGenNCAutoScope=None
  248. DItemRevisionGUID=
  249. GenerateClassCluster=0
  250. DocumentUniqueId=PURCMWXV
  251. [Document14]
  252. DocumentPath=INPUT.SchDoc
  253. AnnotationEnabled=1
  254. AnnotateStartValue=1
  255. AnnotationIndexControlEnabled=0
  256. AnnotateSuffix=
  257. AnnotateScope=All
  258. AnnotateOrder=10
  259. DoLibraryUpdate=1
  260. DoDatabaseUpdate=1
  261. ClassGenCCAutoEnabled=1
  262. ClassGenCCAutoRoomEnabled=0
  263. ClassGenNCAutoScope=None
  264. DItemRevisionGUID=
  265. GenerateClassCluster=0
  266. DocumentUniqueId=BCQXQIZB
  267. [Document15]
  268. DocumentPath=OUTPUT.SchDoc
  269. AnnotationEnabled=1
  270. AnnotateStartValue=1
  271. AnnotationIndexControlEnabled=0
  272. AnnotateSuffix=
  273. AnnotateScope=All
  274. AnnotateOrder=11
  275. DoLibraryUpdate=1
  276. DoDatabaseUpdate=1
  277. ClassGenCCAutoEnabled=1
  278. ClassGenCCAutoRoomEnabled=0
  279. ClassGenNCAutoScope=None
  280. DItemRevisionGUID=
  281. GenerateClassCluster=0
  282. DocumentUniqueId=QOXORCSF
  283. [Document16]
  284. DocumentPath=CONN.SchDoc
  285. AnnotationEnabled=1
  286. AnnotateStartValue=1
  287. AnnotationIndexControlEnabled=0
  288. AnnotateSuffix=
  289. AnnotateScope=All
  290. AnnotateOrder=13
  291. DoLibraryUpdate=1
  292. DoDatabaseUpdate=1
  293. ClassGenCCAutoEnabled=1
  294. ClassGenCCAutoRoomEnabled=0
  295. ClassGenNCAutoScope=None
  296. DItemRevisionGUID=
  297. GenerateClassCluster=0
  298. DocumentUniqueId=SAITEOPN
  299. [Document17]
  300. DocumentPath=CamBox_RV1106.OutJob
  301. AnnotationEnabled=1
  302. AnnotateStartValue=1
  303. AnnotationIndexControlEnabled=0
  304. AnnotateSuffix=
  305. AnnotateScope=All
  306. AnnotateOrder=-1
  307. DoLibraryUpdate=1
  308. DoDatabaseUpdate=1
  309. ClassGenCCAutoEnabled=1
  310. ClassGenCCAutoRoomEnabled=1
  311. ClassGenNCAutoScope=None
  312. DItemRevisionGUID=
  313. GenerateClassCluster=0
  314. DocumentUniqueId=
  315. [Document18]
  316. DocumentPath=CamBox_RV11061\CamBox_RV1106.PcbLib
  317. AnnotationEnabled=1
  318. AnnotateStartValue=1
  319. AnnotationIndexControlEnabled=0
  320. AnnotateSuffix=
  321. AnnotateScope=All
  322. AnnotateOrder=-1
  323. DoLibraryUpdate=1
  324. DoDatabaseUpdate=1
  325. ClassGenCCAutoEnabled=1
  326. ClassGenCCAutoRoomEnabled=1
  327. ClassGenNCAutoScope=None
  328. DItemRevisionGUID=
  329. GenerateClassCluster=0
  330. DocumentUniqueId=TCHWHPCA
  331. [Document19]
  332. DocumentPath=CamBox_RV11061\CamBox_RV1106.SCHLIB
  333. AnnotationEnabled=1
  334. AnnotateStartValue=1
  335. AnnotationIndexControlEnabled=0
  336. AnnotateSuffix=
  337. AnnotateScope=All
  338. AnnotateOrder=-1
  339. DoLibraryUpdate=1
  340. DoDatabaseUpdate=1
  341. ClassGenCCAutoEnabled=1
  342. ClassGenCCAutoRoomEnabled=1
  343. ClassGenNCAutoScope=None
  344. DItemRevisionGUID=
  345. GenerateClassCluster=0
  346. DocumentUniqueId=PJEWJJUC
  347. [Document20]
  348. DocumentPath=CamBox_RV1106.IntLib
  349. AnnotationEnabled=1
  350. AnnotateStartValue=1
  351. AnnotationIndexControlEnabled=0
  352. AnnotateSuffix=
  353. AnnotateScope=All
  354. AnnotateOrder=-1
  355. DoLibraryUpdate=1
  356. DoDatabaseUpdate=1
  357. ClassGenCCAutoEnabled=1
  358. ClassGenCCAutoRoomEnabled=1
  359. ClassGenNCAutoScope=None
  360. DItemRevisionGUID=
  361. GenerateClassCluster=0
  362. DocumentUniqueId=
  363. [Document21]
  364. DocumentPath=CamBox_RV1106.PcbDoc
  365. AnnotationEnabled=1
  366. AnnotateStartValue=1
  367. AnnotationIndexControlEnabled=0
  368. AnnotateSuffix=
  369. AnnotateScope=All
  370. AnnotateOrder=-1
  371. DoLibraryUpdate=1
  372. DoDatabaseUpdate=1
  373. ClassGenCCAutoEnabled=1
  374. ClassGenCCAutoRoomEnabled=1
  375. ClassGenNCAutoScope=None
  376. DItemRevisionGUID=
  377. GenerateClassCluster=0
  378. DocumentUniqueId=DNIDONKW
  379. [Document22]
  380. DocumentPath=MECHANICALS.SchDoc
  381. AnnotationEnabled=1
  382. AnnotateStartValue=1
  383. AnnotationIndexControlEnabled=0
  384. AnnotateSuffix=
  385. AnnotateScope=All
  386. AnnotateOrder=17
  387. DoLibraryUpdate=1
  388. DoDatabaseUpdate=1
  389. ClassGenCCAutoEnabled=1
  390. ClassGenCCAutoRoomEnabled=1
  391. ClassGenNCAutoScope=None
  392. DItemRevisionGUID=
  393. GenerateClassCluster=0
  394. DocumentUniqueId=ECTNIVSY
  395. [ProjectVariant1]
  396. UniqueID=E3D06398-A058-42DC-91D4-E4FCEEED59B6
  397. Description=CameraBox
  398. AllowFabrication=0
  399. ParameterCount=4
  400. VariationCount=23
  401. Variation1=Designator=R28|UniqueId=\PGKVMOGM|Kind=1|AlternatePart=
  402. Variation2=Designator=R32|UniqueId=\EHOLIYFG|Kind=1|AlternatePart=
  403. Variation3=Designator=C109|UniqueId=\HMEZJDJO|Kind=1|AlternatePart=
  404. Variation4=Designator=C114|UniqueId=\RSCQUYGB|Kind=1|AlternatePart=
  405. Variation5=Designator=C187|UniqueId=\WUOFJAQV|Kind=1|AlternatePart=
  406. Variation6=Designator=R117|UniqueId=\YWMIUTDW|Kind=1|AlternatePart=
  407. Variation7=Designator=R118|UniqueId=\OYEEWPHO|Kind=1|AlternatePart=
  408. Variation8=Designator=C163|UniqueId=\FLDWJTMA|Kind=1|AlternatePart=
  409. Variation9=Designator=C164|UniqueId=\RLEMRSVZ|Kind=1|AlternatePart=
  410. Variation10=Designator=R160|UniqueId=\GTVIZXDC|Kind=1|AlternatePart=
  411. Variation11=Designator=R174|UniqueId=\BXITKBOI|Kind=1|AlternatePart=
  412. Variation12=Designator=R176|UniqueId=\ZWGPDMSA|Kind=1|AlternatePart=
  413. Variation13=Designator=R177|UniqueId=\NCLNTMOM|Kind=1|AlternatePart=
  414. Variation14=Designator=R180|UniqueId=\OZQHEAGH|Kind=1|AlternatePart=
  415. Variation15=Designator=R184|UniqueId=\FAABKJMQ|Kind=1|AlternatePart=
  416. Variation16=Designator=R183|UniqueId=\CBERASUA|Kind=1|AlternatePart=
  417. Variation17=Designator=R170|UniqueId=\KPAKVTZV|Kind=1|AlternatePart=
  418. Variation18=Designator=R225|UniqueId=\HTBUCSTY|Kind=1|AlternatePart=
  419. Variation19=Designator=R?|UniqueId=\SYIFLMHS|Kind=1|AlternatePart=
  420. Variation20=Designator=D34|UniqueId=\AJSNUYRF|Kind=1|AlternatePart=
  421. Variation21=Designator=C147|UniqueId=\RGPLURCD|Kind=1|AlternatePart=
  422. Variation22=Designator=R?|UniqueId=\JGFXGPCO|Kind=1|AlternatePart=
  423. Variation23=Designator=R?|UniqueId=\SWISXZIF|Kind=1|AlternatePart=
  424. ParamVariationCount=0
  425. [Parameter2_1]
  426. Name=author
  427. Value=Hainv
  428. [Parameter2_2]
  429. Name=Cus
  430. Value=Aithings
  431. [Parameter2_3]
  432. Name=des
  433. Value=Cambox_2026
  434. [Parameter2_4]
  435. Name=ver
  436. Value=4.0
  437. [GeneratedDocument1]
  438. DocumentPath=Project Outputs for CamBox_RV1106\Design Rule Check - CamBox_RV1106.html
  439. DItemRevisionGUID=
  440. [Configuration1]
  441. Name=Sources
  442. ParameterCount=0
  443. ConstraintFileCount=0
  444. ReleaseItemId=
  445. Variant=[No Variations]
  446. OutputJobsCount=0
  447. ContentTypeGUID=CB6F2064-E317-11DF-B822-12313F0024A2
  448. ConfigurationType=Source
  449. [Generic_EDE]
  450. OutputDir=
  451. [Generic_SmartPDF]
  452. AutoOpenFile=-1
  453. AutoOpenOutJob=-1
  454. [Generic_SmartPDFSettings]
  455. ProjectMode=-1
  456. ZoomPrecision=50
  457. AddNetsInformation=-1
  458. AddNetPins=-1
  459. AddNetNetLabels=-1
  460. AddNetPorts=-1
  461. ShowComponentParameters=-1
  462. GlobalBookmarks=0
  463. ExportBOM=0
  464. TemplateFilename=Board Stack Report.XLT
  465. TemplateStoreRelative=-1
  466. PCB_PrintColor=1
  467. SCH_PrintColor=0
  468. PrintQuality=-4
  469. SCH_ShowNoErc=-1
  470. SCH_ShowParameter=-1
  471. SCH_ShowProbes=-1
  472. SCH_ShowBlankets=-1
  473. SCH_NoERCSymbolsToShow="Thin Cross","Thick Cross","Small Cross",Checkbox,Triangle
  474. SCH_ShowNote=-1
  475. SCH_ShowNoteCollapsed=-1
  476. Wir_PrintColor=0
  477. Ldr_PrintColor=0
  478. SCH_ExpandLogicalToPhysical=-1
  479. SCH_VariantName=[No Variations]
  480. SCH_ExpandComponentDesignators=-1
  481. SCH_ExpandNetlabels=-1
  482. SCH_ExpandPorts=-1
  483. SCH_ExpandSheetNumber=-1
  484. SCH_ExpandDocumentNumber=-1
  485. SCH_HasExpandLogicalToPhysicalSheets=-1
  486. SaveSettingsToOutJob=-1
  487. [OutputGroup1]
  488. Name=Netlist Outputs
  489. Description=
  490. TargetPrinter=Microsoft Print to PDF
  491. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  492. OutputType1=CadnetixNetlist
  493. OutputName1=Cadnetix Netlist
  494. OutputDocumentPath1=
  495. OutputVariantName1=
  496. OutputDefault1=0
  497. OutputType2=CalayNetlist
  498. OutputName2=Calay Netlist
  499. OutputDocumentPath2=
  500. OutputVariantName2=
  501. OutputDefault2=0
  502. OutputType3=EDIF
  503. OutputName3=EDIF for PCB
  504. OutputDocumentPath3=
  505. OutputVariantName3=
  506. OutputDefault3=0
  507. OutputType4=EESofNetlist
  508. OutputName4=EESof Netlist
  509. OutputDocumentPath4=
  510. OutputVariantName4=
  511. OutputDefault4=0
  512. OutputType5=IntergraphNetlist
  513. OutputName5=Intergraph Netlist
  514. OutputDocumentPath5=
  515. OutputVariantName5=
  516. OutputDefault5=0
  517. OutputType6=MentorBoardStationNetlist
  518. OutputName6=Mentor BoardStation Netlist
  519. OutputDocumentPath6=
  520. OutputVariantName6=
  521. OutputDefault6=0
  522. OutputType7=MultiWire
  523. OutputName7=MultiWire
  524. OutputDocumentPath7=
  525. OutputVariantName7=
  526. OutputDefault7=0
  527. OutputType8=OrCadPCB2Netlist
  528. OutputName8=Orcad/PCB2 Netlist
  529. OutputDocumentPath8=
  530. OutputVariantName8=
  531. OutputDefault8=0
  532. OutputType9=PADSNetlist
  533. OutputName9=PADS ASCII Netlist
  534. OutputDocumentPath9=
  535. OutputVariantName9=
  536. OutputDefault9=0
  537. OutputType10=Pcad
  538. OutputName10=Pcad for PCB
  539. OutputDocumentPath10=
  540. OutputVariantName10=
  541. OutputDefault10=0
  542. OutputType11=PCADNetlist
  543. OutputName11=PCAD Netlist
  544. OutputDocumentPath11=
  545. OutputVariantName11=
  546. OutputDefault11=0
  547. OutputType12=PCADnltNetlist
  548. OutputName12=PCADnlt Netlist
  549. OutputDocumentPath12=
  550. OutputVariantName12=
  551. OutputDefault12=0
  552. OutputType13=Protel2Netlist
  553. OutputName13=Protel2 Netlist
  554. OutputDocumentPath13=
  555. OutputVariantName13=
  556. OutputDefault13=0
  557. OutputType14=ProtelNetlist
  558. OutputName14=Protel
  559. OutputDocumentPath14=
  560. OutputVariantName14=
  561. OutputDefault14=0
  562. OutputType15=RacalNetlist
  563. OutputName15=Racal Netlist
  564. OutputDocumentPath15=
  565. OutputVariantName15=
  566. OutputDefault15=0
  567. OutputType16=RINFNetlist
  568. OutputName16=RINF Netlist
  569. OutputDocumentPath16=
  570. OutputVariantName16=
  571. OutputDefault16=0
  572. OutputType17=SciCardsNetlist
  573. OutputName17=SciCards Netlist
  574. OutputDocumentPath17=
  575. OutputVariantName17=
  576. OutputDefault17=0
  577. OutputType18=TangoNetlist
  578. OutputName18=Tango Netlist
  579. OutputDocumentPath18=
  580. OutputVariantName18=
  581. OutputDefault18=0
  582. OutputType19=TelesisNetlist
  583. OutputName19=Telesis Netlist
  584. OutputDocumentPath19=
  585. OutputVariantName19=
  586. OutputDefault19=0
  587. OutputType20=WireListNetlist
  588. OutputName20=WireList Netlist
  589. OutputDocumentPath20=
  590. OutputVariantName20=
  591. OutputDefault20=0
  592. [OutputGroup2]
  593. Name=Simulator Outputs
  594. Description=
  595. TargetPrinter=Adobe PDF
  596. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  597. [OutputGroup3]
  598. Name=Documentation Outputs
  599. Description=
  600. TargetPrinter=Virtual Printer
  601. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=0
  602. OutputType1=Composite
  603. OutputName1=Composite Drawing
  604. OutputDocumentPath1=
  605. OutputVariantName1=[No Variations]
  606. OutputDefault1=0
  607. PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  608. OutputType2=PCB 3D Print
  609. OutputName2=PCB 3D Print
  610. OutputDocumentPath2=
  611. OutputVariantName2=[No Variations]
  612. OutputDefault2=0
  613. PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  614. OutputType3=PCB 3D Video
  615. OutputName3=PCB 3D Video
  616. OutputDocumentPath3=
  617. OutputVariantName3=[No Variations]
  618. OutputDefault3=0
  619. PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  620. OutputType4=PCB Print
  621. OutputName4=PCB Prints
  622. OutputDocumentPath4=
  623. OutputVariantName4=[No Variations]
  624. OutputDefault4=0
  625. PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  626. OutputType5=PCBDrawing
  627. OutputName5=Draftsman
  628. OutputDocumentPath5=
  629. OutputVariantName5=[No Variations]
  630. OutputDefault5=0
  631. PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  632. OutputType6=PCBLIB Print
  633. OutputName6=PCBLIB Prints
  634. OutputDocumentPath6=
  635. OutputVariantName6=[No Variations]
  636. OutputDefault6=0
  637. PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  638. OutputType7=PDF3D
  639. OutputName7=PDF3D
  640. OutputDocumentPath7=
  641. OutputVariantName7=[No Variations]
  642. OutputDefault7=0
  643. PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  644. OutputType8=PDF3D MBA
  645. OutputName8=PDF3D MBA
  646. OutputDocumentPath8=
  647. OutputVariantName8=
  648. OutputDefault8=0
  649. PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  650. OutputType9=Report Print
  651. OutputName9=Report Prints
  652. OutputDocumentPath9=
  653. OutputVariantName9=
  654. OutputDefault9=0
  655. PageOptions9=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  656. OutputType10=Schematic Print
  657. OutputName10=Schematic Prints
  658. OutputDocumentPath10=
  659. OutputVariantName10=
  660. OutputDefault10=0
  661. PageOptions10=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=0.88|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  662. Configuration10_Name1=OutputConfigurationParameter1
  663. Configuration10_Item1=Record=SchPrintView|ShowNoERC=True|ShowParamSet=True|ShowProbe=True|ShowBlanket=True|NoERCSymbolsToShow="Thin Cross","Thick Cross","Small Cross",Checkbox,Triangle|ShowNote=True|ShowNoteCollapsed=True|ShowOpenEnds=True|ExpandDesignator=True|ExpandNetLabel=False|ExpandPort=False|ExpandSheetNum=False|ExpandDocNum=False|PrintArea=0|PrintAreaRect.X1=0|PrintAreaRect.Y1=0|PrintAreaRect.X2=0|PrintAreaRect.Y2=0|DocumentPath=D:\1. Makipos\1. mkp-project\CameraBox_2025\Header_GPIO.SchDoc
  664. OutputType11=SimView Print
  665. OutputName11=SimView Prints
  666. OutputDocumentPath11=
  667. OutputVariantName11=
  668. OutputDefault11=0
  669. PageOptions11=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  670. [OutputGroup4]
  671. Name=Assembly Outputs
  672. Description=
  673. TargetPrinter=Microsoft Print to PDF
  674. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  675. OutputType1=Assembly
  676. OutputName1=Assembly Drawings
  677. OutputDocumentPath1=
  678. OutputVariantName1=[No Variations]
  679. OutputDefault1=0
  680. PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  681. OutputType2=Pick Place
  682. OutputName2=Generates pick and place files
  683. OutputDocumentPath2=
  684. OutputVariantName2=[No Variations]
  685. OutputDefault2=0
  686. OutputType3=Test Points For Assembly
  687. OutputName3=Test Point Report
  688. OutputDocumentPath3=
  689. OutputVariantName3=[No Variations]
  690. OutputDefault3=0
  691. [OutputGroup5]
  692. Name=Fabrication Outputs
  693. Description=
  694. TargetPrinter=Microsoft Print to PDF
  695. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  696. OutputType1=Board Stack Report
  697. OutputName1=Report Board Stack
  698. OutputDocumentPath1=
  699. OutputVariantName1=
  700. OutputDefault1=0
  701. PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  702. OutputType2=CompositeDrill
  703. OutputName2=Composite Drill Drawing
  704. OutputDocumentPath2=
  705. OutputVariantName2=[No Variations]
  706. OutputDefault2=0
  707. PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  708. OutputType3=Drill
  709. OutputName3=Drill Drawing/Guides
  710. OutputDocumentPath3=
  711. OutputVariantName3=[No Variations]
  712. OutputDefault3=0
  713. PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  714. OutputType4=Final
  715. OutputName4=Final Artwork Prints
  716. OutputDocumentPath4=
  717. OutputVariantName4=[No Variations]
  718. OutputDefault4=0
  719. PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  720. OutputType5=Gerber
  721. OutputName5=Gerber Files
  722. OutputDocumentPath5=
  723. OutputVariantName5=[No Variations]
  724. OutputDefault5=0
  725. OutputType6=Gerber X2
  726. OutputName6=Gerber X2 Files
  727. OutputDocumentPath6=
  728. OutputVariantName6=[No Variations]
  729. OutputDefault6=0
  730. OutputType7=IPC2581
  731. OutputName7=IPC-2581 Files
  732. OutputDocumentPath7=
  733. OutputVariantName7=[No Variations]
  734. OutputDefault7=0
  735. OutputType8=Mask
  736. OutputName8=Solder/Paste Mask Prints
  737. OutputDocumentPath8=
  738. OutputVariantName8=[No Variations]
  739. OutputDefault8=0
  740. PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  741. OutputType9=NC Drill
  742. OutputName9=NC Drill Files
  743. OutputDocumentPath9=
  744. OutputVariantName9=
  745. OutputDefault9=0
  746. OutputType10=ODB
  747. OutputName10=ODB++ Files
  748. OutputDocumentPath10=
  749. OutputVariantName10=[No Variations]
  750. OutputDefault10=0
  751. OutputType11=Plane
  752. OutputName11=Power-Plane Prints
  753. OutputDocumentPath11=
  754. OutputVariantName11=[No Variations]
  755. OutputDefault11=0
  756. PageOptions11=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  757. OutputType12=Test Points
  758. OutputName12=Test Point Report
  759. OutputDocumentPath12=
  760. OutputVariantName12=
  761. OutputDefault12=0
  762. [OutputGroup6]
  763. Name=Report Outputs
  764. Description=
  765. TargetPrinter=Microsoft Print to PDF
  766. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  767. OutputType1=BOM_PartType
  768. OutputName1=Bill of Materials
  769. OutputDocumentPath1=
  770. OutputVariantName1=[No Variations]
  771. OutputDefault1=0
  772. PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  773. OutputType2=ComponentCrossReference
  774. OutputName2=Component Cross Reference Report
  775. OutputDocumentPath2=
  776. OutputVariantName2=[No Variations]
  777. OutputDefault2=0
  778. OutputType3=ReportHierarchy
  779. OutputName3=Report Project Hierarchy
  780. OutputDocumentPath3=
  781. OutputVariantName3=[No Variations]
  782. OutputDefault3=0
  783. OutputType4=Script
  784. OutputName4=Script Output
  785. OutputDocumentPath4=
  786. OutputVariantName4=[No Variations]
  787. OutputDefault4=0
  788. OutputType5=SimpleBOM
  789. OutputName5=Simple BOM
  790. OutputDocumentPath5=
  791. OutputVariantName5=[No Variations]
  792. OutputDefault5=0
  793. OutputType6=SinglePinNetReporter
  794. OutputName6=Report Single Pin Nets
  795. OutputDocumentPath6=
  796. OutputVariantName6=[No Variations]
  797. OutputDefault6=0
  798. OutputType7=Export Comments
  799. OutputName7=Export Comments
  800. OutputDocumentPath7=
  801. OutputVariantName7=[No Variations]
  802. OutputDefault7=0
  803. PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  804. [OutputGroup7]
  805. Name=Other Outputs
  806. Description=
  807. TargetPrinter=Microsoft Print to PDF
  808. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  809. OutputType1=Text Print
  810. OutputName1=Text Print
  811. OutputDocumentPath1=
  812. OutputVariantName1=
  813. OutputDefault1=0
  814. PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  815. OutputType2=Text Print
  816. OutputName2=Text Print
  817. OutputDocumentPath2=
  818. OutputVariantName2=
  819. OutputDefault2=0
  820. PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  821. OutputType3=Text Print
  822. OutputName3=Text Print
  823. OutputDocumentPath3=
  824. OutputVariantName3=
  825. OutputDefault3=0
  826. PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  827. OutputType4=Text Print
  828. OutputName4=Text Print
  829. OutputDocumentPath4=
  830. OutputVariantName4=
  831. OutputDefault4=0
  832. PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  833. OutputType5=Text Print
  834. OutputName5=Text Print
  835. OutputDocumentPath5=
  836. OutputVariantName5=
  837. OutputDefault5=0
  838. PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  839. OutputType6=Text Print
  840. OutputName6=Text Print
  841. OutputDocumentPath6=
  842. OutputVariantName6=
  843. OutputDefault6=0
  844. PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  845. OutputType7=Text Print
  846. OutputName7=Text Print
  847. OutputDocumentPath7=
  848. OutputVariantName7=
  849. OutputDefault7=0
  850. PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  851. OutputType8=Text Print
  852. OutputName8=Text Print
  853. OutputDocumentPath8=
  854. OutputVariantName8=
  855. OutputDefault8=0
  856. PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  857. OutputType9=Text Print
  858. OutputName9=Text Print
  859. OutputDocumentPath9=
  860. OutputVariantName9=
  861. OutputDefault9=0
  862. PageOptions9=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  863. OutputType10=Text Print
  864. OutputName10=Text Print
  865. OutputDocumentPath10=
  866. OutputVariantName10=
  867. OutputDefault10=0
  868. PageOptions10=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  869. OutputType11=Text Print
  870. OutputName11=Text Print
  871. OutputDocumentPath11=
  872. OutputVariantName11=
  873. OutputDefault11=0
  874. PageOptions11=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  875. OutputType12=Text Print
  876. OutputName12=Text Print
  877. OutputDocumentPath12=
  878. OutputVariantName12=
  879. OutputDefault12=0
  880. PageOptions12=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  881. OutputType13=Text Print
  882. OutputName13=Text Print
  883. OutputDocumentPath13=
  884. OutputVariantName13=
  885. OutputDefault13=0
  886. PageOptions13=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  887. OutputType14=Text Print
  888. OutputName14=Text Print
  889. OutputDocumentPath14=
  890. OutputVariantName14=
  891. OutputDefault14=0
  892. PageOptions14=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  893. OutputType15=Text Print
  894. OutputName15=Text Print
  895. OutputDocumentPath15=
  896. OutputVariantName15=
  897. OutputDefault15=0
  898. PageOptions15=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  899. OutputType16=Text Print
  900. OutputName16=Text Print
  901. OutputDocumentPath16=
  902. OutputVariantName16=
  903. OutputDefault16=0
  904. PageOptions16=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  905. OutputType17=Text Print
  906. OutputName17=Text Print
  907. OutputDocumentPath17=
  908. OutputVariantName17=
  909. OutputDefault17=0
  910. PageOptions17=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  911. [OutputGroup8]
  912. Name=Validation Outputs
  913. Description=
  914. TargetPrinter=Microsoft Print to PDF
  915. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  916. OutputType1=BOM_Violations
  917. OutputName1=BOM Checks Report
  918. OutputDocumentPath1=
  919. OutputVariantName1=
  920. OutputDefault1=0
  921. OutputType2=Component states check
  922. OutputName2=Server's components states check
  923. OutputDocumentPath2=
  924. OutputVariantName2=
  925. OutputDefault2=0
  926. OutputType3=Configuration compliance
  927. OutputName3=Environment configuration compliance check
  928. OutputDocumentPath3=
  929. OutputVariantName3=
  930. OutputDefault3=0
  931. OutputType4=Design Rules Check
  932. OutputName4=Design Rules Check
  933. OutputDocumentPath4=
  934. OutputVariantName4=
  935. OutputDefault4=0
  936. PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  937. OutputType5=Differences Report
  938. OutputName5=Differences Report
  939. OutputDocumentPath5=
  940. OutputVariantName5=
  941. OutputDefault5=0
  942. PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  943. OutputType6=Electrical Rules Check
  944. OutputName6=Electrical Rules Check
  945. OutputDocumentPath6=
  946. OutputVariantName6=
  947. OutputDefault6=0
  948. PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  949. OutputType7=Footprint Comparison Report
  950. OutputName7=Footprint Comparison Report
  951. OutputDocumentPath7=
  952. OutputVariantName7=
  953. OutputDefault7=0
  954. [OutputGroup9]
  955. Name=Export Outputs
  956. Description=
  957. TargetPrinter=Microsoft Print to PDF
  958. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  959. OutputType1=AutoCAD dwg/dxf PCB
  960. OutputName1=AutoCAD dwg/dxf File PCB
  961. OutputDocumentPath1=
  962. OutputVariantName1=
  963. OutputDefault1=0
  964. OutputType2=AutoCAD dwg/dxf Schematic
  965. OutputName2=AutoCAD dwg/dxf File Schematic
  966. OutputDocumentPath2=
  967. OutputVariantName2=
  968. OutputDefault2=0
  969. OutputType3=ExportIDF
  970. OutputName3=Export IDF
  971. OutputDocumentPath3=
  972. OutputVariantName3=
  973. OutputDefault3=0
  974. OutputType4=ExportPARASOLID
  975. OutputName4=Export PARASOLID
  976. OutputDocumentPath4=
  977. OutputVariantName4=[No Variations]
  978. OutputDefault4=0
  979. OutputType5=ExportSTEP
  980. OutputName5=Export STEP
  981. OutputDocumentPath5=
  982. OutputVariantName5=[No Variations]
  983. OutputDefault5=0
  984. OutputType6=ExportVRML
  985. OutputName6=Export VRML
  986. OutputDocumentPath6=
  987. OutputVariantName6=[No Variations]
  988. OutputDefault6=0
  989. OutputType7=MBAExportPARASOLID
  990. OutputName7=Export PARASOLID
  991. OutputDocumentPath7=
  992. OutputVariantName7=
  993. OutputDefault7=0
  994. OutputType8=MBAExportSTEP
  995. OutputName8=Export STEP
  996. OutputDocumentPath8=
  997. OutputVariantName8=
  998. OutputDefault8=0
  999. OutputType9=Save As/Export PCB
  1000. OutputName9=Save As/Export PCB
  1001. OutputDocumentPath9=
  1002. OutputVariantName9=
  1003. OutputDefault9=0
  1004. OutputType10=Save As/Export Schematic
  1005. OutputName10=Save As/Export Schematic
  1006. OutputDocumentPath10=
  1007. OutputVariantName10=
  1008. OutputDefault10=0
  1009. OutputType11=Specctra Design PCB
  1010. OutputName11=Specctra Design PCB
  1011. OutputDocumentPath11=
  1012. OutputVariantName11=
  1013. OutputDefault11=0
  1014. [OutputGroup10]
  1015. Name=PostProcess Outputs
  1016. Description=
  1017. TargetPrinter=Microsoft Print to PDF
  1018. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  1019. OutputType1=Copy Files
  1020. OutputName1=Copy Files
  1021. OutputDocumentPath1=
  1022. OutputVariantName1=
  1023. OutputDefault1=0
  1024. [Modification Levels]
  1025. Type1=1
  1026. Type2=1
  1027. Type3=1
  1028. Type4=1
  1029. Type5=1
  1030. Type6=1
  1031. Type7=1
  1032. Type8=1
  1033. Type9=1
  1034. Type10=1
  1035. Type11=1
  1036. Type12=1
  1037. Type13=1
  1038. Type14=1
  1039. Type15=1
  1040. Type16=1
  1041. Type17=1
  1042. Type18=1
  1043. Type19=1
  1044. Type20=1
  1045. Type21=1
  1046. Type22=1
  1047. Type23=1
  1048. Type24=1
  1049. Type25=1
  1050. Type26=1
  1051. Type27=1
  1052. Type28=1
  1053. Type29=1
  1054. Type30=1
  1055. Type31=1
  1056. Type32=1
  1057. Type33=1
  1058. Type34=1
  1059. Type35=1
  1060. Type36=1
  1061. Type37=1
  1062. Type38=1
  1063. Type39=1
  1064. Type40=1
  1065. Type41=1
  1066. Type42=1
  1067. Type43=1
  1068. Type44=1
  1069. Type45=1
  1070. Type46=1
  1071. Type47=1
  1072. Type48=1
  1073. Type49=1
  1074. Type50=1
  1075. Type51=1
  1076. Type52=1
  1077. Type53=1
  1078. Type54=1
  1079. Type55=1
  1080. Type56=1
  1081. Type57=1
  1082. Type58=1
  1083. Type59=1
  1084. Type60=1
  1085. Type61=1
  1086. Type62=1
  1087. Type63=1
  1088. Type64=1
  1089. Type65=1
  1090. Type66=1
  1091. Type67=1
  1092. Type68=1
  1093. Type69=1
  1094. Type70=1
  1095. Type71=1
  1096. Type72=1
  1097. Type73=1
  1098. Type74=1
  1099. Type75=1
  1100. Type76=1
  1101. Type77=1
  1102. Type78=1
  1103. Type79=1
  1104. Type80=1
  1105. Type81=1
  1106. Type82=1
  1107. Type83=1
  1108. Type84=1
  1109. Type85=1
  1110. Type86=1
  1111. Type87=1
  1112. Type88=1
  1113. Type89=1
  1114. Type90=1
  1115. Type91=1
  1116. Type92=1
  1117. Type93=1
  1118. Type94=1
  1119. Type95=1
  1120. Type96=1
  1121. Type97=1
  1122. Type98=1
  1123. Type99=1
  1124. Type100=1
  1125. Type101=1
  1126. Type102=1
  1127. Type103=1
  1128. Type104=1
  1129. Type105=1
  1130. Type106=1
  1131. Type107=1
  1132. Type108=1
  1133. Type109=1
  1134. Type110=1
  1135. Type111=1
  1136. Type112=1
  1137. Type113=1
  1138. Type114=1
  1139. Type115=1
  1140. Type116=1
  1141. Type117=1
  1142. Type118=1
  1143. Type119=1
  1144. [Difference Levels]
  1145. Type1=1
  1146. Type2=1
  1147. Type3=1
  1148. Type4=1
  1149. Type5=1
  1150. Type6=1
  1151. Type7=1
  1152. Type8=1
  1153. Type9=1
  1154. Type10=1
  1155. Type11=1
  1156. Type12=1
  1157. Type13=1
  1158. Type14=1
  1159. Type15=1
  1160. Type16=1
  1161. Type17=1
  1162. Type18=1
  1163. Type19=1
  1164. Type20=1
  1165. Type21=1
  1166. Type22=1
  1167. Type23=1
  1168. Type24=1
  1169. Type25=1
  1170. Type26=1
  1171. Type27=1
  1172. Type28=1
  1173. Type29=1
  1174. Type30=1
  1175. Type31=1
  1176. Type32=1
  1177. Type33=1
  1178. Type34=1
  1179. Type35=1
  1180. Type36=1
  1181. Type37=1
  1182. Type38=1
  1183. Type39=1
  1184. Type40=1
  1185. Type41=1
  1186. Type42=1
  1187. Type43=1
  1188. Type44=1
  1189. Type45=1
  1190. Type46=1
  1191. Type47=1
  1192. Type48=1
  1193. Type49=1
  1194. Type50=1
  1195. Type51=1
  1196. Type52=1
  1197. Type53=1
  1198. Type54=1
  1199. Type55=1
  1200. Type56=1
  1201. Type57=1
  1202. Type58=1
  1203. Type59=1
  1204. Type60=1
  1205. Type61=1
  1206. Type62=1
  1207. Type63=1
  1208. Type64=1
  1209. Type65=1
  1210. Type66=1
  1211. Type67=1
  1212. Type68=1
  1213. [Electrical Rules Check]
  1214. Type1=1
  1215. Type2=1
  1216. Type3=2
  1217. Type4=1
  1218. Type5=2
  1219. Type6=2
  1220. Type7=0
  1221. Type8=1
  1222. Type9=1
  1223. Type10=1
  1224. Type11=2
  1225. Type12=0
  1226. Type13=0
  1227. Type14=1
  1228. Type15=1
  1229. Type16=1
  1230. Type17=1
  1231. Type18=1
  1232. Type19=1
  1233. Type20=0
  1234. Type21=0
  1235. Type22=0
  1236. Type23=0
  1237. Type24=1
  1238. Type25=2
  1239. Type26=0
  1240. Type27=2
  1241. Type28=1
  1242. Type29=1
  1243. Type30=1
  1244. Type31=1
  1245. Type32=2
  1246. Type33=0
  1247. Type34=2
  1248. Type35=1
  1249. Type36=2
  1250. Type37=1
  1251. Type38=2
  1252. Type39=2
  1253. Type40=2
  1254. Type41=0
  1255. Type42=2
  1256. Type43=1
  1257. Type44=0
  1258. Type45=0
  1259. Type46=0
  1260. Type47=0
  1261. Type48=0
  1262. Type49=0
  1263. Type50=2
  1264. Type51=0
  1265. Type52=0
  1266. Type53=1
  1267. Type54=1
  1268. Type55=1
  1269. Type56=2
  1270. Type57=1
  1271. Type58=1
  1272. Type59=2
  1273. Type60=0
  1274. Type61=0
  1275. Type62=0
  1276. Type63=0
  1277. Type64=0
  1278. Type65=2
  1279. Type66=3
  1280. Type67=2
  1281. Type68=2
  1282. Type69=0
  1283. Type70=2
  1284. Type71=2
  1285. Type72=2
  1286. Type73=2
  1287. Type74=1
  1288. Type75=2
  1289. Type76=1
  1290. Type77=1
  1291. Type78=1
  1292. Type79=1
  1293. Type80=2
  1294. Type81=3
  1295. Type82=3
  1296. Type83=3
  1297. Type84=3
  1298. Type85=3
  1299. Type86=2
  1300. Type87=2
  1301. Type88=2
  1302. Type89=1
  1303. Type90=1
  1304. Type91=3
  1305. Type92=3
  1306. Type93=2
  1307. Type94=2
  1308. Type95=2
  1309. Type96=2
  1310. Type97=2
  1311. Type98=0
  1312. Type99=1
  1313. Type100=2
  1314. Type101=0
  1315. Type102=2
  1316. Type103=2
  1317. Type104=1
  1318. Type105=2
  1319. Type106=2
  1320. Type107=2
  1321. Type108=2
  1322. Type109=1
  1323. Type110=1
  1324. Type111=1
  1325. Type112=1
  1326. Type113=1
  1327. Type114=2
  1328. Type115=2
  1329. Type116=2
  1330. Type117=3
  1331. Type118=3
  1332. Type119=3
  1333. MultiChannelAlternate=2
  1334. AlternateItemFail=3
  1335. Type122=2
  1336. Type123=1
  1337. Type124=1
  1338. Type125=1
  1339. [ERC Connection Matrix]
  1340. L1=NNNNNNNNNNNWNNNWW
  1341. L2=NNWNNNNWWWNWNWNWN
  1342. L3=NWEENEEEENEWNEEWN
  1343. L4=NNENNNWEENNWNENWN
  1344. L5=NNNNNNNNNNNNNNNNN
  1345. L6=NNENNNNEENNWNENWN
  1346. L7=NNEWNNWEENNWNENWN
  1347. L8=NWEENEENEEENNEENN
  1348. L9=NWEENEEEENEWNEEWW
  1349. L10=NWNNNNNENNEWNNEWN
  1350. L11=NNENNNNEEENWNENWN
  1351. L12=WWWWNWWNWWWNWWWNN
  1352. L13=NNNNNNNNNNNWNNNWW
  1353. L14=NWEENEEEENEWNEEWW
  1354. L15=NNENNNNEEENWNENWW
  1355. L16=WWWWNWWNWWWNWWWNW
  1356. L17=WNNNNNNNWNNNWWWWN
  1357. [Annotate]
  1358. SortOrder=3
  1359. SortLocation=0
  1360. ReplaceSubparts=0
  1361. MatchParameter1=Comment
  1362. MatchStrictly1=1
  1363. MatchParameter2=Library Reference
  1364. MatchStrictly2=1
  1365. PhysicalNamingFormat=$Component_$RoomName
  1366. GlobalIndexSortOrder=3
  1367. GlobalIndexSortLocation=0
  1368. [PrjClassGen]
  1369. CompClassManualEnabled=0
  1370. CompClassManualRoomEnabled=0
  1371. NetClassAutoBusEnabled=1
  1372. NetClassAutoCompEnabled=0
  1373. NetClassAutoNamedHarnessEnabled=0
  1374. NetClassManualEnabled=1
  1375. NetClassSeparateForBusSections=0
  1376. [LibraryUpdateOptions]
  1377. SelectedOnly=1
  1378. UpdateVariants=1
  1379. UpdateToLatestRevision=1
  1380. PartTypes=0
  1381. ComponentLibIdentifierKind0=Library Name And Type
  1382. ComponentLibraryIdentifier0=MKP_lib.DbLib/Components
  1383. ComponentDesignItemID0=B72590D50H160
  1384. ComponentSymbolReference0=B72590D50H160
  1385. ComponentUpdate0=1
  1386. ComponentIsDeviceSheet0=0
  1387. FullReplace=1
  1388. UpdateDesignatorLock=1
  1389. UpdatePartIDLock=1
  1390. PreserveParameterLocations=1
  1391. PreserveParameterVisibility=1
  1392. DoGraphics=1
  1393. DoParameters=1
  1394. DoModels=1
  1395. AddParameters=0
  1396. RemoveParameters=0
  1397. AddModels=1
  1398. RemoveModels=1
  1399. UpdateCurrentModels=1
  1400. ParameterName0=Category
  1401. ParameterUpdate0=1
  1402. ParameterName1=Comment
  1403. ParameterUpdate1=1
  1404. ParameterName2=Component Kind
  1405. ParameterUpdate2=1
  1406. ParameterName3=Description
  1407. ParameterUpdate3=1
  1408. ParameterName4=Detailed Value
  1409. ParameterUpdate4=1
  1410. ParameterName5=Library Reference
  1411. ParameterUpdate5=1
  1412. ParameterName6=Manufacture
  1413. ParameterUpdate6=1
  1414. ParameterName7=Mounting type
  1415. ParameterUpdate7=1
  1416. ParameterName8=Partnumber
  1417. ParameterUpdate8=1
  1418. ParameterName9=Supplier
  1419. ParameterUpdate9=1
  1420. ParameterName10=Value
  1421. ParameterUpdate10=1
  1422. ModelTypeGroup0=PCBLIB
  1423. ModelTypeUpdate0=1
  1424. ModelType0=PCBLIB
  1425. ModelName0=D0402
  1426. ModelUpdate0=1
  1427. ModelType1=PCBLIB
  1428. ModelName1=R0402
  1429. ModelUpdate1=1
  1430. [DatabaseUpdateOptions]
  1431. SelectedOnly=0
  1432. UpdateVariants=1
  1433. UpdateToLatestRevision=1
  1434. PartTypes=0
  1435. ComponentLibIdentifierKind0=Library Name And Type
  1436. ComponentLibraryIdentifier0=MKP_lib.DbLib/Components
  1437. ComponentDesignItemID0=0805CG330J500NT
  1438. ComponentSymbolReference0=CAP
  1439. ComponentUpdate0=1
  1440. ComponentIsDeviceSheet0=0
  1441. ComponentLibIdentifierKind1=Library Name And Type
  1442. ComponentLibraryIdentifier1=MKP_lib.DbLib/Components
  1443. ComponentDesignItemID1=150060YS75000
  1444. ComponentSymbolReference1=LED
  1445. ComponentUpdate1=1
  1446. ComponentIsDeviceSheet1=0
  1447. ComponentLibIdentifierKind2=Library Name And Type
  1448. ComponentLibraryIdentifier2=MKP_lib.DbLib/Components
  1449. ComponentDesignItemID2=2.54-2*8P
  1450. ComponentSymbolReference2=CON-8X2PIN
  1451. ComponentUpdate2=1
  1452. ComponentIsDeviceSheet2=0
  1453. ComponentLibIdentifierKind3=Library Name And Type
  1454. ComponentLibraryIdentifier3=MKP_lib.DbLib/Components
  1455. ComponentDesignItemID3=3.0-2*2A
  1456. ComponentSymbolReference3=CON-2X2PIN
  1457. ComponentUpdate3=1
  1458. ComponentIsDeviceSheet3=0
  1459. ComponentLibIdentifierKind4=Library Name And Type
  1460. ComponentLibraryIdentifier4=MKP_lib.DbLib/Components
  1461. ComponentDesignItemID4=3N27000G33YC
  1462. ComponentSymbolReference4=OSCILLATOR
  1463. ComponentUpdate4=1
  1464. ComponentIsDeviceSheet4=0
  1465. ComponentLibIdentifierKind5=Library Name And Type
  1466. ComponentLibraryIdentifier5=MKP_lib.DbLib/Components
  1467. ComponentDesignItemID5=A2541WV-4P
  1468. ComponentSymbolReference5=CON-4PIN
  1469. ComponentUpdate5=1
  1470. ComponentIsDeviceSheet5=0
  1471. ComponentLibIdentifierKind6=Library Name And Type
  1472. ComponentLibraryIdentifier6=MKP_lib.DbLib/Components
  1473. ComponentDesignItemID6=ABS07-32.768KHZ-T
  1474. ComponentSymbolReference6=XTL-2PIN
  1475. ComponentUpdate6=1
  1476. ComponentIsDeviceSheet6=0
  1477. ComponentLibIdentifierKind7=Library Name And Type
  1478. ComponentLibraryIdentifier7=MKP_lib.DbLib/Components
  1479. ComponentDesignItemID7=AC0402FR-07590KL
  1480. ComponentSymbolReference7=RES
  1481. ComponentUpdate7=1
  1482. ComponentIsDeviceSheet7=0
  1483. ComponentLibIdentifierKind8=Library Name And Type
  1484. ComponentLibraryIdentifier8=MKP_lib.DbLib/Components
  1485. ComponentDesignItemID8=AFC07-S20FCC-00
  1486. ComponentSymbolReference8=FFC-20P
  1487. ComponentUpdate8=1
  1488. ComponentIsDeviceSheet8=0
  1489. ComponentLibIdentifierKind9=Library Name And Type
  1490. ComponentLibraryIdentifier9=MKP_lib.DbLib/Components
  1491. ComponentDesignItemID9=APCI0146-P001A
  1492. ComponentSymbolReference9=APCI0146-P001A
  1493. ComponentUpdate9=1
  1494. ComponentIsDeviceSheet9=0
  1495. ComponentLibIdentifierKind10=Library Name And Type
  1496. ComponentLibraryIdentifier10=MKP_lib.DbLib/Components
  1497. ComponentDesignItemID10=APX823-26W5G-7
  1498. ComponentSymbolReference10=APX823-26W5G-7
  1499. ComponentUpdate10=1
  1500. ComponentIsDeviceSheet10=0
  1501. ComponentLibIdentifierKind11=Library Name And Type
  1502. ComponentLibraryIdentifier11=MKP_lib.DbLib/Components
  1503. ComponentDesignItemID11=AZ6118-01F
  1504. ComponentSymbolReference11=TVS
  1505. ComponentUpdate11=1
  1506. ComponentIsDeviceSheet11=0
  1507. ComponentLibIdentifierKind12=Library Name And Type
  1508. ComponentLibraryIdentifier12=MKP_lib.DbLib/Components
  1509. ComponentDesignItemID12=B72590D50H160
  1510. ComponentSymbolReference12=B72590D50H160
  1511. ComponentUpdate12=1
  1512. ComponentIsDeviceSheet12=0
  1513. ComponentLibIdentifierKind13=Library Name And Type
  1514. ComponentLibraryIdentifier13=MKP_lib.DbLib/Components
  1515. ComponentDesignItemID13=BLM18KG221SN1D
  1516. ComponentSymbolReference13=FB
  1517. ComponentUpdate13=1
  1518. ComponentIsDeviceSheet13=0
  1519. ComponentLibIdentifierKind14=Library Name And Type
  1520. ComponentLibraryIdentifier14=MKP_lib.DbLib/Components
  1521. ComponentDesignItemID14=BLM31KN121SN1L
  1522. ComponentSymbolReference14=FB
  1523. ComponentUpdate14=1
  1524. ComponentIsDeviceSheet14=0
  1525. ComponentLibIdentifierKind15=Library Name And Type
  1526. ComponentLibraryIdentifier15=MKP_lib.DbLib/Components
  1527. ComponentDesignItemID15=C0603X5R105K500NT
  1528. ComponentSymbolReference15=CAP
  1529. ComponentUpdate15=1
  1530. ComponentIsDeviceSheet15=0
  1531. ComponentLibIdentifierKind16=Library Name And Type
  1532. ComponentLibraryIdentifier16=MKP_lib.DbLib/Components
  1533. ComponentDesignItemID16=C0603X5R475K350NT
  1534. ComponentSymbolReference16=C0603X5R475K350NT
  1535. ComponentUpdate16=1
  1536. ComponentIsDeviceSheet16=0
  1537. ComponentLibIdentifierKind17=Library Name And Type
  1538. ComponentLibraryIdentifier17=MKP_lib.DbLib/Components
  1539. ComponentDesignItemID17=C0805X5R106K160NT
  1540. ComponentSymbolReference17=CAP
  1541. ComponentUpdate17=1
  1542. ComponentIsDeviceSheet17=0
  1543. ComponentLibIdentifierKind18=Library Name And Type
  1544. ComponentLibraryIdentifier18=MKP_lib.DbLib/Components
  1545. ComponentDesignItemID18=CC0402FRNPO9BN101
  1546. ComponentSymbolReference18=CAP
  1547. ComponentUpdate18=1
  1548. ComponentIsDeviceSheet18=0
  1549. ComponentLibIdentifierKind19=Library Name And Type
  1550. ComponentLibraryIdentifier19=MKP_lib.DbLib/Components
  1551. ComponentDesignItemID19=CC0402FRNPO9BN120
  1552. ComponentSymbolReference19=CAP
  1553. ComponentUpdate19=1
  1554. ComponentIsDeviceSheet19=0
  1555. ComponentLibIdentifierKind20=Library Name And Type
  1556. ComponentLibraryIdentifier20=MKP_lib.DbLib/Components
  1557. ComponentDesignItemID20=CC0402KRX7R7BB104
  1558. ComponentSymbolReference20=CAP
  1559. ComponentUpdate20=1
  1560. ComponentIsDeviceSheet20=0
  1561. ComponentLibIdentifierKind21=Library Name And Type
  1562. ComponentLibraryIdentifier21=MKP_lib.DbLib/Components
  1563. ComponentDesignItemID21=CC0402KRX7R9BB103
  1564. ComponentSymbolReference21=CAP
  1565. ComponentUpdate21=1
  1566. ComponentIsDeviceSheet21=0
  1567. ComponentLibIdentifierKind22=Library Name And Type
  1568. ComponentLibraryIdentifier22=MKP_lib.DbLib/Components
  1569. ComponentDesignItemID22=CC0402KRX7R9BB104
  1570. ComponentSymbolReference22=CAP
  1571. ComponentUpdate22=1
  1572. ComponentIsDeviceSheet22=0
  1573. ComponentLibIdentifierKind23=Library Name And Type
  1574. ComponentLibraryIdentifier23=MKP_lib.DbLib/Components
  1575. ComponentDesignItemID23=CC0603JRNPO9BN750
  1576. ComponentSymbolReference23=CAP
  1577. ComponentUpdate23=1
  1578. ComponentIsDeviceSheet23=0
  1579. ComponentLibIdentifierKind24=Library Name And Type
  1580. ComponentLibraryIdentifier24=MKP_lib.DbLib/Components
  1581. ComponentDesignItemID24=CC0603KRX7R9BB104
  1582. ComponentSymbolReference24=CAP
  1583. ComponentUpdate24=1
  1584. ComponentIsDeviceSheet24=0
  1585. ComponentLibIdentifierKind25=Library Name And Type
  1586. ComponentLibraryIdentifier25=MKP_lib.DbLib/Components
  1587. ComponentDesignItemID25=CC0603KRX7R9BB474
  1588. ComponentSymbolReference25=CAP
  1589. ComponentUpdate25=1
  1590. ComponentIsDeviceSheet25=0
  1591. ComponentLibIdentifierKind26=Library Name And Type
  1592. ComponentLibraryIdentifier26=MKP_lib.DbLib/Components
  1593. ComponentDesignItemID26=CC0603KRX7R9BB561
  1594. ComponentSymbolReference26=CAP
  1595. ComponentUpdate26=1
  1596. ComponentIsDeviceSheet26=0
  1597. ComponentLibIdentifierKind27=Library Name And Type
  1598. ComponentLibraryIdentifier27=MKP_lib.DbLib/Components
  1599. ComponentDesignItemID27=CC0603KRX7R9BB563
  1600. ComponentSymbolReference27=CAP
  1601. ComponentUpdate27=1
  1602. ComponentIsDeviceSheet27=0
  1603. ComponentLibIdentifierKind28=Library Name And Type
  1604. ComponentLibraryIdentifier28=MKP_lib.DbLib/Components
  1605. ComponentDesignItemID28=CC1206KKX7R0BB104
  1606. ComponentSymbolReference28=CAP
  1607. ComponentUpdate28=1
  1608. ComponentIsDeviceSheet28=0
  1609. ComponentLibIdentifierKind29=Library Name And Type
  1610. ComponentLibraryIdentifier29=MKP_lib.DbLib/Components
  1611. ComponentDesignItemID29=CCTC TCC1206X7R225K101HT
  1612. ComponentSymbolReference29=CAP
  1613. ComponentUpdate29=1
  1614. ComponentIsDeviceSheet29=0
  1615. ComponentLibIdentifierKind30=Library Name And Type
  1616. ComponentLibraryIdentifier30=MKP_lib.DbLib/Components
  1617. ComponentDesignItemID30=CL05A105KO5NNNC
  1618. ComponentSymbolReference30=CAP
  1619. ComponentUpdate30=1
  1620. ComponentIsDeviceSheet30=0
  1621. ComponentLibIdentifierKind31=Library Name And Type
  1622. ComponentLibraryIdentifier31=MKP_lib.DbLib/Components
  1623. ComponentDesignItemID31=CL05C330JB5NNNC
  1624. ComponentSymbolReference31=CAP
  1625. ComponentUpdate31=1
  1626. ComponentIsDeviceSheet31=0
  1627. ComponentLibIdentifierKind32=Library Name And Type
  1628. ComponentLibraryIdentifier32=MKP_lib.DbLib/Components
  1629. ComponentDesignItemID32=CL10A226MO7JZNC
  1630. ComponentSymbolReference32=CL10A226MO7JZNC
  1631. ComponentUpdate32=1
  1632. ComponentIsDeviceSheet32=0
  1633. ComponentLibIdentifierKind33=Library Name And Type
  1634. ComponentLibraryIdentifier33=MKP_lib.DbLib/Components
  1635. ComponentDesignItemID33=CL10A226MQ8NRNE
  1636. ComponentSymbolReference33=CAP
  1637. ComponentUpdate33=1
  1638. ComponentIsDeviceSheet33=0
  1639. ComponentLibIdentifierKind34=Library Name And Type
  1640. ComponentLibraryIdentifier34=MKP_lib.DbLib/Components
  1641. ComponentDesignItemID34=CL10A476MQ8QRNC
  1642. ComponentSymbolReference34=CAP
  1643. ComponentUpdate34=1
  1644. ComponentIsDeviceSheet34=0
  1645. ComponentLibIdentifierKind35=Library Name And Type
  1646. ComponentLibraryIdentifier35=MKP_lib.DbLib/Components
  1647. ComponentDesignItemID35=D-DMR009PM-D002
  1648. ComponentSymbolReference35=D-DMR009PM-D002
  1649. ComponentUpdate35=1
  1650. ComponentIsDeviceSheet35=0
  1651. ComponentLibIdentifierKind36=Library Name And Type
  1652. ComponentLibraryIdentifier36=MKP_lib.DbLib/Components
  1653. ComponentDesignItemID36=DLM0NSN900HY2D
  1654. ComponentSymbolReference36=Common Mode Filters
  1655. ComponentUpdate36=1
  1656. ComponentIsDeviceSheet36=0
  1657. ComponentLibIdentifierKind37=Library Name And Type
  1658. ComponentLibraryIdentifier37=MKP_lib.DbLib/Components
  1659. ComponentDesignItemID37=DRQ125-220-R
  1660. ComponentSymbolReference37=DRQ125
  1661. ComponentUpdate37=1
  1662. ComponentIsDeviceSheet37=0
  1663. ComponentLibIdentifierKind38=Library Name And Type
  1664. ComponentLibraryIdentifier38=MKP_lib.DbLib/Components
  1665. ComponentDesignItemID38=EC25EUGA-512-SGNS
  1666. ComponentSymbolReference38=EC25EUGA-512-SGNS
  1667. ComponentUpdate38=1
  1668. ComponentIsDeviceSheet38=0
  1669. ComponentLibIdentifierKind39=Library Name And Type
  1670. ComponentLibraryIdentifier39=MKP_lib.DbLib/Components
  1671. ComponentDesignItemID39=EL3H7(B)(TA)-VG
  1672. ComponentSymbolReference39=PS2801
  1673. ComponentUpdate39=1
  1674. ComponentIsDeviceSheet39=0
  1675. ComponentLibIdentifierKind40=Library Name And Type
  1676. ComponentLibraryIdentifier40=MKP_lib.DbLib/Components
  1677. ComponentDesignItemID40=EMK316BBJ476ML-T
  1678. ComponentSymbolReference40=CAP
  1679. ComponentUpdate40=1
  1680. ComponentIsDeviceSheet40=0
  1681. ComponentLibIdentifierKind41=Library Name And Type
  1682. ComponentLibraryIdentifier41=MKP_lib.DbLib/Components
  1683. ComponentDesignItemID41=ESD5Z5V0
  1684. ComponentSymbolReference41=TVS
  1685. ComponentUpdate41=1
  1686. ComponentIsDeviceSheet41=0
  1687. ComponentLibIdentifierKind42=Library Name And Type
  1688. ComponentLibraryIdentifier42=MKP_lib.DbLib/Components
  1689. ComponentDesignItemID42=EWK1HM101F11OT
  1690. ComponentSymbolReference42=CAPP
  1691. ComponentUpdate42=1
  1692. ComponentIsDeviceSheet42=0
  1693. ComponentLibIdentifierKind43=Library Name And Type
  1694. ComponentLibraryIdentifier43=MKP_lib.DbLib/Components
  1695. ComponentDesignItemID43=FN21N100J500PAG
  1696. ComponentSymbolReference43=CAP
  1697. ComponentUpdate43=1
  1698. ComponentIsDeviceSheet43=0
  1699. ComponentLibIdentifierKind44=Library Name And Type
  1700. ComponentLibraryIdentifier44=MKP_lib.DbLib/Components
  1701. ComponentDesignItemID44=GT-F0502SR20-24SMT01
  1702. ComponentSymbolReference44=CON-24PIN
  1703. ComponentUpdate44=1
  1704. ComponentIsDeviceSheet44=0
  1705. ComponentLibIdentifierKind45=Library Name And Type
  1706. ComponentLibraryIdentifier45=MKP_lib.DbLib/Components
  1707. ComponentDesignItemID45=HNB09A05
  1708. ComponentSymbolReference45=BUZZER
  1709. ComponentUpdate45=1
  1710. ComponentIsDeviceSheet45=0
  1711. ComponentLibIdentifierKind46=Library Name And Type
  1712. ComponentLibraryIdentifier46=MKP_lib.DbLib/Components
  1713. ComponentDesignItemID46=HT66F0021
  1714. ComponentSymbolReference46=HT66F0021
  1715. ComponentUpdate46=1
  1716. ComponentIsDeviceSheet46=0
  1717. ComponentLibIdentifierKind47=Library Name And Type
  1718. ComponentLibraryIdentifier47=MKP_lib.DbLib/Components
  1719. ComponentDesignItemID47=KH-IPEX-K501-29
  1720. ComponentSymbolReference47=KH-IPEX-K501-29
  1721. ComponentUpdate47=1
  1722. ComponentIsDeviceSheet47=0
  1723. ComponentLibIdentifierKind48=Library Name And Type
  1724. ComponentLibraryIdentifier48=MKP_lib.DbLib/Components
  1725. ComponentDesignItemID48=LBAT54CLT1G
  1726. ComponentSymbolReference48=DIODE-3
  1727. ComponentUpdate48=1
  1728. ComponentIsDeviceSheet48=0
  1729. ComponentLibIdentifierKind49=Library Name And Type
  1730. ComponentLibraryIdentifier49=MKP_lib.DbLib/Components
  1731. ComponentDesignItemID49=LBSS139LT1G
  1732. ComponentSymbolReference49=N-Channel
  1733. ComponentUpdate49=1
  1734. ComponentIsDeviceSheet49=0
  1735. ComponentLibIdentifierKind50=Library Name And Type
  1736. ComponentLibraryIdentifier50=MKP_lib.DbLib/Components
  1737. ComponentDesignItemID50=LK8563T
  1738. ComponentSymbolReference50=LK8563T
  1739. ComponentUpdate50=1
  1740. ComponentIsDeviceSheet50=0
  1741. ComponentLibIdentifierKind51=Library Name And Type
  1742. ComponentLibraryIdentifier51=MKP_lib.DbLib/Components
  1743. ComponentDesignItemID51=LM3481MMX/NOPB
  1744. ComponentSymbolReference51=LM3481MMX/NOPB
  1745. ComponentUpdate51=1
  1746. ComponentIsDeviceSheet51=0
  1747. ComponentLibIdentifierKind52=Library Name And Type
  1748. ComponentLibraryIdentifier52=MKP_lib.DbLib/Components
  1749. ComponentDesignItemID52=LM393DR
  1750. ComponentSymbolReference52=LM358
  1751. ComponentUpdate52=1
  1752. ComponentIsDeviceSheet52=0
  1753. ComponentLibIdentifierKind53=Library Name And Type
  1754. ComponentLibraryIdentifier53=MKP_lib.DbLib/Components
  1755. ComponentDesignItemID53=LM-SE05NRE14GA
  1756. ComponentSymbolReference53=LM-SE05NRE14GA
  1757. ComponentUpdate53=1
  1758. ComponentIsDeviceSheet53=0
  1759. ComponentLibIdentifierKind54=Library Name And Type
  1760. ComponentLibraryIdentifier54=MKP_lib.DbLib/Components
  1761. ComponentDesignItemID54=LQG15HS56NJ02D
  1762. ComponentSymbolReference54=IND
  1763. ComponentUpdate54=1
  1764. ComponentIsDeviceSheet54=0
  1765. ComponentLibIdentifierKind55=Library Name And Type
  1766. ComponentLibraryIdentifier55=MKP_lib.DbLib/Components
  1767. ComponentDesignItemID55=LQM2HPN2R2MGHL
  1768. ComponentSymbolReference55=IND
  1769. ComponentUpdate55=1
  1770. ComponentIsDeviceSheet55=0
  1771. ComponentLibIdentifierKind56=Library Name And Type
  1772. ComponentLibraryIdentifier56=MKP_lib.DbLib/Components
  1773. ComponentDesignItemID56=M7
  1774. ComponentSymbolReference56=Diode
  1775. ComponentUpdate56=1
  1776. ComponentIsDeviceSheet56=0
  1777. ComponentLibIdentifierKind57=Library Name And Type
  1778. ComponentLibraryIdentifier57=MKP_lib.DbLib/Components
  1779. ComponentDesignItemID57=MAI4020S-2R2MT
  1780. ComponentSymbolReference57=IND
  1781. ComponentUpdate57=1
  1782. ComponentIsDeviceSheet57=0
  1783. ComponentLibIdentifierKind58=Library Name And Type
  1784. ComponentLibraryIdentifier58=MKP_lib.DbLib/Components
  1785. ComponentDesignItemID58=MAX3232CDR
  1786. ComponentSymbolReference58=Max3232
  1787. ComponentUpdate58=1
  1788. ComponentIsDeviceSheet58=0
  1789. ComponentLibIdentifierKind59=Library Name And Type
  1790. ComponentLibraryIdentifier59=MKP_lib.DbLib/Components
  1791. ComponentDesignItemID59=MF-NSMF110-2
  1792. ComponentSymbolReference59=Fuse
  1793. ComponentUpdate59=1
  1794. ComponentIsDeviceSheet59=0
  1795. ComponentLibIdentifierKind60=Library Name And Type
  1796. ComponentLibraryIdentifier60=MKP_lib.DbLib/Components
  1797. ComponentDesignItemID60=MMBT3904-TP
  1798. ComponentSymbolReference60=NPN
  1799. ComponentUpdate60=1
  1800. ComponentIsDeviceSheet60=0
  1801. ComponentLibIdentifierKind61=Library Name And Type
  1802. ComponentLibraryIdentifier61=MKP_lib.DbLib/Components
  1803. ComponentDesignItemID61=MMBTA05LT1G
  1804. ComponentSymbolReference61=NPN
  1805. ComponentUpdate61=1
  1806. ComponentIsDeviceSheet61=0
  1807. ComponentLibIdentifierKind62=Library Name And Type
  1808. ComponentLibraryIdentifier62=MKP_lib.DbLib/Components
  1809. ComponentDesignItemID62=MR01A-01211
  1810. ComponentSymbolReference62=MicroSDCard
  1811. ComponentUpdate62=1
  1812. ComponentIsDeviceSheet62=0
  1813. ComponentLibIdentifierKind63=Library Name And Type
  1814. ComponentLibraryIdentifier63=MKP_lib.DbLib/Components
  1815. ComponentDesignItemID63=N4
  1816. ComponentSymbolReference63=N4
  1817. ComponentUpdate63=1
  1818. ComponentIsDeviceSheet63=0
  1819. ComponentLibIdentifierKind64=Library Name And Type
  1820. ComponentLibraryIdentifier64=MKP_lib.DbLib/Components
  1821. ComponentDesignItemID64=NDP2435KC
  1822. ComponentSymbolReference64=NDP2435KC
  1823. ComponentUpdate64=1
  1824. ComponentIsDeviceSheet64=0
  1825. ComponentLibIdentifierKind65=Library Name And Type
  1826. ComponentLibraryIdentifier65=MKP_lib.DbLib/Components
  1827. ComponentDesignItemID65=PA4341.103ANLT
  1828. ComponentSymbolReference65=IND
  1829. ComponentUpdate65=1
  1830. ComponentIsDeviceSheet65=0
  1831. ComponentLibIdentifierKind66=Library Name And Type
  1832. ComponentLibraryIdentifier66=MKP_lib.DbLib/Components
  1833. ComponentDesignItemID66=PE1206DRF7W0R015L
  1834. ComponentSymbolReference66=RES
  1835. ComponentUpdate66=1
  1836. ComponentIsDeviceSheet66=0
  1837. ComponentLibIdentifierKind67=Library Name And Type
  1838. ComponentLibraryIdentifier67=MKP_lib.DbLib/Components
  1839. ComponentDesignItemID67=PTVS5V0S1UR,115
  1840. ComponentSymbolReference67=TVS
  1841. ComponentUpdate67=1
  1842. ComponentIsDeviceSheet67=0
  1843. ComponentLibIdentifierKind68=Library Name And Type
  1844. ComponentLibraryIdentifier68=MKP_lib.DbLib/Components
  1845. ComponentDesignItemID68=PZ254R-12-4P
  1846. ComponentSymbolReference68=CON-2X2PIN
  1847. ComponentUpdate68=1
  1848. ComponentIsDeviceSheet68=0
  1849. ComponentLibIdentifierKind69=Library Name And Type
  1850. ComponentLibraryIdentifier69=MKP_lib.DbLib/Components
  1851. ComponentDesignItemID69=RC0402FR-070RL
  1852. ComponentSymbolReference69=RES
  1853. ComponentUpdate69=1
  1854. ComponentIsDeviceSheet69=0
  1855. ComponentLibIdentifierKind70=Library Name And Type
  1856. ComponentLibraryIdentifier70=MKP_lib.DbLib/Components
  1857. ComponentDesignItemID70=RC0402FR-07100KL
  1858. ComponentSymbolReference70=RES
  1859. ComponentUpdate70=1
  1860. ComponentIsDeviceSheet70=0
  1861. ComponentLibIdentifierKind71=Library Name And Type
  1862. ComponentLibraryIdentifier71=MKP_lib.DbLib/Components
  1863. ComponentDesignItemID71=RC0402FR-07100RL
  1864. ComponentSymbolReference71=RES
  1865. ComponentUpdate71=1
  1866. ComponentIsDeviceSheet71=0
  1867. ComponentLibIdentifierKind72=Library Name And Type
  1868. ComponentLibraryIdentifier72=MKP_lib.DbLib/Components
  1869. ComponentDesignItemID72=RC0402FR-07105KL
  1870. ComponentSymbolReference72=RES
  1871. ComponentUpdate72=1
  1872. ComponentIsDeviceSheet72=0
  1873. ComponentLibIdentifierKind73=Library Name And Type
  1874. ComponentLibraryIdentifier73=MKP_lib.DbLib/Components
  1875. ComponentDesignItemID73=RC0402FR-0710KL
  1876. ComponentSymbolReference73=RES
  1877. ComponentUpdate73=1
  1878. ComponentIsDeviceSheet73=0
  1879. ComponentLibIdentifierKind74=Library Name And Type
  1880. ComponentLibraryIdentifier74=MKP_lib.DbLib/Components
  1881. ComponentDesignItemID74=RC0402FR-0710RL
  1882. ComponentSymbolReference74=RES
  1883. ComponentUpdate74=1
  1884. ComponentIsDeviceSheet74=0
  1885. ComponentLibIdentifierKind75=Library Name And Type
  1886. ComponentLibraryIdentifier75=MKP_lib.DbLib/Components
  1887. ComponentDesignItemID75=RC0402FR-0715KL
  1888. ComponentSymbolReference75=RES
  1889. ComponentUpdate75=1
  1890. ComponentIsDeviceSheet75=0
  1891. ComponentLibIdentifierKind76=Library Name And Type
  1892. ComponentLibraryIdentifier76=MKP_lib.DbLib/Components
  1893. ComponentDesignItemID76=RC0402FR-071K91L
  1894. ComponentSymbolReference76=RES
  1895. ComponentUpdate76=1
  1896. ComponentIsDeviceSheet76=0
  1897. ComponentLibIdentifierKind77=Library Name And Type
  1898. ComponentLibraryIdentifier77=MKP_lib.DbLib/Components
  1899. ComponentDesignItemID77=RC0402FR-071KL
  1900. ComponentSymbolReference77=RES
  1901. ComponentUpdate77=1
  1902. ComponentIsDeviceSheet77=0
  1903. ComponentLibIdentifierKind78=Library Name And Type
  1904. ComponentLibraryIdentifier78=MKP_lib.DbLib/Components
  1905. ComponentDesignItemID78=RC0402FR-0720KL
  1906. ComponentSymbolReference78=RES
  1907. ComponentUpdate78=1
  1908. ComponentIsDeviceSheet78=0
  1909. ComponentLibIdentifierKind79=Library Name And Type
  1910. ComponentLibraryIdentifier79=MKP_lib.DbLib/Components
  1911. ComponentDesignItemID79=RC0402FR-0721K5L
  1912. ComponentSymbolReference79=RES
  1913. ComponentUpdate79=1
  1914. ComponentIsDeviceSheet79=0
  1915. ComponentLibIdentifierKind80=Library Name And Type
  1916. ComponentLibraryIdentifier80=MKP_lib.DbLib/Components
  1917. ComponentDesignItemID80=RC0402FR-0722RL
  1918. ComponentSymbolReference80=RES
  1919. ComponentUpdate80=1
  1920. ComponentIsDeviceSheet80=0
  1921. ComponentLibIdentifierKind81=Library Name And Type
  1922. ComponentLibraryIdentifier81=MKP_lib.DbLib/Components
  1923. ComponentDesignItemID81=RC0402FR-0724K9L
  1924. ComponentSymbolReference81=RES
  1925. ComponentUpdate81=1
  1926. ComponentIsDeviceSheet81=0
  1927. ComponentLibIdentifierKind82=Library Name And Type
  1928. ComponentLibraryIdentifier82=MKP_lib.DbLib/Components
  1929. ComponentDesignItemID82=RC0402FR-072K2L
  1930. ComponentSymbolReference82=RES
  1931. ComponentUpdate82=1
  1932. ComponentIsDeviceSheet82=0
  1933. ComponentLibIdentifierKind83=Library Name And Type
  1934. ComponentLibraryIdentifier83=MKP_lib.DbLib/Components
  1935. ComponentDesignItemID83=RC0402FR-072K49L
  1936. ComponentSymbolReference83=RES
  1937. ComponentUpdate83=1
  1938. ComponentIsDeviceSheet83=0
  1939. ComponentLibIdentifierKind84=Library Name And Type
  1940. ComponentLibraryIdentifier84=MKP_lib.DbLib/Components
  1941. ComponentDesignItemID84=RC0402FR-0734KL
  1942. ComponentSymbolReference84=RES
  1943. ComponentUpdate84=1
  1944. ComponentIsDeviceSheet84=0
  1945. ComponentLibIdentifierKind85=Library Name And Type
  1946. ComponentLibraryIdentifier85=MKP_lib.DbLib/Components
  1947. ComponentDesignItemID85=RC0402FR-0739K2L
  1948. ComponentSymbolReference85=RES
  1949. ComponentUpdate85=1
  1950. ComponentIsDeviceSheet85=0
  1951. ComponentLibIdentifierKind86=Library Name And Type
  1952. ComponentLibraryIdentifier86=MKP_lib.DbLib/Components
  1953. ComponentDesignItemID86=RC0402FR-073K3L
  1954. ComponentSymbolReference86=RES
  1955. ComponentUpdate86=1
  1956. ComponentIsDeviceSheet86=0
  1957. ComponentLibIdentifierKind87=Library Name And Type
  1958. ComponentLibraryIdentifier87=MKP_lib.DbLib/Components
  1959. ComponentDesignItemID87=RC0402FR-07470RL
  1960. ComponentSymbolReference87=RES
  1961. ComponentUpdate87=1
  1962. ComponentIsDeviceSheet87=0
  1963. ComponentLibIdentifierKind88=Library Name And Type
  1964. ComponentLibraryIdentifier88=MKP_lib.DbLib/Components
  1965. ComponentDesignItemID88=RC0402FR-0747KL
  1966. ComponentSymbolReference88=RES
  1967. ComponentUpdate88=1
  1968. ComponentIsDeviceSheet88=0
  1969. ComponentLibIdentifierKind89=Library Name And Type
  1970. ComponentLibraryIdentifier89=MKP_lib.DbLib/Components
  1971. ComponentDesignItemID89=RC0402FR-074K7L
  1972. ComponentSymbolReference89=RES
  1973. ComponentUpdate89=1
  1974. ComponentIsDeviceSheet89=0
  1975. ComponentLibIdentifierKind90=Library Name And Type
  1976. ComponentLibraryIdentifier90=MKP_lib.DbLib/Components
  1977. ComponentDesignItemID90=RC0402FR-0757K6P
  1978. ComponentSymbolReference90=RES
  1979. ComponentUpdate90=1
  1980. ComponentIsDeviceSheet90=0
  1981. ComponentLibIdentifierKind91=Library Name And Type
  1982. ComponentLibraryIdentifier91=MKP_lib.DbLib/Components
  1983. ComponentDesignItemID91=RC0402FR-075K6L
  1984. ComponentSymbolReference91=RES
  1985. ComponentUpdate91=1
  1986. ComponentIsDeviceSheet91=0
  1987. ComponentLibIdentifierKind92=Library Name And Type
  1988. ComponentLibraryIdentifier92=MKP_lib.DbLib/Components
  1989. ComponentDesignItemID92=RC0402FR-0768KL
  1990. ComponentSymbolReference92=RES
  1991. ComponentUpdate92=1
  1992. ComponentIsDeviceSheet92=0
  1993. ComponentLibIdentifierKind93=Library Name And Type
  1994. ComponentLibraryIdentifier93=MKP_lib.DbLib/Components
  1995. ComponentDesignItemID93=RC0402FR-0769K8L
  1996. ComponentSymbolReference93=RES
  1997. ComponentUpdate93=1
  1998. ComponentIsDeviceSheet93=0
  1999. ComponentLibIdentifierKind94=Library Name And Type
  2000. ComponentLibraryIdentifier94=MKP_lib.DbLib/Components
  2001. ComponentDesignItemID94=RC0402FR-076K8L
  2002. ComponentSymbolReference94=RES
  2003. ComponentUpdate94=1
  2004. ComponentIsDeviceSheet94=0
  2005. ComponentLibIdentifierKind95=Library Name And Type
  2006. ComponentLibraryIdentifier95=MKP_lib.DbLib/Components
  2007. ComponentDesignItemID95=RC0402FR-0775RL
  2008. ComponentSymbolReference95=RES
  2009. ComponentUpdate95=1
  2010. ComponentIsDeviceSheet95=0
  2011. ComponentLibIdentifierKind96=Library Name And Type
  2012. ComponentLibraryIdentifier96=MKP_lib.DbLib/Components
  2013. ComponentDesignItemID96=RC0402FR-0784K5L
  2014. ComponentSymbolReference96=RES
  2015. ComponentUpdate96=1
  2016. ComponentIsDeviceSheet96=0
  2017. ComponentLibIdentifierKind97=Library Name And Type
  2018. ComponentLibraryIdentifier97=MKP_lib.DbLib/Components
  2019. ComponentDesignItemID97=RI0603L000JT
  2020. ComponentSymbolReference97=RES
  2021. ComponentUpdate97=1
  2022. ComponentIsDeviceSheet97=0
  2023. ComponentLibIdentifierKind98=Library Name And Type
  2024. ComponentLibraryIdentifier98=MKP_lib.DbLib/Components
  2025. ComponentDesignItemID98=RI0603L1R00FT
  2026. ComponentSymbolReference98=RES
  2027. ComponentUpdate98=1
  2028. ComponentIsDeviceSheet98=0
  2029. ComponentLibIdentifierKind99=Library Name And Type
  2030. ComponentLibraryIdentifier99=MKP_lib.DbLib/Components
  2031. ComponentDesignItemID99=RI1206L000JT
  2032. ComponentSymbolReference99=RES
  2033. ComponentUpdate99=1
  2034. ComponentIsDeviceSheet99=0
  2035. ComponentLibIdentifierKind100=Library Name And Type
  2036. ComponentLibraryIdentifier100=MKP_lib.DbLib/Components
  2037. ComponentDesignItemID100=RS1G126XC5
  2038. ComponentSymbolReference100=RS1G126XC5
  2039. ComponentUpdate100=1
  2040. ComponentIsDeviceSheet100=0
  2041. ComponentLibIdentifierKind101=Library Name And Type
  2042. ComponentLibraryIdentifier101=MKP_lib.DbLib/Components
  2043. ComponentDesignItemID101=RT1H101M0810
  2044. ComponentSymbolReference101=CAPP
  2045. ComponentUpdate101=1
  2046. ComponentIsDeviceSheet101=0
  2047. ComponentLibIdentifierKind102=Library Name And Type
  2048. ComponentLibraryIdentifier102=MKP_lib.DbLib/Components
  2049. ComponentDesignItemID102=RT7-174AAM1A
  2050. ComponentSymbolReference102=RT7-174AAM1A
  2051. ComponentUpdate102=1
  2052. ComponentIsDeviceSheet102=0
  2053. ComponentLibIdentifierKind103=Library Name And Type
  2054. ComponentLibraryIdentifier103=MKP_lib.DbLib/Components
  2055. ComponentDesignItemID103=RVT1A331M0607
  2056. ComponentSymbolReference103=CAPP
  2057. ComponentUpdate103=1
  2058. ComponentIsDeviceSheet103=0
  2059. ComponentLibIdentifierKind104=Library Name And Type
  2060. ComponentLibraryIdentifier104=MKP_lib.DbLib/Components
  2061. ComponentDesignItemID104=RVT2A100M0605
  2062. ComponentSymbolReference104=CAPP
  2063. ComponentUpdate104=1
  2064. ComponentIsDeviceSheet104=0
  2065. ComponentLibIdentifierKind105=Library Name And Type
  2066. ComponentLibraryIdentifier105=MKP_lib.DbLib/Components
  2067. ComponentDesignItemID105=RY3408
  2068. ComponentSymbolReference105=RY3408
  2069. ComponentUpdate105=1
  2070. ComponentIsDeviceSheet105=0
  2071. ComponentLibIdentifierKind106=Library Name And Type
  2072. ComponentLibraryIdentifier106=MKP_lib.DbLib/Components
  2073. ComponentDesignItemID106=S10M
  2074. ComponentSymbolReference106=Diode
  2075. ComponentUpdate106=1
  2076. ComponentIsDeviceSheet106=0
  2077. ComponentLibIdentifierKind107=Library Name And Type
  2078. ComponentLibraryIdentifier107=MKP_lib.DbLib/Components
  2079. ComponentDesignItemID107=SGM2028-ADJYN5G/TR
  2080. ComponentSymbolReference107=SGM2028-ADJYN5G/TR
  2081. ComponentUpdate107=1
  2082. ComponentIsDeviceSheet107=0
  2083. ComponentLibIdentifierKind108=Library Name And Type
  2084. ComponentLibraryIdentifier108=MKP_lib.DbLib/Components
  2085. ComponentDesignItemID108=SI2333CDS
  2086. ComponentSymbolReference108=P-Channel
  2087. ComponentUpdate108=1
  2088. ComponentIsDeviceSheet108=0
  2089. ComponentLibIdentifierKind109=Library Name And Type
  2090. ComponentLibraryIdentifier109=MKP_lib.DbLib/Components
  2091. ComponentDesignItemID109=SIM8066-6-1-14-01-A
  2092. ComponentSymbolReference109=SIM8066-6-1-14-01-A
  2093. ComponentUpdate109=1
  2094. ComponentIsDeviceSheet109=0
  2095. ComponentLibIdentifierKind110=Library Name And Type
  2096. ComponentLibraryIdentifier110=MKP_lib.DbLib/Components
  2097. ComponentDesignItemID110=SMF05CT1G-P
  2098. ComponentSymbolReference110=SMF05CT1G-P
  2099. ComponentUpdate110=1
  2100. ComponentIsDeviceSheet110=0
  2101. ComponentLibIdentifierKind111=Library Name And Type
  2102. ComponentLibraryIdentifier111=MKP_lib.DbLib/Components
  2103. ComponentDesignItemID111=SMF54A
  2104. ComponentSymbolReference111=TVS
  2105. ComponentUpdate111=1
  2106. ComponentIsDeviceSheet111=0
  2107. ComponentLibIdentifierKind112=Library Name And Type
  2108. ComponentLibraryIdentifier112=MKP_lib.DbLib/Components
  2109. ComponentDesignItemID112=SR05-04A
  2110. ComponentSymbolReference112=SR05-04A
  2111. ComponentUpdate112=1
  2112. ComponentIsDeviceSheet112=0
  2113. ComponentLibIdentifierKind113=Library Name And Type
  2114. ComponentLibraryIdentifier113=MKP_lib.DbLib/Components
  2115. ComponentDesignItemID113=SRP6540-2R2M
  2116. ComponentSymbolReference113=IND
  2117. ComponentUpdate113=1
  2118. ComponentIsDeviceSheet113=0
  2119. ComponentLibIdentifierKind114=Library Name And Type
  2120. ComponentLibraryIdentifier114=MKP_lib.DbLib/Components
  2121. ComponentDesignItemID114=SS34A
  2122. ComponentSymbolReference114=SCHOTTKY
  2123. ComponentUpdate114=1
  2124. ComponentIsDeviceSheet114=0
  2125. ComponentLibIdentifierKind115=Library Name And Type
  2126. ComponentLibraryIdentifier115=MKP_lib.DbLib/Components
  2127. ComponentDesignItemID115=SS56F
  2128. ComponentSymbolReference115=SCHOTTKY
  2129. ComponentUpdate115=1
  2130. ComponentIsDeviceSheet115=0
  2131. ComponentLibIdentifierKind116=Library Name And Type
  2132. ComponentLibraryIdentifier116=MKP_lib.DbLib/Components
  2133. ComponentDesignItemID116=SX20Y025000B91T002
  2134. ComponentSymbolReference116=Q22FA12800078
  2135. ComponentUpdate116=1
  2136. ComponentIsDeviceSheet116=0
  2137. ComponentLibIdentifierKind117=Library Name And Type
  2138. ComponentLibraryIdentifier117=MKP_lib.DbLib/Components
  2139. ComponentDesignItemID117=TAJB476K010RNJ
  2140. ComponentSymbolReference117=CAPP
  2141. ComponentUpdate117=1
  2142. ComponentIsDeviceSheet117=0
  2143. ComponentLibIdentifierKind118=Library Name And Type
  2144. ComponentLibraryIdentifier118=MKP_lib.DbLib/Components
  2145. ComponentDesignItemID118=TannhietSOM
  2146. ComponentSymbolReference118=Tannhiet
  2147. ComponentUpdate118=1
  2148. ComponentIsDeviceSheet118=0
  2149. ComponentLibIdentifierKind119=Library Name And Type
  2150. ComponentLibraryIdentifier119=MKP_lib.DbLib/Components
  2151. ComponentDesignItemID119=TP
  2152. ComponentSymbolReference119=TP
  2153. ComponentUpdate119=1
  2154. ComponentIsDeviceSheet119=0
  2155. ComponentLibIdentifierKind120=Library Name And Type
  2156. ComponentLibraryIdentifier120=MKP_lib.DbLib/Components
  2157. ComponentDesignItemID120=TS-1090S-AR02026
  2158. ComponentSymbolReference120=SW-4PIN
  2159. ComponentUpdate120=1
  2160. ComponentIsDeviceSheet120=0
  2161. ComponentLibIdentifierKind121=Library Name And Type
  2162. ComponentLibraryIdentifier121=MKP_lib.DbLib/Components
  2163. ComponentDesignItemID121=UMK212B7104KG-T
  2164. ComponentSymbolReference121=CAP
  2165. ComponentUpdate121=1
  2166. ComponentIsDeviceSheet121=0
  2167. ComponentLibIdentifierKind122=Library Name And Type
  2168. ComponentLibraryIdentifier122=MKP_lib.DbLib/Components
  2169. ComponentDesignItemID122=UPZ2012E102-1R5TF
  2170. ComponentSymbolReference122=FB
  2171. ComponentUpdate122=1
  2172. ComponentIsDeviceSheet122=0
  2173. ComponentLibIdentifierKind123=Library Name And Type
  2174. ComponentLibraryIdentifier123=MKP_lib.DbLib/Components
  2175. ComponentDesignItemID123=VH3.96-3A
  2176. ComponentSymbolReference123=CON-3PIN
  2177. ComponentUpdate123=1
  2178. ComponentIsDeviceSheet123=0
  2179. ComponentLibIdentifierKind124=Library Name And Type
  2180. ComponentLibraryIdentifier124=MKP_lib.DbLib/Components
  2181. ComponentDesignItemID124=XL-1608SURC-06
  2182. ComponentSymbolReference124=LED
  2183. ComponentUpdate124=1
  2184. ComponentIsDeviceSheet124=0
  2185. ComponentLibIdentifierKind125=Library Name And Type
  2186. ComponentLibraryIdentifier125=MKP_lib.DbLib/Components
  2187. ComponentDesignItemID125=XL-1608SYGC-04
  2188. ComponentSymbolReference125=LED
  2189. ComponentUpdate125=1
  2190. ComponentIsDeviceSheet125=0
  2191. ComponentLibIdentifierKind126=Library Name And Type
  2192. ComponentLibraryIdentifier126=MKP_lib.DbLib/Components
  2193. ComponentDesignItemID126=XL-DZ304SURD/3
  2194. ComponentSymbolReference126=LED3
  2195. ComponentUpdate126=1
  2196. ComponentIsDeviceSheet126=0
  2197. ComponentLibIdentifierKind127=Library Name And Type
  2198. ComponentLibraryIdentifier127=MKP_lib.DbLib/Components
  2199. ComponentDesignItemID127=YI201209U601-2R5T
  2200. ComponentSymbolReference127=FB
  2201. ComponentUpdate127=1
  2202. ComponentIsDeviceSheet127=0
  2203. ComponentLibIdentifierKind128=Library Name And Type
  2204. ComponentLibraryIdentifier128=MKP_lib.DbLib/Components
  2205. ComponentDesignItemID128=YJL2305A
  2206. ComponentSymbolReference128=P-Channel
  2207. ComponentUpdate128=1
  2208. ComponentIsDeviceSheet128=0
  2209. ComponentLibIdentifierKind129=Library Name And Type
  2210. ComponentLibraryIdentifier129=MKP_lib.DbLib/Components
  2211. ComponentDesignItemID129=YT8531SH-CA
  2212. ComponentSymbolReference129=YT8531SH-CA
  2213. ComponentUpdate129=1
  2214. ComponentIsDeviceSheet129=0
  2215. ComponentLibIdentifierKind130=Library Name And Type
  2216. ComponentLibraryIdentifier130=MKP_lib.DbLib/Components
  2217. ComponentDesignItemID130=ZX-PZ2.54-2-3PZZ
  2218. ComponentSymbolReference130=CON-3x2PIN
  2219. ComponentUpdate130=1
  2220. ComponentIsDeviceSheet130=0
  2221. ComponentLibIdentifierKind131=Library Name And Type
  2222. ComponentLibraryIdentifier131=MKP_lib.DbLib
  2223. ComponentDesignItemID131=CSD19538Q3A
  2224. ComponentSymbolReference131=Mosfet N-Chanel
  2225. ComponentUpdate131=1
  2226. ComponentIsDeviceSheet131=0
  2227. ComponentLibIdentifierKind132=Library Name And Type
  2228. ComponentLibraryIdentifier132=MKP_lib.DbLib
  2229. ComponentDesignItemID132=JUMP-2.54-2PIN-M-TH
  2230. ComponentSymbolReference132=CON-2PIN
  2231. ComponentUpdate132=1
  2232. ComponentIsDeviceSheet132=0
  2233. ComponentLibIdentifierKind133=Library Name And Type
  2234. ComponentLibraryIdentifier133=MKP_lib.DbLib
  2235. ComponentDesignItemID133=PH-2A
  2236. ComponentSymbolReference133=CON-2PIN
  2237. ComponentUpdate133=1
  2238. ComponentIsDeviceSheet133=0
  2239. ComponentLibIdentifierKind134=Library Name And Type
  2240. ComponentLibraryIdentifier134=MYC_LR3568.SchLib
  2241. ComponentDesignItemID134=MYC-LR3568X
  2242. ComponentSymbolReference134=MYC-LR3568X
  2243. ComponentUpdate134=1
  2244. ComponentIsDeviceSheet134=0
  2245. [Comparison Options]
  2246. ComparisonOptions0=Kind=Net|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
  2247. ComparisonOptions1=Kind=Net Class|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
  2248. ComparisonOptions2=Kind=Component Class|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
  2249. ComparisonOptions3=Kind=Rule|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
  2250. ComparisonOptions4=Kind=Differential Pair|MinPercent=50|MinMatch=1|ShowMatch=0|UseName=0|InclAllRules=0
  2251. ComparisonOptions5=Kind=Structure Class|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
  2252. [SmartPDF]
  2253. PageOptions=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1