Camera_Box_RK3562.PrjPcb 124 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426
  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=1
  27. AutoCrossReferences=1
  28. NewIndexingOfSheetSymbols=1
  29. PushECOToAnnotationFile=1
  30. DItemRevisionGUID=
  31. ReportSuppressedErrorsInMessages=0
  32. FSMCodingStyle=eFMSDropDownList_OneProcess
  33. FSMEncodingStyle=eFMSDropDownList_OneHot
  34. IsProjectConflictPreventionWarningsEnabled=0
  35. IsVirtualBomDocumentRemoved=1
  36. OutputPath=
  37. LogFolderPath=
  38. ManagedProjectGUID=
  39. IncludeDesignInRelease=0
  40. CrossRefSheetStyle=1
  41. CrossRefLocationStyle=1
  42. CrossRefPorts=3
  43. CrossRefCrossSheets=1
  44. CrossRefSheetEntries=0
  45. CrossRefFollowFromMainSettings=1
  46. CurrentVariant=CameraBox
  47. [Preferences]
  48. PrefsVaultGUID=
  49. PrefsRevisionGUID=
  50. [Document1]
  51. DocumentPath=Output.OutJob
  52. AnnotationEnabled=1
  53. AnnotateStartValue=1
  54. AnnotationIndexControlEnabled=0
  55. AnnotateSuffix=
  56. AnnotateScope=All
  57. AnnotateOrder=-1
  58. DoLibraryUpdate=1
  59. DoDatabaseUpdate=1
  60. ClassGenCCAutoEnabled=1
  61. ClassGenCCAutoRoomEnabled=1
  62. ClassGenNCAutoScope=None
  63. DItemRevisionGUID=
  64. GenerateClassCluster=0
  65. DocumentUniqueId=
  66. [Document2]
  67. DocumentPath=POWER.SchDoc
  68. AnnotationEnabled=1
  69. AnnotateStartValue=1
  70. AnnotationIndexControlEnabled=0
  71. AnnotateSuffix=
  72. AnnotateScope=All
  73. AnnotateOrder=0
  74. DoLibraryUpdate=1
  75. DoDatabaseUpdate=1
  76. ClassGenCCAutoEnabled=1
  77. ClassGenCCAutoRoomEnabled=1
  78. ClassGenNCAutoScope=None
  79. DItemRevisionGUID=
  80. GenerateClassCluster=0
  81. DocumentUniqueId=YZVKBUMY
  82. [Document3]
  83. DocumentPath=CORE.SchDoc
  84. AnnotationEnabled=1
  85. AnnotateStartValue=1
  86. AnnotationIndexControlEnabled=0
  87. AnnotateSuffix=
  88. AnnotateScope=All
  89. AnnotateOrder=1
  90. DoLibraryUpdate=1
  91. DoDatabaseUpdate=1
  92. ClassGenCCAutoEnabled=1
  93. ClassGenCCAutoRoomEnabled=0
  94. ClassGenNCAutoScope=None
  95. DItemRevisionGUID=
  96. GenerateClassCluster=0
  97. DocumentUniqueId=EOTSVNJJ
  98. [Document4]
  99. DocumentPath=AUDIO.SchDoc
  100. AnnotationEnabled=1
  101. AnnotateStartValue=1
  102. AnnotationIndexControlEnabled=0
  103. AnnotateSuffix=
  104. AnnotateScope=All
  105. AnnotateOrder=2
  106. DoLibraryUpdate=1
  107. DoDatabaseUpdate=1
  108. ClassGenCCAutoEnabled=1
  109. ClassGenCCAutoRoomEnabled=0
  110. ClassGenNCAutoScope=None
  111. DItemRevisionGUID=
  112. GenerateClassCluster=0
  113. DocumentUniqueId=FQUWCDSP
  114. [Document5]
  115. DocumentPath=CAMERA.SchDoc
  116. AnnotationEnabled=1
  117. AnnotateStartValue=1
  118. AnnotationIndexControlEnabled=0
  119. AnnotateSuffix=
  120. AnnotateScope=All
  121. AnnotateOrder=3
  122. DoLibraryUpdate=1
  123. DoDatabaseUpdate=1
  124. ClassGenCCAutoEnabled=1
  125. ClassGenCCAutoRoomEnabled=0
  126. ClassGenNCAutoScope=None
  127. DItemRevisionGUID=
  128. GenerateClassCluster=0
  129. DocumentUniqueId=CPLWNQMC
  130. [Document6]
  131. DocumentPath=UART.SchDoc
  132. AnnotationEnabled=1
  133. AnnotateStartValue=1
  134. AnnotationIndexControlEnabled=0
  135. AnnotateSuffix=
  136. AnnotateScope=All
  137. AnnotateOrder=4
  138. DoLibraryUpdate=1
  139. DoDatabaseUpdate=1
  140. ClassGenCCAutoEnabled=1
  141. ClassGenCCAutoRoomEnabled=0
  142. ClassGenNCAutoScope=None
  143. DItemRevisionGUID=
  144. GenerateClassCluster=0
  145. DocumentUniqueId=IBCFWMTB
  146. [Document7]
  147. DocumentPath=Function.SchDoc
  148. AnnotationEnabled=1
  149. AnnotateStartValue=1
  150. AnnotationIndexControlEnabled=0
  151. AnnotateSuffix=
  152. AnnotateScope=All
  153. AnnotateOrder=5
  154. DoLibraryUpdate=1
  155. DoDatabaseUpdate=1
  156. ClassGenCCAutoEnabled=1
  157. ClassGenCCAutoRoomEnabled=0
  158. ClassGenNCAutoScope=None
  159. DItemRevisionGUID=
  160. GenerateClassCluster=0
  161. DocumentUniqueId=XTFNUDHB
  162. [Document8]
  163. DocumentPath=4G.SchDoc
  164. AnnotationEnabled=1
  165. AnnotateStartValue=1
  166. AnnotationIndexControlEnabled=0
  167. AnnotateSuffix=
  168. AnnotateScope=All
  169. AnnotateOrder=7
  170. DoLibraryUpdate=1
  171. DoDatabaseUpdate=1
  172. ClassGenCCAutoEnabled=1
  173. ClassGenCCAutoRoomEnabled=0
  174. ClassGenNCAutoScope=None
  175. DItemRevisionGUID=
  176. GenerateClassCluster=0
  177. DocumentUniqueId=HBTPIULA
  178. [Document9]
  179. DocumentPath=TF.SchDoc
  180. AnnotationEnabled=1
  181. AnnotateStartValue=1
  182. AnnotationIndexControlEnabled=0
  183. AnnotateSuffix=
  184. AnnotateScope=All
  185. AnnotateOrder=6
  186. DoLibraryUpdate=1
  187. DoDatabaseUpdate=1
  188. ClassGenCCAutoEnabled=1
  189. ClassGenCCAutoRoomEnabled=0
  190. ClassGenNCAutoScope=None
  191. DItemRevisionGUID=
  192. GenerateClassCluster=0
  193. DocumentUniqueId=HTPWMWOC
  194. [Document10]
  195. DocumentPath=GPS.SchDoc
  196. AnnotationEnabled=1
  197. AnnotateStartValue=1
  198. AnnotationIndexControlEnabled=0
  199. AnnotateSuffix=
  200. AnnotateScope=All
  201. AnnotateOrder=8
  202. DoLibraryUpdate=1
  203. DoDatabaseUpdate=1
  204. ClassGenCCAutoEnabled=1
  205. ClassGenCCAutoRoomEnabled=0
  206. ClassGenNCAutoScope=None
  207. DItemRevisionGUID=
  208. GenerateClassCluster=0
  209. DocumentUniqueId=XBHZKGQY
  210. [Document11]
  211. DocumentPath=ETH.SchDoc
  212. AnnotationEnabled=1
  213. AnnotateStartValue=1
  214. AnnotationIndexControlEnabled=0
  215. AnnotateSuffix=
  216. AnnotateScope=All
  217. AnnotateOrder=9
  218. DoLibraryUpdate=1
  219. DoDatabaseUpdate=1
  220. ClassGenCCAutoEnabled=1
  221. ClassGenCCAutoRoomEnabled=0
  222. ClassGenNCAutoScope=None
  223. DItemRevisionGUID=
  224. GenerateClassCluster=0
  225. DocumentUniqueId=PURCMWXV
  226. [Document12]
  227. DocumentPath=INPUT.SchDoc
  228. AnnotationEnabled=1
  229. AnnotateStartValue=1
  230. AnnotationIndexControlEnabled=0
  231. AnnotateSuffix=
  232. AnnotateScope=All
  233. AnnotateOrder=10
  234. DoLibraryUpdate=1
  235. DoDatabaseUpdate=1
  236. ClassGenCCAutoEnabled=1
  237. ClassGenCCAutoRoomEnabled=0
  238. ClassGenNCAutoScope=None
  239. DItemRevisionGUID=
  240. GenerateClassCluster=0
  241. DocumentUniqueId=BCQXQIZB
  242. [Document13]
  243. DocumentPath=OUTPUT.SchDoc
  244. AnnotationEnabled=1
  245. AnnotateStartValue=1
  246. AnnotationIndexControlEnabled=0
  247. AnnotateSuffix=
  248. AnnotateScope=All
  249. AnnotateOrder=11
  250. DoLibraryUpdate=1
  251. DoDatabaseUpdate=1
  252. ClassGenCCAutoEnabled=1
  253. ClassGenCCAutoRoomEnabled=0
  254. ClassGenNCAutoScope=None
  255. DItemRevisionGUID=
  256. GenerateClassCluster=0
  257. DocumentUniqueId=QOXORCSF
  258. [Document14]
  259. DocumentPath=PCIE.SchDoc
  260. AnnotationEnabled=1
  261. AnnotateStartValue=1
  262. AnnotationIndexControlEnabled=0
  263. AnnotateSuffix=
  264. AnnotateScope=All
  265. AnnotateOrder=12
  266. DoLibraryUpdate=1
  267. DoDatabaseUpdate=1
  268. ClassGenCCAutoEnabled=1
  269. ClassGenCCAutoRoomEnabled=0
  270. ClassGenNCAutoScope=None
  271. DItemRevisionGUID=
  272. GenerateClassCluster=0
  273. DocumentUniqueId=SSNTSUBY
  274. [Document15]
  275. DocumentPath=Camera_Box_RK3562.PcbDoc
  276. AnnotationEnabled=1
  277. AnnotateStartValue=1
  278. AnnotationIndexControlEnabled=0
  279. AnnotateSuffix=
  280. AnnotateScope=All
  281. AnnotateOrder=-1
  282. DoLibraryUpdate=1
  283. DoDatabaseUpdate=1
  284. ClassGenCCAutoEnabled=1
  285. ClassGenCCAutoRoomEnabled=0
  286. ClassGenNCAutoScope=None
  287. DItemRevisionGUID=
  288. GenerateClassCluster=0
  289. DocumentUniqueId=DNIDONKW
  290. [Document16]
  291. DocumentPath=CONN.SchDoc
  292. AnnotationEnabled=1
  293. AnnotateStartValue=1
  294. AnnotationIndexControlEnabled=0
  295. AnnotateSuffix=
  296. AnnotateScope=All
  297. AnnotateOrder=13
  298. DoLibraryUpdate=1
  299. DoDatabaseUpdate=1
  300. ClassGenCCAutoEnabled=1
  301. ClassGenCCAutoRoomEnabled=0
  302. ClassGenNCAutoScope=None
  303. DItemRevisionGUID=
  304. GenerateClassCluster=0
  305. DocumentUniqueId=SAITEOPN
  306. [ProjectVariant1]
  307. UniqueID=E3D06398-A058-42DC-91D4-E4FCEEED59B6
  308. Description=CameraBox
  309. AllowFabrication=0
  310. ParameterCount=4
  311. VariationCount=50
  312. Variation1=Designator=R28|UniqueId=\PGKVMOGM|Kind=1|AlternatePart=
  313. Variation2=Designator=R32|UniqueId=\EHOLIYFG|Kind=1|AlternatePart=
  314. Variation3=Designator=C109|UniqueId=\HMEZJDJO|Kind=1|AlternatePart=
  315. Variation4=Designator=C114|UniqueId=\RSCQUYGB|Kind=1|AlternatePart=
  316. Variation5=Designator=C187|UniqueId=\WUOFJAQV|Kind=1|AlternatePart=
  317. Variation6=Designator=R117|UniqueId=\YWMIUTDW|Kind=1|AlternatePart=
  318. Variation7=Designator=R118|UniqueId=\OYEEWPHO|Kind=1|AlternatePart=
  319. Variation8=Designator=D34|UniqueId=\EERUBFXG|Kind=1|AlternatePart=
  320. Variation9=Designator=C147|UniqueId=\RFOGRZUK|Kind=1|AlternatePart=
  321. Variation10=Designator=C163|UniqueId=\FLDWJTMA|Kind=1|AlternatePart=
  322. Variation11=Designator=C164|UniqueId=\RLEMRSVZ|Kind=1|AlternatePart=
  323. Variation12=Designator=R160|UniqueId=\GTVIZXDC|Kind=1|AlternatePart=
  324. Variation13=Designator=R174|UniqueId=\BXITKBOI|Kind=1|AlternatePart=
  325. Variation14=Designator=R176|UniqueId=\ZWGPDMSA|Kind=1|AlternatePart=
  326. Variation15=Designator=R177|UniqueId=\NCLNTMOM|Kind=1|AlternatePart=
  327. Variation16=Designator=R180|UniqueId=\OZQHEAGH|Kind=1|AlternatePart=
  328. Variation17=Designator=R184|UniqueId=\FAABKJMQ|Kind=1|AlternatePart=
  329. Variation18=Designator=R183|UniqueId=\CBERASUA|Kind=1|AlternatePart=
  330. Variation19=Designator=R170|UniqueId=\KPAKVTZV|Kind=1|AlternatePart=
  331. Variation20=Designator=R225|UniqueId=\HTBUCSTY|Kind=1|AlternatePart=
  332. Variation21=Designator=R?|UniqueId=\SYIFLMHS|Kind=1|AlternatePart=
  333. Variation22=Designator=R157|UniqueId=\QANRYPXB|Kind=0|AlternatePart=
  334. Variation23=Designator=R10|UniqueId=\SPANNMOC|Kind=1|AlternatePart=
  335. Variation24=Designator=R13|UniqueId=\KYLEGNQD|Kind=1|AlternatePart=
  336. Variation25=Designator=C144|UniqueId=\VDFWEHVH|Kind=0|AlternatePart=
  337. Variation26=Designator=C29|UniqueId=\NIXDXGKW|Kind=1|AlternatePart=
  338. Variation27=Designator=R?|UniqueId=\VJGJVAGL|Kind=1|AlternatePart=
  339. Variation28=Designator=R?|UniqueId=\LMCCFRLB|Kind=1|AlternatePart=
  340. Variation29=Designator=R?|UniqueId=\EOPDXSKW|Kind=1|AlternatePart=
  341. Variation30=Designator=R?|UniqueId=\IDLCRQQM|Kind=1|AlternatePart=
  342. Variation31=Designator=R?|UniqueId=\BDYQMBYI|Kind=1|AlternatePart=
  343. Variation32=Designator=R?|UniqueId=\ZPPESHQP|Kind=1|AlternatePart=
  344. Variation33=Designator=R?|UniqueId=\XNUDFIAF|Kind=1|AlternatePart=
  345. Variation34=Designator=R?|UniqueId=\EDZYXTHN|Kind=1|AlternatePart=
  346. Variation35=Designator=R?|UniqueId=\PGHDXTAN|Kind=1|AlternatePart=
  347. Variation36=Designator=R?|UniqueId=\UEQPPSHZ|Kind=1|AlternatePart=
  348. Variation37=Designator=R?|UniqueId=\TJIQFWJV|Kind=1|AlternatePart=
  349. Variation38=Designator=R?|UniqueId=\KGVAZAKV|Kind=1|AlternatePart=
  350. Variation39=Designator=R?|UniqueId=\YWOJANZT|Kind=1|AlternatePart=
  351. Variation40=Designator=R?|UniqueId=\UOTNYSLI|Kind=1|AlternatePart=
  352. Variation41=Designator=R?|UniqueId=\WMDWDUNZ|Kind=1|AlternatePart=
  353. Variation42=Designator=R?|UniqueId=\UZFOHUTG|Kind=1|AlternatePart=
  354. Variation43=Designator=R?|UniqueId=\TENVMPGU|Kind=1|AlternatePart=
  355. Variation44=Designator=R?|UniqueId=\ULEDXQNJ|Kind=1|AlternatePart=
  356. Variation45=Designator=R?|UniqueId=\FEVUJMBY|Kind=1|AlternatePart=
  357. Variation46=Designator=R?|UniqueId=\BBBWQATF|Kind=1|AlternatePart=
  358. Variation47=Designator=R?|UniqueId=\XFTSTRDL|Kind=1|AlternatePart=
  359. Variation48=Designator=R?|UniqueId=\CHQWZTTV|Kind=1|AlternatePart=
  360. Variation49=Designator=R?|UniqueId=\CVQDIHEI|Kind=1|AlternatePart=
  361. Variation50=Designator=R?|UniqueId=\DCAYRFUW|Kind=1|AlternatePart=
  362. ParamVariationCount=0
  363. [Parameter2_1]
  364. Name=author
  365. Value=Hainv
  366. [Parameter2_2]
  367. Name=Cus
  368. Value=Aithings
  369. [Parameter2_3]
  370. Name=des
  371. Value=Cambox_2026
  372. [Parameter2_4]
  373. Name=ver
  374. Value=4.0
  375. [GeneratedDocument1]
  376. DocumentPath=Project Outputs for Camera_Box_RK3562\BOM\BOM_CameraBox_2026-03-26.xlsx
  377. DItemRevisionGUID=
  378. [GeneratedDocument2]
  379. DocumentPath=Project Outputs for Camera_Box_RK3562\BOM\BOM_CameraBox_2026-04-14.xlsx
  380. DItemRevisionGUID=
  381. [GeneratedDocument3]
  382. DocumentPath=Project Outputs for Camera_Box_RK3562\NC Drill\Camera_Box_RK3562-RoundHoles-NonPlated.TXT
  383. DItemRevisionGUID=
  384. [GeneratedDocument4]
  385. DocumentPath=Project Outputs for Camera_Box_RK3562\NC Drill\Camera_Box_RK3562-RoundHoles-Plated.TXT
  386. DItemRevisionGUID=
  387. [GeneratedDocument5]
  388. DocumentPath=Project Outputs for Camera_Box_RK3562\NC Drill\Camera_Box_RK3562-SlotHoles-Plated.TXT
  389. DItemRevisionGUID=
  390. [GeneratedDocument6]
  391. DocumentPath=Project Outputs for Camera_Box_RK3562\NC Drill\Camera_Box_RK3562.DRR
  392. DItemRevisionGUID=
  393. [GeneratedDocument7]
  394. DocumentPath=Project Outputs for Camera_Box_RK3562\Gerber\Camera_Box_RK3562.EXTREP
  395. DItemRevisionGUID=
  396. [GeneratedDocument8]
  397. DocumentPath=Project Outputs for Camera_Box_RK3562\NC Drill\Camera_Box_RK3562.LDP
  398. DItemRevisionGUID=
  399. [GeneratedDocument9]
  400. DocumentPath=Project Outputs for Camera_Box_RK3562\Gerber\Camera_Box_RK3562.REP
  401. DItemRevisionGUID=
  402. [GeneratedDocument10]
  403. DocumentPath=Project Outputs for Camera_Box_RK3562\Gerber\Camera_Box_RK3562.RUL
  404. DItemRevisionGUID=
  405. [GeneratedDocument11]
  406. DocumentPath=Project Outputs for Camera_Box_RK3562\Gerber\Camera_Box_RK3562_Copper_Plane_1.gbr
  407. DItemRevisionGUID=
  408. [GeneratedDocument12]
  409. DocumentPath=Project Outputs for Camera_Box_RK3562\Gerber\Camera_Box_RK3562_Copper_Plane_2.gbr
  410. DItemRevisionGUID=
  411. [GeneratedDocument13]
  412. DocumentPath=Project Outputs for Camera_Box_RK3562\Gerber\Camera_Box_RK3562_Copper_Plane_3.gbr
  413. DItemRevisionGUID=
  414. [GeneratedDocument14]
  415. DocumentPath=Project Outputs for Camera_Box_RK3562\Gerber\Camera_Box_RK3562_Copper_Signal_1.gbr
  416. DItemRevisionGUID=
  417. [GeneratedDocument15]
  418. DocumentPath=Project Outputs for Camera_Box_RK3562\Gerber\Camera_Box_RK3562_Copper_Signal_Bot.gbr
  419. DItemRevisionGUID=
  420. [GeneratedDocument16]
  421. DocumentPath=Project Outputs for Camera_Box_RK3562\Gerber\Camera_Box_RK3562_Copper_Signal_Top.gbr
  422. DItemRevisionGUID=
  423. [GeneratedDocument17]
  424. DocumentPath=Project Outputs for Camera_Box_RK3562\Gerber\Camera_Box_RK3562_Drawing_1.gbr
  425. DItemRevisionGUID=
  426. [GeneratedDocument18]
  427. DocumentPath=Project Outputs for Camera_Box_RK3562\Gerber\Camera_Box_RK3562_Drillmap_1.gbr
  428. DItemRevisionGUID=
  429. [GeneratedDocument19]
  430. DocumentPath=Project Outputs for Camera_Box_RK3562\Gerber\Camera_Box_RK3562_Keep-out.gbr
  431. DItemRevisionGUID=
  432. [GeneratedDocument20]
  433. DocumentPath=Project Outputs for Camera_Box_RK3562\Gerber\Camera_Box_RK3562_Legend_Bot.gbr
  434. DItemRevisionGUID=
  435. [GeneratedDocument21]
  436. DocumentPath=Project Outputs for Camera_Box_RK3562\Gerber\Camera_Box_RK3562_Legend_Top.gbr
  437. DItemRevisionGUID=
  438. [GeneratedDocument22]
  439. DocumentPath=Project Outputs for Camera_Box_RK3562\Gerber\Camera_Box_RK3562_Pads_Bot.gbr
  440. DItemRevisionGUID=
  441. [GeneratedDocument23]
  442. DocumentPath=Project Outputs for Camera_Box_RK3562\Gerber\Camera_Box_RK3562_Pads_Top.gbr
  443. DItemRevisionGUID=
  444. [GeneratedDocument24]
  445. DocumentPath=Project Outputs for Camera_Box_RK3562\Gerber\Camera_Box_RK3562_Paste_Bot.gbr
  446. DItemRevisionGUID=
  447. [GeneratedDocument25]
  448. DocumentPath=Project Outputs for Camera_Box_RK3562\Gerber\Camera_Box_RK3562_Paste_Top.gbr
  449. DItemRevisionGUID=
  450. [GeneratedDocument26]
  451. DocumentPath=Project Outputs for Camera_Box_RK3562\Gerber\Camera_Box_RK3562_Soldermask_Bot.gbr
  452. DItemRevisionGUID=
  453. [GeneratedDocument27]
  454. DocumentPath=Project Outputs for Camera_Box_RK3562\Gerber\Camera_Box_RK3562_Soldermask_Top.gbr
  455. DItemRevisionGUID=
  456. [GeneratedDocument28]
  457. DocumentPath=Project Outputs for Camera_Box_RK3562\Design Rule Check - Camera_Box_RK3562.html
  458. DItemRevisionGUID=
  459. [Configuration1]
  460. Name=Sources
  461. ParameterCount=0
  462. ConstraintFileCount=0
  463. ReleaseItemId=
  464. Variant=[No Variations]
  465. OutputJobsCount=0
  466. ContentTypeGUID=CB6F2064-E317-11DF-B822-12313F0024A2
  467. ConfigurationType=Source
  468. [Generic_EDE]
  469. OutputDir=
  470. [OutputGroup1]
  471. Name=Netlist Outputs
  472. Description=
  473. TargetPrinter=Microsoft Print to PDF
  474. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  475. OutputType1=CadnetixNetlist
  476. OutputName1=Cadnetix Netlist
  477. OutputDocumentPath1=
  478. OutputVariantName1=
  479. OutputDefault1=0
  480. OutputType2=CalayNetlist
  481. OutputName2=Calay Netlist
  482. OutputDocumentPath2=
  483. OutputVariantName2=
  484. OutputDefault2=0
  485. OutputType3=EDIF
  486. OutputName3=EDIF for PCB
  487. OutputDocumentPath3=
  488. OutputVariantName3=
  489. OutputDefault3=0
  490. OutputType4=EESofNetlist
  491. OutputName4=EESof Netlist
  492. OutputDocumentPath4=
  493. OutputVariantName4=
  494. OutputDefault4=0
  495. OutputType5=IntergraphNetlist
  496. OutputName5=Intergraph Netlist
  497. OutputDocumentPath5=
  498. OutputVariantName5=
  499. OutputDefault5=0
  500. OutputType6=MentorBoardStationNetlist
  501. OutputName6=Mentor BoardStation Netlist
  502. OutputDocumentPath6=
  503. OutputVariantName6=
  504. OutputDefault6=0
  505. OutputType7=MultiWire
  506. OutputName7=MultiWire
  507. OutputDocumentPath7=
  508. OutputVariantName7=
  509. OutputDefault7=0
  510. OutputType8=OrCadPCB2Netlist
  511. OutputName8=Orcad/PCB2 Netlist
  512. OutputDocumentPath8=
  513. OutputVariantName8=
  514. OutputDefault8=0
  515. OutputType9=PADSNetlist
  516. OutputName9=PADS ASCII Netlist
  517. OutputDocumentPath9=
  518. OutputVariantName9=
  519. OutputDefault9=0
  520. OutputType10=Pcad
  521. OutputName10=Pcad for PCB
  522. OutputDocumentPath10=
  523. OutputVariantName10=
  524. OutputDefault10=0
  525. OutputType11=PCADNetlist
  526. OutputName11=PCAD Netlist
  527. OutputDocumentPath11=
  528. OutputVariantName11=
  529. OutputDefault11=0
  530. OutputType12=PCADnltNetlist
  531. OutputName12=PCADnlt Netlist
  532. OutputDocumentPath12=
  533. OutputVariantName12=
  534. OutputDefault12=0
  535. OutputType13=Protel2Netlist
  536. OutputName13=Protel2 Netlist
  537. OutputDocumentPath13=
  538. OutputVariantName13=
  539. OutputDefault13=0
  540. OutputType14=ProtelNetlist
  541. OutputName14=Protel
  542. OutputDocumentPath14=
  543. OutputVariantName14=
  544. OutputDefault14=0
  545. OutputType15=RacalNetlist
  546. OutputName15=Racal Netlist
  547. OutputDocumentPath15=
  548. OutputVariantName15=
  549. OutputDefault15=0
  550. OutputType16=RINFNetlist
  551. OutputName16=RINF Netlist
  552. OutputDocumentPath16=
  553. OutputVariantName16=
  554. OutputDefault16=0
  555. OutputType17=SciCardsNetlist
  556. OutputName17=SciCards Netlist
  557. OutputDocumentPath17=
  558. OutputVariantName17=
  559. OutputDefault17=0
  560. OutputType18=TangoNetlist
  561. OutputName18=Tango Netlist
  562. OutputDocumentPath18=
  563. OutputVariantName18=
  564. OutputDefault18=0
  565. OutputType19=TelesisNetlist
  566. OutputName19=Telesis Netlist
  567. OutputDocumentPath19=
  568. OutputVariantName19=
  569. OutputDefault19=0
  570. OutputType20=WireListNetlist
  571. OutputName20=WireList Netlist
  572. OutputDocumentPath20=
  573. OutputVariantName20=
  574. OutputDefault20=0
  575. OutputType21=XSpiceNetlist
  576. OutputName21=Mixed Sim Netlist
  577. OutputDocumentPath21=
  578. OutputVariantName21=
  579. OutputDefault21=0
  580. [OutputGroup2]
  581. Name=Simulator Outputs
  582. Description=
  583. TargetPrinter=MF230 Series
  584. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  585. OutputType1=AdvSimNetlist
  586. OutputName1=Mixed Sim
  587. OutputDocumentPath1=
  588. OutputVariantName1=
  589. OutputDefault1=0
  590. [OutputGroup3]
  591. Name=Documentation Outputs
  592. Description=
  593. TargetPrinter=Adobe PDF
  594. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=0
  595. OutputType1=Composite
  596. OutputName1=Composite Drawing
  597. OutputDocumentPath1=
  598. OutputVariantName1=[No Variations]
  599. OutputDefault1=0
  600. 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=0|PaperKind=Letter|PaperIndex=1
  601. Configuration1_Name1=OutputConfigurationParameter1
  602. Configuration1_Item1=DesignatorDisplayMode=Physical|PrintArea=DesignExtent|PrintAreaLowerLeftCornerX=0|PrintAreaLowerLeftCornerY=0|PrintAreaUpperRightCornerX=0|PrintAreaUpperRightCornerY=0|Record=PcbPrintView|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
  603. Configuration1_Name2=OutputConfigurationParameter2
  604. Configuration1_Item2=IncludeBoardCutouts=False|IncludeBottomLayerComponents=True|IncludeMultiLayerComponents=True|IncludeTopLayerComponents=True|IncludeViewports=True|Index=0|Mirror=False|Name=Multilayer Composite Print|PadNumberFontSize=14|Record=PcbPrintOut|ShowHoles=False|ShowPadNets=False|ShowPadNumbers=False|SubstituteFonts=False|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
  605. Configuration1_Name3=OutputConfigurationParameter3
  606. Configuration1_Item3=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
  607. Configuration1_Name4=OutputConfigurationParameter4
  608. Configuration1_Item4=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
  609. Configuration1_Name5=OutputConfigurationParameter5
  610. Configuration1_Item5=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MidLayer1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
  611. Configuration1_Name6=OutputConfigurationParameter6
  612. Configuration1_Item6=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
  613. Configuration1_Name7=OutputConfigurationParameter7
  614. Configuration1_Item7=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MultiLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
  615. Configuration1_Name8=OutputConfigurationParameter8
  616. Configuration1_Item8=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
  617. Configuration1_Name9=OutputConfigurationParameter9
  618. Configuration1_Item9=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=KeepOutLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
  619. Configuration1_Name10=OutputConfigurationParameter10
  620. Configuration1_Item10=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
  621. Configuration1_Name11=OutputConfigurationParameter11
  622. Configuration1_Item11=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical2|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
  623. Configuration1_Name12=OutputConfigurationParameter12
  624. Configuration1_Item12=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical3|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
  625. Configuration1_Name13=OutputConfigurationParameter13
  626. Configuration1_Item13=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical4|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
  627. Configuration1_Name14=OutputConfigurationParameter14
  628. Configuration1_Item14=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical5|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
  629. Configuration1_Name15=OutputConfigurationParameter15
  630. Configuration1_Item15=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical6|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
  631. Configuration1_Name16=OutputConfigurationParameter16
  632. Configuration1_Item16=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical7|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
  633. Configuration1_Name17=OutputConfigurationParameter17
  634. Configuration1_Item17=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical8|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
  635. Configuration1_Name18=OutputConfigurationParameter18
  636. Configuration1_Item18=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical12|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
  637. Configuration1_Name19=OutputConfigurationParameter19
  638. Configuration1_Item19=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical13|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
  639. Configuration1_Name20=OutputConfigurationParameter20
  640. Configuration1_Item20=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical14|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
  641. Configuration1_Name21=OutputConfigurationParameter21
  642. Configuration1_Item21=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical15|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
  643. OutputType2=PCB 3D Print
  644. OutputName2=PCB 3D Print
  645. OutputDocumentPath2=
  646. OutputVariantName2=[No Variations]
  647. OutputDefault2=0
  648. 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
  649. OutputType3=PCB 3D Video
  650. OutputName3=PCB 3D Video
  651. OutputDocumentPath3=
  652. OutputVariantName3=[No Variations]
  653. OutputDefault3=0
  654. 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
  655. OutputType4=PCB Print
  656. OutputName4=PCB Prints
  657. OutputDocumentPath4=
  658. OutputVariantName4=[No Variations]
  659. OutputDefault4=0
  660. 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
  661. OutputType5=PCBDrawing
  662. OutputName5=Draftsman
  663. OutputDocumentPath5=
  664. OutputVariantName5=[No Variations]
  665. OutputDefault5=0
  666. 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
  667. OutputType6=PCBLIB Print
  668. OutputName6=PCBLIB Prints
  669. OutputDocumentPath6=
  670. OutputVariantName6=[No Variations]
  671. OutputDefault6=0
  672. 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
  673. OutputType7=PDF3D
  674. OutputName7=PDF3D
  675. OutputDocumentPath7=
  676. OutputVariantName7=[No Variations]
  677. OutputDefault7=0
  678. 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
  679. OutputType8=PDF3D MBA
  680. OutputName8=PDF3D MBA
  681. OutputDocumentPath8=
  682. OutputVariantName8=
  683. OutputDefault8=0
  684. 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
  685. OutputType9=Report Print
  686. OutputName9=Report Prints
  687. OutputDocumentPath9=
  688. OutputVariantName9=
  689. OutputDefault9=0
  690. 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
  691. OutputType10=Schematic Print
  692. OutputName10=Schematic Prints
  693. OutputDocumentPath10=
  694. OutputVariantName10=
  695. OutputDefault10=0
  696. PageOptions10=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.12|XCorrection=1.00|YCorrection=1.00|PrintKind=0|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PrintScaleName=PrintFitPageWidth|PaperKind=A3|PaperIndex=8
  697. Configuration10_Name1=OutputConfigurationParameter1
  698. 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=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\GPS.SchDoc
  699. OutputType11=SimView Print
  700. OutputName11=SimView Prints
  701. OutputDocumentPath11=
  702. OutputVariantName11=
  703. OutputDefault11=0
  704. 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
  705. OutputType12=Harness Layout Drawing Print
  706. OutputName12=Harness Layout Drawing Prints
  707. OutputDocumentPath12=
  708. OutputVariantName12=
  709. OutputDefault12=0
  710. 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
  711. OutputType13=Harness Wiring Diagram Print
  712. OutputName13=Harness Wiring Diagram Prints
  713. OutputDocumentPath13=
  714. OutputVariantName13=
  715. OutputDefault13=0
  716. 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
  717. [OutputGroup4]
  718. Name=Assembly Outputs
  719. Description=
  720. TargetPrinter=Microsoft Print to PDF
  721. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  722. OutputType1=Assembly
  723. OutputName1=Assembly Drawings
  724. OutputDocumentPath1=
  725. OutputVariantName1=[No Variations]
  726. OutputDefault1=0
  727. 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
  728. OutputType2=Pick Place
  729. OutputName2=Generates pick and place files
  730. OutputDocumentPath2=
  731. OutputVariantName2=[No Variations]
  732. OutputDefault2=0
  733. OutputType3=Test Points For Assembly
  734. OutputName3=Test Point Report
  735. OutputDocumentPath3=
  736. OutputVariantName3=[No Variations]
  737. OutputDefault3=0
  738. [OutputGroup5]
  739. Name=Fabrication Outputs
  740. Description=
  741. TargetPrinter=Microsoft Print to PDF
  742. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  743. OutputType1=Board Stack Report
  744. OutputName1=Report Board Stack
  745. OutputDocumentPath1=
  746. OutputVariantName1=
  747. OutputDefault1=0
  748. 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
  749. OutputType2=CompositeDrill
  750. OutputName2=Composite Drill Drawing
  751. OutputDocumentPath2=
  752. OutputVariantName2=[No Variations]
  753. OutputDefault2=0
  754. 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
  755. OutputType3=Drill
  756. OutputName3=Drill Drawing/Guides
  757. OutputDocumentPath3=
  758. OutputVariantName3=[No Variations]
  759. OutputDefault3=0
  760. 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
  761. OutputType4=Final
  762. OutputName4=Final Artwork Prints
  763. OutputDocumentPath4=
  764. OutputVariantName4=[No Variations]
  765. OutputDefault4=0
  766. 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
  767. OutputType5=Gerber
  768. OutputName5=Gerber Files
  769. OutputDocumentPath5=
  770. OutputVariantName5=[No Variations]
  771. OutputDefault5=0
  772. OutputType6=Gerber X2
  773. OutputName6=Gerber X2 Files
  774. OutputDocumentPath6=
  775. OutputVariantName6=[No Variations]
  776. OutputDefault6=0
  777. OutputType7=IPC2581
  778. OutputName7=IPC-2581 Files
  779. OutputDocumentPath7=
  780. OutputVariantName7=[No Variations]
  781. OutputDefault7=0
  782. OutputType8=Mask
  783. OutputName8=Solder/Paste Mask Prints
  784. OutputDocumentPath8=
  785. OutputVariantName8=[No Variations]
  786. OutputDefault8=0
  787. 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
  788. OutputType9=NC Drill
  789. OutputName9=NC Drill Files
  790. OutputDocumentPath9=
  791. OutputVariantName9=
  792. OutputDefault9=0
  793. OutputType10=ODB
  794. OutputName10=ODB++ Files
  795. OutputDocumentPath10=
  796. OutputVariantName10=[No Variations]
  797. OutputDefault10=0
  798. OutputType11=Plane
  799. OutputName11=Power-Plane Prints
  800. OutputDocumentPath11=
  801. OutputVariantName11=[No Variations]
  802. OutputDefault11=0
  803. 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
  804. OutputType12=Test Points
  805. OutputName12=Test Point Report
  806. OutputDocumentPath12=
  807. OutputVariantName12=
  808. OutputDefault12=0
  809. [OutputGroup6]
  810. Name=Report Outputs
  811. Description=
  812. TargetPrinter=Microsoft Print to PDF
  813. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  814. OutputType1=BOM_PartType
  815. OutputName1=Bill of Materials
  816. OutputDocumentPath1=
  817. OutputVariantName1=[No Variations]
  818. OutputDefault1=0
  819. 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
  820. OutputType2=ComponentCrossReference
  821. OutputName2=Component Cross Reference Report
  822. OutputDocumentPath2=
  823. OutputVariantName2=[No Variations]
  824. OutputDefault2=0
  825. OutputType3=ReportHierarchy
  826. OutputName3=Report Project Hierarchy
  827. OutputDocumentPath3=
  828. OutputVariantName3=[No Variations]
  829. OutputDefault3=0
  830. OutputType4=Script
  831. OutputName4=Script Output
  832. OutputDocumentPath4=
  833. OutputVariantName4=[No Variations]
  834. OutputDefault4=0
  835. OutputType5=SimpleBOM
  836. OutputName5=Simple BOM
  837. OutputDocumentPath5=
  838. OutputVariantName5=[No Variations]
  839. OutputDefault5=0
  840. OutputType6=SinglePinNetReporter
  841. OutputName6=Report Single Pin Nets
  842. OutputDocumentPath6=
  843. OutputVariantName6=[No Variations]
  844. OutputDefault6=0
  845. OutputType7=Export Comments
  846. OutputName7=Export Comments
  847. OutputDocumentPath7=
  848. OutputVariantName7=[No Variations]
  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=BOM_ReportCompare
  852. OutputName8=BOM Compare
  853. OutputDocumentPath8=
  854. OutputVariantName8=[No Variations]
  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=Project History
  858. OutputName9=Project History
  859. OutputDocumentPath9=
  860. OutputVariantName9=[No Variations]
  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. [OutputGroup7]
  864. Name=Other Outputs
  865. Description=
  866. TargetPrinter=Microsoft Print to PDF
  867. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  868. OutputType1=Text Print
  869. OutputName1=Text Print
  870. OutputDocumentPath1=
  871. OutputVariantName1=
  872. OutputDefault1=0
  873. 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
  874. OutputType2=Text Print
  875. OutputName2=Text Print
  876. OutputDocumentPath2=
  877. OutputVariantName2=
  878. OutputDefault2=0
  879. 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=A4|PaperIndex=9
  880. OutputType3=Text Print
  881. OutputName3=Text Print
  882. OutputDocumentPath3=
  883. OutputVariantName3=
  884. OutputDefault3=0
  885. 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=A4|PaperIndex=9
  886. OutputType4=Text Print
  887. OutputName4=Text Print
  888. OutputDocumentPath4=
  889. OutputVariantName4=
  890. OutputDefault4=0
  891. 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=A4|PaperIndex=9
  892. OutputType5=Text Print
  893. OutputName5=Text Print
  894. OutputDocumentPath5=
  895. OutputVariantName5=
  896. OutputDefault5=0
  897. 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=A4|PaperIndex=9
  898. OutputType6=Text Print
  899. OutputName6=Text Print
  900. OutputDocumentPath6=
  901. OutputVariantName6=
  902. OutputDefault6=0
  903. 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=A4|PaperIndex=9
  904. OutputType7=Text Print
  905. OutputName7=Text Print
  906. OutputDocumentPath7=
  907. OutputVariantName7=
  908. OutputDefault7=0
  909. 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=A4|PaperIndex=9
  910. OutputType8=Text Print
  911. OutputName8=Text Print
  912. OutputDocumentPath8=
  913. OutputVariantName8=
  914. OutputDefault8=0
  915. 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=A4|PaperIndex=9
  916. OutputType9=Text Print
  917. OutputName9=Text Print
  918. OutputDocumentPath9=
  919. OutputVariantName9=
  920. OutputDefault9=0
  921. 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=A4|PaperIndex=9
  922. OutputType10=Text Print
  923. OutputName10=Text Print
  924. OutputDocumentPath10=
  925. OutputVariantName10=
  926. OutputDefault10=0
  927. 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=A4|PaperIndex=9
  928. OutputType11=Text Print
  929. OutputName11=Text Print
  930. OutputDocumentPath11=
  931. OutputVariantName11=
  932. OutputDefault11=0
  933. 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=A4|PaperIndex=9
  934. OutputType12=Text Print
  935. OutputName12=Text Print
  936. OutputDocumentPath12=
  937. OutputVariantName12=
  938. OutputDefault12=0
  939. 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=A4|PaperIndex=9
  940. OutputType13=Text Print
  941. OutputName13=Text Print
  942. OutputDocumentPath13=
  943. OutputVariantName13=
  944. OutputDefault13=0
  945. 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=A4|PaperIndex=9
  946. OutputType14=Text Print
  947. OutputName14=Text Print
  948. OutputDocumentPath14=
  949. OutputVariantName14=
  950. OutputDefault14=0
  951. 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=A4|PaperIndex=9
  952. OutputType15=Text Print
  953. OutputName15=Text Print
  954. OutputDocumentPath15=
  955. OutputVariantName15=
  956. OutputDefault15=0
  957. 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=A4|PaperIndex=9
  958. OutputType16=Text Print
  959. OutputName16=Text Print
  960. OutputDocumentPath16=
  961. OutputVariantName16=
  962. OutputDefault16=0
  963. 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=A4|PaperIndex=9
  964. OutputType17=Text Print
  965. OutputName17=Text Print
  966. OutputDocumentPath17=
  967. OutputVariantName17=
  968. OutputDefault17=0
  969. 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=A4|PaperIndex=9
  970. [OutputGroup8]
  971. Name=Validation Outputs
  972. Description=
  973. TargetPrinter=Microsoft Print to PDF
  974. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  975. OutputType1=BOM_Violations
  976. OutputName1=BOM Checks Report
  977. OutputDocumentPath1=
  978. OutputVariantName1=
  979. OutputDefault1=0
  980. OutputType2=Component states check
  981. OutputName2=Server's components states check
  982. OutputDocumentPath2=
  983. OutputVariantName2=
  984. OutputDefault2=0
  985. OutputType3=Configuration compliance
  986. OutputName3=Environment configuration compliance check
  987. OutputDocumentPath3=
  988. OutputVariantName3=
  989. OutputDefault3=0
  990. OutputType4=Design Rules Check
  991. OutputName4=Design Rules Check
  992. OutputDocumentPath4=
  993. OutputVariantName4=
  994. OutputDefault4=0
  995. 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
  996. OutputType5=Differences Report
  997. OutputName5=Differences Report
  998. OutputDocumentPath5=
  999. OutputVariantName5=
  1000. OutputDefault5=0
  1001. 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
  1002. OutputType6=Electrical Rules Check
  1003. OutputName6=Electrical Rules Check
  1004. OutputDocumentPath6=
  1005. OutputVariantName6=
  1006. OutputDefault6=0
  1007. 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
  1008. OutputType7=Footprint Comparison Report
  1009. OutputName7=Footprint Comparison Report
  1010. OutputDocumentPath7=
  1011. OutputVariantName7=
  1012. OutputDefault7=0
  1013. [OutputGroup9]
  1014. Name=Export Outputs
  1015. Description=
  1016. TargetPrinter=Microsoft Print to PDF
  1017. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  1018. OutputType1=AutoCAD dwg/dxf PCB
  1019. OutputName1=AutoCAD dwg/dxf File PCB
  1020. OutputDocumentPath1=
  1021. OutputVariantName1=
  1022. OutputDefault1=0
  1023. OutputType2=AutoCAD dwg/dxf Schematic
  1024. OutputName2=AutoCAD dwg/dxf File Schematic
  1025. OutputDocumentPath2=
  1026. OutputVariantName2=
  1027. OutputDefault2=0
  1028. OutputType3=ExportIDF
  1029. OutputName3=Export IDF
  1030. OutputDocumentPath3=
  1031. OutputVariantName3=
  1032. OutputDefault3=0
  1033. OutputType4=ExportPARASOLID
  1034. OutputName4=Export PARASOLID
  1035. OutputDocumentPath4=
  1036. OutputVariantName4=[No Variations]
  1037. OutputDefault4=0
  1038. OutputType5=ExportSTEP
  1039. OutputName5=Export STEP
  1040. OutputDocumentPath5=
  1041. OutputVariantName5=[No Variations]
  1042. OutputDefault5=0
  1043. OutputType6=ExportVRML
  1044. OutputName6=Export VRML
  1045. OutputDocumentPath6=
  1046. OutputVariantName6=[No Variations]
  1047. OutputDefault6=0
  1048. OutputType7=MBAExportPARASOLID
  1049. OutputName7=Export PARASOLID
  1050. OutputDocumentPath7=
  1051. OutputVariantName7=
  1052. OutputDefault7=0
  1053. OutputType8=MBAExportSTEP
  1054. OutputName8=Export STEP
  1055. OutputDocumentPath8=
  1056. OutputVariantName8=
  1057. OutputDefault8=0
  1058. OutputType9=Save As/Export PCB
  1059. OutputName9=Save As/Export PCB
  1060. OutputDocumentPath9=
  1061. OutputVariantName9=
  1062. OutputDefault9=0
  1063. OutputType10=Save As/Export Schematic
  1064. OutputName10=Save As/Export Schematic
  1065. OutputDocumentPath10=
  1066. OutputVariantName10=
  1067. OutputDefault10=0
  1068. OutputType11=Specctra Design PCB
  1069. OutputName11=Specctra Design PCB
  1070. OutputDocumentPath11=
  1071. OutputVariantName11=
  1072. OutputDefault11=0
  1073. OutputType12=Web ReviewOutputName
  1074. OutputName12=Web Review Data
  1075. OutputDocumentPath12=
  1076. OutputVariantName12=
  1077. OutputDefault12=0
  1078. [OutputGroup10]
  1079. Name=PostProcess Outputs
  1080. Description=
  1081. TargetPrinter=Microsoft Print to PDF
  1082. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  1083. OutputType1=Copy Files
  1084. OutputName1=Copy Files
  1085. OutputDocumentPath1=
  1086. OutputVariantName1=
  1087. OutputDefault1=0
  1088. [Modification Levels]
  1089. Type1=1
  1090. Type2=1
  1091. Type3=1
  1092. Type4=1
  1093. Type5=1
  1094. Type6=1
  1095. Type7=1
  1096. Type8=1
  1097. Type9=1
  1098. Type10=1
  1099. Type11=1
  1100. Type12=1
  1101. Type13=1
  1102. Type14=1
  1103. Type15=1
  1104. Type16=1
  1105. Type17=1
  1106. Type18=1
  1107. Type19=1
  1108. Type20=1
  1109. Type21=1
  1110. Type22=1
  1111. Type23=1
  1112. Type24=1
  1113. Type25=1
  1114. Type26=1
  1115. Type27=1
  1116. Type28=1
  1117. Type29=1
  1118. Type30=1
  1119. Type31=1
  1120. Type32=1
  1121. Type33=1
  1122. Type34=1
  1123. Type35=1
  1124. Type36=1
  1125. Type37=1
  1126. Type38=1
  1127. Type39=1
  1128. Type40=1
  1129. Type41=1
  1130. Type42=1
  1131. Type43=1
  1132. Type44=1
  1133. Type45=1
  1134. Type46=1
  1135. Type47=1
  1136. Type48=1
  1137. Type49=1
  1138. Type50=1
  1139. Type51=1
  1140. Type52=1
  1141. Type53=1
  1142. Type54=1
  1143. Type55=1
  1144. Type56=1
  1145. Type57=1
  1146. Type58=1
  1147. Type59=1
  1148. Type60=1
  1149. Type61=1
  1150. Type62=1
  1151. Type63=1
  1152. Type64=1
  1153. Type65=1
  1154. Type66=1
  1155. Type67=1
  1156. Type68=1
  1157. Type69=1
  1158. Type70=1
  1159. Type71=1
  1160. Type72=1
  1161. Type73=1
  1162. Type74=1
  1163. Type75=1
  1164. Type76=1
  1165. Type77=1
  1166. Type78=1
  1167. Type79=1
  1168. Type80=1
  1169. Type81=1
  1170. Type82=1
  1171. Type83=1
  1172. Type84=1
  1173. Type85=1
  1174. Type86=1
  1175. Type87=1
  1176. Type88=1
  1177. Type89=1
  1178. Type90=1
  1179. Type91=1
  1180. Type92=1
  1181. Type93=1
  1182. Type94=1
  1183. Type95=1
  1184. Type96=1
  1185. Type97=1
  1186. Type98=1
  1187. Type99=1
  1188. Type100=1
  1189. Type101=1
  1190. Type102=1
  1191. Type103=1
  1192. Type104=1
  1193. Type105=1
  1194. Type106=1
  1195. Type107=1
  1196. Type108=1
  1197. Type109=1
  1198. Type110=1
  1199. Type111=1
  1200. Type112=1
  1201. Type113=1
  1202. Type114=1
  1203. Type115=1
  1204. Type116=1
  1205. Type117=1
  1206. Type118=1
  1207. Type119=1
  1208. Type120=1
  1209. [Difference Levels]
  1210. Type1=1
  1211. Type2=1
  1212. Type3=1
  1213. Type4=1
  1214. Type5=1
  1215. Type6=1
  1216. Type7=1
  1217. Type8=1
  1218. Type9=1
  1219. Type10=1
  1220. Type11=1
  1221. Type12=1
  1222. Type13=1
  1223. Type14=1
  1224. Type15=1
  1225. Type16=1
  1226. Type17=1
  1227. Type18=1
  1228. Type19=1
  1229. Type20=1
  1230. Type21=1
  1231. Type22=1
  1232. Type23=1
  1233. Type24=1
  1234. Type25=1
  1235. Type26=1
  1236. Type27=1
  1237. Type28=1
  1238. Type29=1
  1239. Type30=1
  1240. Type31=1
  1241. Type32=1
  1242. Type33=1
  1243. Type34=1
  1244. Type35=1
  1245. Type36=1
  1246. Type37=1
  1247. Type38=1
  1248. Type39=1
  1249. Type40=1
  1250. Type41=1
  1251. Type42=1
  1252. Type43=1
  1253. Type44=1
  1254. Type45=1
  1255. Type46=1
  1256. Type47=1
  1257. Type48=1
  1258. Type49=1
  1259. Type50=1
  1260. Type51=1
  1261. Type52=1
  1262. Type53=1
  1263. Type54=1
  1264. Type55=1
  1265. Type56=1
  1266. Type57=1
  1267. Type58=1
  1268. Type59=1
  1269. Type60=1
  1270. Type61=1
  1271. Type62=1
  1272. Type63=1
  1273. Type64=1
  1274. Type65=1
  1275. Type66=1
  1276. Type67=1
  1277. Type68=1
  1278. [Electrical Rules Check]
  1279. Type1=1
  1280. Type2=1
  1281. Type3=2
  1282. Type4=1
  1283. Type5=2
  1284. Type6=2
  1285. Type7=0
  1286. Type8=1
  1287. Type9=1
  1288. Type10=1
  1289. Type11=2
  1290. Type12=0
  1291. Type13=0
  1292. Type14=1
  1293. Type15=1
  1294. Type16=1
  1295. Type17=1
  1296. Type18=1
  1297. Type19=1
  1298. Type20=0
  1299. Type21=0
  1300. Type22=0
  1301. Type23=0
  1302. Type24=1
  1303. Type25=2
  1304. Type26=0
  1305. Type27=2
  1306. Type28=1
  1307. Type29=1
  1308. Type30=1
  1309. Type31=1
  1310. Type32=2
  1311. Type33=0
  1312. Type34=2
  1313. Type35=1
  1314. Type36=2
  1315. Type37=1
  1316. Type38=2
  1317. Type39=2
  1318. Type40=2
  1319. Type41=0
  1320. Type42=2
  1321. Type43=1
  1322. Type44=0
  1323. Type45=0
  1324. Type46=0
  1325. Type47=0
  1326. Type48=0
  1327. Type49=0
  1328. Type50=2
  1329. Type51=0
  1330. Type52=0
  1331. Type53=1
  1332. Type54=1
  1333. Type55=1
  1334. Type56=2
  1335. Type57=1
  1336. Type58=1
  1337. Type59=2
  1338. Type60=0
  1339. Type61=0
  1340. Type62=0
  1341. Type63=0
  1342. Type64=0
  1343. Type65=2
  1344. Type66=3
  1345. Type67=2
  1346. Type68=2
  1347. Type69=0
  1348. Type70=2
  1349. Type71=2
  1350. Type72=2
  1351. Type73=2
  1352. Type74=1
  1353. Type75=2
  1354. Type76=1
  1355. Type77=1
  1356. Type78=1
  1357. Type79=1
  1358. Type80=2
  1359. Type81=3
  1360. Type82=3
  1361. Type83=3
  1362. Type84=3
  1363. Type85=3
  1364. Type86=2
  1365. Type87=2
  1366. Type88=2
  1367. Type89=1
  1368. Type90=1
  1369. Type91=3
  1370. Type92=3
  1371. Type93=2
  1372. Type94=2
  1373. Type95=2
  1374. Type96=2
  1375. Type97=2
  1376. Type98=0
  1377. Type99=1
  1378. Type100=2
  1379. Type101=0
  1380. Type102=2
  1381. Type103=2
  1382. Type104=1
  1383. Type105=2
  1384. Type106=2
  1385. Type107=2
  1386. Type108=2
  1387. Type109=1
  1388. Type110=1
  1389. Type111=1
  1390. Type112=1
  1391. Type113=1
  1392. Type114=2
  1393. Type115=2
  1394. Type116=2
  1395. Type117=3
  1396. Type118=3
  1397. Type119=3
  1398. AlternateItemFail=3
  1399. Type122=2
  1400. Type123=1
  1401. Type124=1
  1402. Type125=1
  1403. Type126=1
  1404. Type127=1
  1405. [ERC Connection Matrix]
  1406. L1=NNNNNNNNNNNWNNNWW
  1407. L2=NNWNNNNWWWNWNWNWN
  1408. L3=NWEENEEEENEWNEEWN
  1409. L4=NNENNNWEENNWNENWN
  1410. L5=NNNNNNNNNNNNNNNNN
  1411. L6=NNENNNNEENNWNENWN
  1412. L7=NNEWNNWEENNWNENWN
  1413. L8=NWEENEENEEENNEENN
  1414. L9=NWEENEEEENEWNEEWW
  1415. L10=NWNNNNNENNEWNNEWN
  1416. L11=NNENNNNEEENWNENWN
  1417. L12=WWWWNWWNWWWNWWWNN
  1418. L13=NNNNNNNNNNNWNNNWW
  1419. L14=NWEENEEEENEWNEEWW
  1420. L15=NNENNNNEEENWNENWW
  1421. L16=WWWWNWWNWWWNWWWNW
  1422. L17=WNNNNNNNWNNNWWWWN
  1423. [Annotate]
  1424. SortOrder=3
  1425. SortLocation=0
  1426. ReplaceSubparts=0
  1427. MatchParameter1=Comment
  1428. MatchStrictly1=1
  1429. MatchParameter2=Library Reference
  1430. MatchStrictly2=1
  1431. PhysicalNamingFormat=$Component_$RoomName
  1432. GlobalIndexSortOrder=3
  1433. GlobalIndexSortLocation=0
  1434. [PrjClassGen]
  1435. CompClassManualEnabled=0
  1436. CompClassManualRoomEnabled=0
  1437. NetClassAutoBusEnabled=1
  1438. NetClassAutoCompEnabled=0
  1439. NetClassAutoNamedHarnessEnabled=0
  1440. NetClassManualEnabled=1
  1441. NetClassSeparateForBusSections=0
  1442. [LibraryUpdateOptions]
  1443. SelectedOnly=0
  1444. UpdateVariants=1
  1445. UpdateToLatestRevision=1
  1446. PartTypes=0
  1447. ComponentLibIdentifierKind0=Library Name And Type
  1448. ComponentLibraryIdentifier0=Camera_Box_RK3562.IntLib
  1449. ComponentDesignItemID0=2SK3018
  1450. ComponentSymbolReference0=2SK3018
  1451. ComponentUpdate0=1
  1452. ComponentIsDeviceSheet0=0
  1453. ComponentLibIdentifierKind1=Library Name And Type
  1454. ComponentLibraryIdentifier1=MKP_lib.DbLib/Components
  1455. ComponentDesignItemID1=0805CG330J500NT
  1456. ComponentSymbolReference1=CAP
  1457. ComponentUpdate1=1
  1458. ComponentIsDeviceSheet1=0
  1459. ComponentLibIdentifierKind2=Library Name And Type
  1460. ComponentLibraryIdentifier2=MKP_lib.DbLib/Components
  1461. ComponentDesignItemID2=150060YS75000
  1462. ComponentSymbolReference2=LED
  1463. ComponentUpdate2=1
  1464. ComponentIsDeviceSheet2=0
  1465. ComponentLibIdentifierKind3=Library Name And Type
  1466. ComponentLibraryIdentifier3=MKP_lib.DbLib/Components
  1467. ComponentDesignItemID3=2.D.1.270002002
  1468. ComponentSymbolReference3=XTL-4PIN
  1469. ComponentUpdate3=1
  1470. ComponentIsDeviceSheet3=0
  1471. ComponentLibIdentifierKind4=Library Name And Type
  1472. ComponentLibraryIdentifier4=MKP_lib.DbLib/Components
  1473. ComponentDesignItemID4=2SK3018
  1474. ComponentSymbolReference4=N-Channel
  1475. ComponentUpdate4=1
  1476. ComponentIsDeviceSheet4=0
  1477. ComponentLibIdentifierKind5=Library Name And Type
  1478. ComponentLibraryIdentifier5=MKP_lib.DbLib/Components
  1479. ComponentDesignItemID5=A7677S
  1480. ComponentSymbolReference5=A7677S
  1481. ComponentUpdate5=1
  1482. ComponentIsDeviceSheet5=0
  1483. ComponentLibIdentifierKind6=Library Name And Type
  1484. ComponentLibraryIdentifier6=MKP_lib.DbLib/Components
  1485. ComponentDesignItemID6=ABS07-32.768KHZ-T
  1486. ComponentSymbolReference6=XTL-2PIN
  1487. ComponentUpdate6=1
  1488. ComponentIsDeviceSheet6=0
  1489. ComponentLibIdentifierKind7=Library Name And Type
  1490. ComponentLibraryIdentifier7=MKP_lib.DbLib/Components
  1491. ComponentDesignItemID7=AC0402FR-07226KL
  1492. ComponentSymbolReference7=RES
  1493. ComponentUpdate7=1
  1494. ComponentIsDeviceSheet7=0
  1495. ComponentLibIdentifierKind8=Library Name And Type
  1496. ComponentLibraryIdentifier8=MKP_lib.DbLib/Components
  1497. ComponentDesignItemID8=AC0402FR-0725K5L
  1498. ComponentSymbolReference8=RES
  1499. ComponentUpdate8=1
  1500. ComponentIsDeviceSheet8=0
  1501. ComponentLibIdentifierKind9=Library Name And Type
  1502. ComponentLibraryIdentifier9=MKP_lib.DbLib/Components
  1503. ComponentDesignItemID9=AC0402FR-07590KL
  1504. ComponentSymbolReference9=RES
  1505. ComponentUpdate9=1
  1506. ComponentIsDeviceSheet9=0
  1507. ComponentLibIdentifierKind10=Library Name And Type
  1508. ComponentLibraryIdentifier10=MKP_lib.DbLib/Components
  1509. ComponentDesignItemID10=APCI0146-P001A
  1510. ComponentSymbolReference10=APCI0146-P001A
  1511. ComponentUpdate10=1
  1512. ComponentIsDeviceSheet10=0
  1513. ComponentLibIdentifierKind11=Library Name And Type
  1514. ComponentLibraryIdentifier11=MKP_lib.DbLib/Components
  1515. ComponentDesignItemID11=B72590D50H160
  1516. ComponentSymbolReference11=B72590D50H160
  1517. ComponentUpdate11=1
  1518. ComponentIsDeviceSheet11=0
  1519. ComponentLibIdentifierKind12=Library Name And Type
  1520. ComponentLibraryIdentifier12=MKP_lib.DbLib/Components
  1521. ComponentDesignItemID12=C0603X5R105K500NT
  1522. ComponentSymbolReference12=CAP
  1523. ComponentUpdate12=1
  1524. ComponentIsDeviceSheet12=0
  1525. ComponentLibIdentifierKind13=Library Name And Type
  1526. ComponentLibraryIdentifier13=MKP_lib.DbLib/Components
  1527. ComponentDesignItemID13=C0603X5R475K350NT
  1528. ComponentSymbolReference13=C0603X5R475K350NT
  1529. ComponentUpdate13=1
  1530. ComponentIsDeviceSheet13=0
  1531. ComponentLibIdentifierKind14=Library Name And Type
  1532. ComponentLibraryIdentifier14=MKP_lib.DbLib/Components
  1533. ComponentDesignItemID14=C0603X7R104K500NT
  1534. ComponentSymbolReference14=CAP
  1535. ComponentUpdate14=1
  1536. ComponentIsDeviceSheet14=0
  1537. ComponentLibIdentifierKind15=Library Name And Type
  1538. ComponentLibraryIdentifier15=MKP_lib.DbLib/Components
  1539. ComponentDesignItemID15=C0805X5R106K160NT
  1540. ComponentSymbolReference15=CAP
  1541. ComponentUpdate15=1
  1542. ComponentIsDeviceSheet15=0
  1543. ComponentLibIdentifierKind16=Library Name And Type
  1544. ComponentLibraryIdentifier16=MKP_lib.DbLib/Components
  1545. ComponentDesignItemID16=C1206X5R106K500NT
  1546. ComponentSymbolReference16=CAP
  1547. ComponentUpdate16=1
  1548. ComponentIsDeviceSheet16=0
  1549. ComponentLibIdentifierKind17=Library Name And Type
  1550. ComponentLibraryIdentifier17=MKP_lib.DbLib/Components
  1551. ComponentDesignItemID17=C7802-02
  1552. ComponentSymbolReference17=C7802-02
  1553. ComponentUpdate17=1
  1554. ComponentIsDeviceSheet17=0
  1555. ComponentLibIdentifierKind18=Library Name And Type
  1556. ComponentLibraryIdentifier18=MKP_lib.DbLib/Components
  1557. ComponentDesignItemID18=CBG160808U100T
  1558. ComponentSymbolReference18=FB
  1559. ComponentUpdate18=1
  1560. ComponentIsDeviceSheet18=0
  1561. ComponentLibIdentifierKind19=Library Name And Type
  1562. ComponentLibraryIdentifier19=MKP_lib.DbLib/Components
  1563. ComponentDesignItemID19=CBW100505U600T
  1564. ComponentSymbolReference19=FB
  1565. ComponentUpdate19=1
  1566. ComponentIsDeviceSheet19=0
  1567. ComponentLibIdentifierKind20=Library Name And Type
  1568. ComponentLibraryIdentifier20=MKP_lib.DbLib/Components
  1569. ComponentDesignItemID20=CC0402FRNPO9BN101
  1570. ComponentSymbolReference20=CAP
  1571. ComponentUpdate20=1
  1572. ComponentIsDeviceSheet20=0
  1573. ComponentLibIdentifierKind21=Library Name And Type
  1574. ComponentLibraryIdentifier21=MKP_lib.DbLib/Components
  1575. ComponentDesignItemID21=CC0402FRNPO9BN120
  1576. ComponentSymbolReference21=CAP
  1577. ComponentUpdate21=1
  1578. ComponentIsDeviceSheet21=0
  1579. ComponentLibIdentifierKind22=Library Name And Type
  1580. ComponentLibraryIdentifier22=MKP_lib.DbLib/Components
  1581. ComponentDesignItemID22=CC0402JRNPO9BN220
  1582. ComponentSymbolReference22=CAP
  1583. ComponentUpdate22=1
  1584. ComponentIsDeviceSheet22=0
  1585. ComponentLibIdentifierKind23=Library Name And Type
  1586. ComponentLibraryIdentifier23=MKP_lib.DbLib/Components
  1587. ComponentDesignItemID23=CC0402KRX7R7BB104
  1588. ComponentSymbolReference23=CAP
  1589. ComponentUpdate23=1
  1590. ComponentIsDeviceSheet23=0
  1591. ComponentLibIdentifierKind24=Library Name And Type
  1592. ComponentLibraryIdentifier24=MKP_lib.DbLib/Components
  1593. ComponentDesignItemID24=CC0402KRX7R9BB822
  1594. ComponentSymbolReference24=CAP
  1595. ComponentUpdate24=1
  1596. ComponentIsDeviceSheet24=0
  1597. ComponentLibIdentifierKind25=Library Name And Type
  1598. ComponentLibraryIdentifier25=MKP_lib.DbLib/Components
  1599. ComponentDesignItemID25=CC0603JRNPO9BN750
  1600. ComponentSymbolReference25=CAP
  1601. ComponentUpdate25=1
  1602. ComponentIsDeviceSheet25=0
  1603. ComponentLibIdentifierKind26=Library Name And Type
  1604. ComponentLibraryIdentifier26=MKP_lib.DbLib/Components
  1605. ComponentDesignItemID26=CC0603KRX7R9BB104
  1606. ComponentSymbolReference26=CAP
  1607. ComponentUpdate26=1
  1608. ComponentIsDeviceSheet26=0
  1609. ComponentLibIdentifierKind27=Library Name And Type
  1610. ComponentLibraryIdentifier27=MKP_lib.DbLib/Components
  1611. ComponentDesignItemID27=CC0603KRX7R9BB474
  1612. ComponentSymbolReference27=CAP
  1613. ComponentUpdate27=1
  1614. ComponentIsDeviceSheet27=0
  1615. ComponentLibIdentifierKind28=Library Name And Type
  1616. ComponentLibraryIdentifier28=MKP_lib.DbLib/Components
  1617. ComponentDesignItemID28=CC0603KRX7R9BB561
  1618. ComponentSymbolReference28=CAP
  1619. ComponentUpdate28=1
  1620. ComponentIsDeviceSheet28=0
  1621. ComponentLibIdentifierKind29=Library Name And Type
  1622. ComponentLibraryIdentifier29=MKP_lib.DbLib/Components
  1623. ComponentDesignItemID29=CC0603KRX7R9BB563
  1624. ComponentSymbolReference29=CAP
  1625. ComponentUpdate29=1
  1626. ComponentIsDeviceSheet29=0
  1627. ComponentLibIdentifierKind30=Library Name And Type
  1628. ComponentLibraryIdentifier30=MKP_lib.DbLib/Components
  1629. ComponentDesignItemID30=CC1206KKX7R0BB104
  1630. ComponentSymbolReference30=CAP
  1631. ComponentUpdate30=1
  1632. ComponentIsDeviceSheet30=0
  1633. ComponentLibIdentifierKind31=Library Name And Type
  1634. ComponentLibraryIdentifier31=MKP_lib.DbLib/Components
  1635. ComponentDesignItemID31=CCTC TCC1206X7R225K101HT
  1636. ComponentSymbolReference31=CAP
  1637. ComponentUpdate31=1
  1638. ComponentIsDeviceSheet31=0
  1639. ComponentLibIdentifierKind32=Library Name And Type
  1640. ComponentLibraryIdentifier32=MKP_lib.DbLib/Components
  1641. ComponentDesignItemID32=CDRCH12D78BNP-220MC
  1642. ComponentSymbolReference32=DRQ125
  1643. ComponentUpdate32=1
  1644. ComponentIsDeviceSheet32=0
  1645. ComponentLibIdentifierKind33=Library Name And Type
  1646. ComponentLibraryIdentifier33=MKP_lib.DbLib/Components
  1647. ComponentDesignItemID33=CL05A105KO5NNNC
  1648. ComponentSymbolReference33=CAP
  1649. ComponentUpdate33=1
  1650. ComponentIsDeviceSheet33=0
  1651. ComponentLibIdentifierKind34=Library Name And Type
  1652. ComponentLibraryIdentifier34=MKP_lib.DbLib/Components
  1653. ComponentDesignItemID34=CL05C330JB5NNNC
  1654. ComponentSymbolReference34=CAP
  1655. ComponentUpdate34=1
  1656. ComponentIsDeviceSheet34=0
  1657. ComponentLibIdentifierKind35=Library Name And Type
  1658. ComponentLibraryIdentifier35=MKP_lib.DbLib/Components
  1659. ComponentDesignItemID35=CL10A225KQ8NNNC
  1660. ComponentSymbolReference35=CAP
  1661. ComponentUpdate35=1
  1662. ComponentIsDeviceSheet35=0
  1663. ComponentLibIdentifierKind36=Library Name And Type
  1664. ComponentLibraryIdentifier36=MKP_lib.DbLib/Components
  1665. ComponentDesignItemID36=CL10A226MQ8NRNE
  1666. ComponentSymbolReference36=CAP
  1667. ComponentUpdate36=1
  1668. ComponentIsDeviceSheet36=0
  1669. ComponentLibIdentifierKind37=Library Name And Type
  1670. ComponentLibraryIdentifier37=MKP_lib.DbLib/Components
  1671. ComponentDesignItemID37=CMFA 103F3435
  1672. ComponentSymbolReference37=NTC
  1673. ComponentUpdate37=1
  1674. ComponentIsDeviceSheet37=0
  1675. ComponentLibIdentifierKind38=Library Name And Type
  1676. ComponentLibraryIdentifier38=MKP_lib.DbLib/Components
  1677. ComponentDesignItemID38=CS3225X7R106K500NRL
  1678. ComponentSymbolReference38=CAP
  1679. ComponentUpdate38=1
  1680. ComponentIsDeviceSheet38=0
  1681. ComponentLibIdentifierKind39=Library Name And Type
  1682. ComponentLibraryIdentifier39=MKP_lib.DbLib/Components
  1683. ComponentDesignItemID39=CSD19538Q3A
  1684. ComponentSymbolReference39=Mosfet N-Chanel
  1685. ComponentUpdate39=1
  1686. ComponentIsDeviceSheet39=0
  1687. ComponentLibIdentifierKind40=Library Name And Type
  1688. ComponentLibraryIdentifier40=MKP_lib.DbLib/Components
  1689. ComponentDesignItemID40=D-DMR009PM-D002
  1690. ComponentSymbolReference40=D-DMR009PM-D002
  1691. ComponentUpdate40=1
  1692. ComponentIsDeviceSheet40=0
  1693. ComponentLibIdentifierKind41=Library Name And Type
  1694. ComponentLibraryIdentifier41=MKP_lib.DbLib/Components
  1695. ComponentDesignItemID41=DLM0NSN900HY2D
  1696. ComponentSymbolReference41=Common Mode Filters
  1697. ComponentUpdate41=1
  1698. ComponentIsDeviceSheet41=0
  1699. ComponentLibIdentifierKind42=Library Name And Type
  1700. ComponentLibraryIdentifier42=MKP_lib.DbLib/Components
  1701. ComponentDesignItemID42=EMK316BBJ476ML-T
  1702. ComponentSymbolReference42=CAP
  1703. ComponentUpdate42=1
  1704. ComponentIsDeviceSheet42=0
  1705. ComponentLibIdentifierKind43=Library Name And Type
  1706. ComponentLibraryIdentifier43=MKP_lib.DbLib/Components
  1707. ComponentDesignItemID43=EMK325ABJ107MM-T
  1708. ComponentSymbolReference43=CAP
  1709. ComponentUpdate43=1
  1710. ComponentIsDeviceSheet43=0
  1711. ComponentLibIdentifierKind44=Library Name And Type
  1712. ComponentLibraryIdentifier44=MKP_lib.DbLib/Components
  1713. ComponentDesignItemID44=ESD5Z5V0
  1714. ComponentSymbolReference44=TVS
  1715. ComponentUpdate44=1
  1716. ComponentIsDeviceSheet44=0
  1717. ComponentLibIdentifierKind45=Library Name And Type
  1718. ComponentLibraryIdentifier45=MKP_lib.DbLib/Components
  1719. ComponentDesignItemID45=ETA3409S2F
  1720. ComponentSymbolReference45=ETA3409S2F
  1721. ComponentUpdate45=1
  1722. ComponentIsDeviceSheet45=0
  1723. ComponentLibIdentifierKind46=Library Name And Type
  1724. ComponentLibraryIdentifier46=MKP_lib.DbLib/Components
  1725. ComponentDesignItemID46=FCC0402B681K500AT
  1726. ComponentSymbolReference46=CAP
  1727. ComponentUpdate46=1
  1728. ComponentIsDeviceSheet46=0
  1729. ComponentLibIdentifierKind47=Library Name And Type
  1730. ComponentLibraryIdentifier47=MKP_lib.DbLib/Components
  1731. ComponentDesignItemID47=FN21N100J500PAG
  1732. ComponentSymbolReference47=CAP
  1733. ComponentUpdate47=1
  1734. ComponentIsDeviceSheet47=0
  1735. ComponentLibIdentifierKind48=Library Name And Type
  1736. ComponentLibraryIdentifier48=MKP_lib.DbLib/Components
  1737. ComponentDesignItemID48=HNB09A05
  1738. ComponentSymbolReference48=BUZZER
  1739. ComponentUpdate48=1
  1740. ComponentIsDeviceSheet48=0
  1741. ComponentLibIdentifierKind49=Library Name And Type
  1742. ComponentLibraryIdentifier49=MKP_lib.DbLib/Components
  1743. ComponentDesignItemID49=HR911105A
  1744. ComponentSymbolReference49=HR911105A
  1745. ComponentUpdate49=1
  1746. ComponentIsDeviceSheet49=0
  1747. ComponentLibIdentifierKind50=Library Name And Type
  1748. ComponentLibraryIdentifier50=MKP_lib.DbLib/Components
  1749. ComponentDesignItemID50=JUMP-2.0-4PIN-FM-TH
  1750. ComponentSymbolReference50=CON-4PIN
  1751. ComponentUpdate50=1
  1752. ComponentIsDeviceSheet50=0
  1753. ComponentLibIdentifierKind51=Library Name And Type
  1754. ComponentLibraryIdentifier51=MKP_lib.DbLib/Components
  1755. ComponentDesignItemID51=KH-IPEX-K501-29
  1756. ComponentSymbolReference51=KH-IPEX-K501-29
  1757. ComponentUpdate51=1
  1758. ComponentIsDeviceSheet51=0
  1759. ComponentLibIdentifierKind52=Library Name And Type
  1760. ComponentLibraryIdentifier52=MKP_lib.DbLib/Components
  1761. ComponentDesignItemID52=LBAT54CLT1G
  1762. ComponentSymbolReference52=DIODE-3
  1763. ComponentUpdate52=1
  1764. ComponentIsDeviceSheet52=0
  1765. ComponentLibIdentifierKind53=Library Name And Type
  1766. ComponentLibraryIdentifier53=MKP_lib.DbLib/Components
  1767. ComponentDesignItemID53=LBSS139LT1G
  1768. ComponentSymbolReference53=N-Channel
  1769. ComponentUpdate53=1
  1770. ComponentIsDeviceSheet53=0
  1771. ComponentLibIdentifierKind54=Library Name And Type
  1772. ComponentLibraryIdentifier54=MKP_lib.DbLib/Components
  1773. ComponentDesignItemID54=LK8563T
  1774. ComponentSymbolReference54=LK8563T
  1775. ComponentUpdate54=1
  1776. ComponentIsDeviceSheet54=0
  1777. ComponentLibIdentifierKind55=Library Name And Type
  1778. ComponentLibraryIdentifier55=MKP_lib.DbLib/Components
  1779. ComponentDesignItemID55=LM3481MMX/NOPB
  1780. ComponentSymbolReference55=LM3481MMX/NOPB
  1781. ComponentUpdate55=1
  1782. ComponentIsDeviceSheet55=0
  1783. ComponentLibIdentifierKind56=Library Name And Type
  1784. ComponentLibraryIdentifier56=MKP_lib.DbLib/Components
  1785. ComponentDesignItemID56=LM393DR
  1786. ComponentSymbolReference56=LM358
  1787. ComponentUpdate56=1
  1788. ComponentIsDeviceSheet56=0
  1789. ComponentLibIdentifierKind57=Library Name And Type
  1790. ComponentLibraryIdentifier57=MKP_lib.DbLib/Components
  1791. ComponentDesignItemID57=LM-AZ6118-01F
  1792. ComponentSymbolReference57=TVS
  1793. ComponentUpdate57=1
  1794. ComponentIsDeviceSheet57=0
  1795. ComponentLibIdentifierKind58=Library Name And Type
  1796. ComponentLibraryIdentifier58=MKP_lib.DbLib/Components
  1797. ComponentDesignItemID58=LMR14050SDDAR
  1798. ComponentSymbolReference58=LMR14050SDDAR
  1799. ComponentUpdate58=1
  1800. ComponentIsDeviceSheet58=0
  1801. ComponentLibIdentifierKind59=Library Name And Type
  1802. ComponentLibraryIdentifier59=MKP_lib.DbLib/Components
  1803. ComponentDesignItemID59=M6110-01
  1804. ComponentSymbolReference59=M6110-01
  1805. ComponentUpdate59=1
  1806. ComponentIsDeviceSheet59=0
  1807. ComponentLibIdentifierKind60=Library Name And Type
  1808. ComponentLibraryIdentifier60=MKP_lib.DbLib/Components
  1809. ComponentDesignItemID60=M7
  1810. ComponentSymbolReference60=Diode
  1811. ComponentUpdate60=1
  1812. ComponentIsDeviceSheet60=0
  1813. ComponentLibIdentifierKind61=Library Name And Type
  1814. ComponentLibraryIdentifier61=MKP_lib.DbLib/Components
  1815. ComponentDesignItemID61=MAX3232CDR
  1816. ComponentSymbolReference61=Max3232
  1817. ComponentUpdate61=1
  1818. ComponentIsDeviceSheet61=0
  1819. ComponentLibIdentifierKind62=Library Name And Type
  1820. ComponentLibraryIdentifier62=MKP_lib.DbLib/Components
  1821. ComponentDesignItemID62=MMBT3904-TP
  1822. ComponentSymbolReference62=NPN
  1823. ComponentUpdate62=1
  1824. ComponentIsDeviceSheet62=0
  1825. ComponentLibIdentifierKind63=Library Name And Type
  1826. ComponentLibraryIdentifier63=MKP_lib.DbLib/Components
  1827. ComponentDesignItemID63=MY-2016-02
  1828. ComponentSymbolReference63=CON-PIN-AA
  1829. ComponentUpdate63=1
  1830. ComponentIsDeviceSheet63=0
  1831. ComponentLibIdentifierKind64=Library Name And Type
  1832. ComponentLibraryIdentifier64=MKP_lib.DbLib/Components
  1833. ComponentDesignItemID64=NCA9555
  1834. ComponentSymbolReference64=NCA9555
  1835. ComponentUpdate64=1
  1836. ComponentIsDeviceSheet64=0
  1837. ComponentLibIdentifierKind65=Library Name And Type
  1838. ComponentLibraryIdentifier65=MKP_lib.DbLib/Components
  1839. ComponentDesignItemID65=PDS760-13
  1840. ComponentSymbolReference65=Diode_SCHOTTKY_3_pins
  1841. ComponentUpdate65=1
  1842. ComponentIsDeviceSheet65=0
  1843. ComponentLibIdentifierKind66=Library Name And Type
  1844. ComponentLibraryIdentifier66=MKP_lib.DbLib/Components
  1845. ComponentDesignItemID66=PE1206DRF7W0R015L
  1846. ComponentSymbolReference66=RES
  1847. ComponentUpdate66=1
  1848. ComponentIsDeviceSheet66=0
  1849. ComponentLibIdentifierKind67=Library Name And Type
  1850. ComponentLibraryIdentifier67=MKP_lib.DbLib/Components
  1851. ComponentDesignItemID67=PM200V-12-12-H43
  1852. ComponentSymbolReference67=CON-2X6PIN
  1853. ComponentUpdate67=1
  1854. ComponentIsDeviceSheet67=0
  1855. ComponentLibIdentifierKind68=Library Name And Type
  1856. ComponentLibraryIdentifier68=MKP_lib.DbLib/Components
  1857. ComponentDesignItemID68=PSPMAA0605H-6R8M-ANP
  1858. ComponentSymbolReference68=IND
  1859. ComponentUpdate68=1
  1860. ComponentIsDeviceSheet68=0
  1861. ComponentLibIdentifierKind69=Library Name And Type
  1862. ComponentLibraryIdentifier69=MKP_lib.DbLib/Components
  1863. ComponentDesignItemID69=PTVS5V0S1UR
  1864. ComponentSymbolReference69=TVS
  1865. ComponentUpdate69=1
  1866. ComponentIsDeviceSheet69=0
  1867. ComponentLibIdentifierKind70=Library Name And Type
  1868. ComponentLibraryIdentifier70=MKP_lib.DbLib/Components
  1869. ComponentDesignItemID70=RC0402DR-07118KL
  1870. ComponentSymbolReference70=RES
  1871. ComponentUpdate70=1
  1872. ComponentIsDeviceSheet70=0
  1873. ComponentLibIdentifierKind71=Library Name And Type
  1874. ComponentLibraryIdentifier71=MKP_lib.DbLib/Components
  1875. ComponentDesignItemID71=RC0402FR-070RL
  1876. ComponentSymbolReference71=RES
  1877. ComponentUpdate71=1
  1878. ComponentIsDeviceSheet71=0
  1879. ComponentLibIdentifierKind72=Library Name And Type
  1880. ComponentLibraryIdentifier72=MKP_lib.DbLib/Components
  1881. ComponentDesignItemID72=RC0402FR-07100KL
  1882. ComponentSymbolReference72=RES
  1883. ComponentUpdate72=1
  1884. ComponentIsDeviceSheet72=0
  1885. ComponentLibIdentifierKind73=Library Name And Type
  1886. ComponentLibraryIdentifier73=MKP_lib.DbLib/Components
  1887. ComponentDesignItemID73=RC0402FR-07100RL
  1888. ComponentSymbolReference73=RES
  1889. ComponentUpdate73=1
  1890. ComponentIsDeviceSheet73=0
  1891. ComponentLibIdentifierKind74=Library Name And Type
  1892. ComponentLibraryIdentifier74=MKP_lib.DbLib/Components
  1893. ComponentDesignItemID74=RC0402FR-07105KL
  1894. ComponentSymbolReference74=RES
  1895. ComponentUpdate74=1
  1896. ComponentIsDeviceSheet74=0
  1897. ComponentLibIdentifierKind75=Library Name And Type
  1898. ComponentLibraryIdentifier75=MKP_lib.DbLib/Components
  1899. ComponentDesignItemID75=RC0402FR-0710KL
  1900. ComponentSymbolReference75=RES
  1901. ComponentUpdate75=1
  1902. ComponentIsDeviceSheet75=0
  1903. ComponentLibIdentifierKind76=Library Name And Type
  1904. ComponentLibraryIdentifier76=MKP_lib.DbLib/Components
  1905. ComponentDesignItemID76=RC0402FR-0710RL
  1906. ComponentSymbolReference76=RES
  1907. ComponentUpdate76=1
  1908. ComponentIsDeviceSheet76=0
  1909. ComponentLibIdentifierKind77=Library Name And Type
  1910. ComponentLibraryIdentifier77=MKP_lib.DbLib/Components
  1911. ComponentDesignItemID77=RC0402FR-0712KL
  1912. ComponentSymbolReference77=RES
  1913. ComponentUpdate77=1
  1914. ComponentIsDeviceSheet77=0
  1915. ComponentLibIdentifierKind78=Library Name And Type
  1916. ComponentLibraryIdentifier78=MKP_lib.DbLib/Components
  1917. ComponentDesignItemID78=RC0402FR-0715KL
  1918. ComponentSymbolReference78=RES
  1919. ComponentUpdate78=1
  1920. ComponentIsDeviceSheet78=0
  1921. ComponentLibIdentifierKind79=Library Name And Type
  1922. ComponentLibraryIdentifier79=MKP_lib.DbLib/Components
  1923. ComponentDesignItemID79=RC0402FR-071K2L
  1924. ComponentSymbolReference79=RES
  1925. ComponentUpdate79=1
  1926. ComponentIsDeviceSheet79=0
  1927. ComponentLibIdentifierKind80=Library Name And Type
  1928. ComponentLibraryIdentifier80=MKP_lib.DbLib/Components
  1929. ComponentDesignItemID80=RC0402FR-071K5L
  1930. ComponentSymbolReference80=RES
  1931. ComponentUpdate80=1
  1932. ComponentIsDeviceSheet80=0
  1933. ComponentLibIdentifierKind81=Library Name And Type
  1934. ComponentLibraryIdentifier81=MKP_lib.DbLib/Components
  1935. ComponentDesignItemID81=RC0402FR-071K91L
  1936. ComponentSymbolReference81=RES
  1937. ComponentUpdate81=1
  1938. ComponentIsDeviceSheet81=0
  1939. ComponentLibIdentifierKind82=Library Name And Type
  1940. ComponentLibraryIdentifier82=MKP_lib.DbLib/Components
  1941. ComponentDesignItemID82=RC0402FR-071KL
  1942. ComponentSymbolReference82=RES
  1943. ComponentUpdate82=1
  1944. ComponentIsDeviceSheet82=0
  1945. ComponentLibIdentifierKind83=Library Name And Type
  1946. ComponentLibraryIdentifier83=MKP_lib.DbLib/Components
  1947. ComponentDesignItemID83=RC0402FR-071ML
  1948. ComponentSymbolReference83=RES
  1949. ComponentUpdate83=1
  1950. ComponentIsDeviceSheet83=0
  1951. ComponentLibIdentifierKind84=Library Name And Type
  1952. ComponentLibraryIdentifier84=MKP_lib.DbLib/Components
  1953. ComponentDesignItemID84=RC0402FR-07220RL
  1954. ComponentSymbolReference84=RES
  1955. ComponentUpdate84=1
  1956. ComponentIsDeviceSheet84=0
  1957. ComponentLibIdentifierKind85=Library Name And Type
  1958. ComponentLibraryIdentifier85=MKP_lib.DbLib/Components
  1959. ComponentDesignItemID85=RC0402FR-0722RL
  1960. ComponentSymbolReference85=RES
  1961. ComponentUpdate85=1
  1962. ComponentIsDeviceSheet85=0
  1963. ComponentLibIdentifierKind86=Library Name And Type
  1964. ComponentLibraryIdentifier86=MKP_lib.DbLib/Components
  1965. ComponentDesignItemID86=RC0402FR-072K2L
  1966. ComponentSymbolReference86=RES
  1967. ComponentUpdate86=1
  1968. ComponentIsDeviceSheet86=0
  1969. ComponentLibIdentifierKind87=Library Name And Type
  1970. ComponentLibraryIdentifier87=MKP_lib.DbLib/Components
  1971. ComponentDesignItemID87=RC0402FR-072K49L
  1972. ComponentSymbolReference87=RES
  1973. ComponentUpdate87=1
  1974. ComponentIsDeviceSheet87=0
  1975. ComponentLibIdentifierKind88=Library Name And Type
  1976. ComponentLibraryIdentifier88=MKP_lib.DbLib/Components
  1977. ComponentDesignItemID88=RC0402FR-0734KL
  1978. ComponentSymbolReference88=RES
  1979. ComponentUpdate88=1
  1980. ComponentIsDeviceSheet88=0
  1981. ComponentLibIdentifierKind89=Library Name And Type
  1982. ComponentLibraryIdentifier89=MKP_lib.DbLib/Components
  1983. ComponentDesignItemID89=RC0402FR-07357KL
  1984. ComponentSymbolReference89=RES
  1985. ComponentUpdate89=1
  1986. ComponentIsDeviceSheet89=0
  1987. ComponentLibIdentifierKind90=Library Name And Type
  1988. ComponentLibraryIdentifier90=MKP_lib.DbLib/Components
  1989. ComponentDesignItemID90=RC0402FR-073K3L
  1990. ComponentSymbolReference90=RES
  1991. ComponentUpdate90=1
  1992. ComponentIsDeviceSheet90=0
  1993. ComponentLibIdentifierKind91=Library Name And Type
  1994. ComponentLibraryIdentifier91=MKP_lib.DbLib/Components
  1995. ComponentDesignItemID91=RC0402FR-07470RL
  1996. ComponentSymbolReference91=RES
  1997. ComponentUpdate91=1
  1998. ComponentIsDeviceSheet91=0
  1999. ComponentLibIdentifierKind92=Library Name And Type
  2000. ComponentLibraryIdentifier92=MKP_lib.DbLib/Components
  2001. ComponentDesignItemID92=RC0402FR-0747KL
  2002. ComponentSymbolReference92=RES
  2003. ComponentUpdate92=1
  2004. ComponentIsDeviceSheet92=0
  2005. ComponentLibIdentifierKind93=Library Name And Type
  2006. ComponentLibraryIdentifier93=MKP_lib.DbLib/Components
  2007. ComponentDesignItemID93=RC0402FR-07499KL
  2008. ComponentSymbolReference93=RES
  2009. ComponentUpdate93=1
  2010. ComponentIsDeviceSheet93=0
  2011. ComponentLibIdentifierKind94=Library Name And Type
  2012. ComponentLibraryIdentifier94=MKP_lib.DbLib/Components
  2013. ComponentDesignItemID94=RC0402FR-074K7L
  2014. ComponentSymbolReference94=RES
  2015. ComponentUpdate94=1
  2016. ComponentIsDeviceSheet94=0
  2017. ComponentLibIdentifierKind95=Library Name And Type
  2018. ComponentLibraryIdentifier95=MKP_lib.DbLib/Components
  2019. ComponentDesignItemID95=RC0402FR-074R02L
  2020. ComponentSymbolReference95=RES
  2021. ComponentUpdate95=1
  2022. ComponentIsDeviceSheet95=0
  2023. ComponentLibIdentifierKind96=Library Name And Type
  2024. ComponentLibraryIdentifier96=MKP_lib.DbLib/Components
  2025. ComponentDesignItemID96=RC0402FR-0751K1L
  2026. ComponentSymbolReference96=RES
  2027. ComponentUpdate96=1
  2028. ComponentIsDeviceSheet96=0
  2029. ComponentLibIdentifierKind97=Library Name And Type
  2030. ComponentLibraryIdentifier97=MKP_lib.DbLib/Components
  2031. ComponentDesignItemID97=RC0402FR-0752K3L
  2032. ComponentSymbolReference97=RES
  2033. ComponentUpdate97=1
  2034. ComponentIsDeviceSheet97=0
  2035. ComponentLibIdentifierKind98=Library Name And Type
  2036. ComponentLibraryIdentifier98=MKP_lib.DbLib/Components
  2037. ComponentDesignItemID98=RC0402FR-075K6L
  2038. ComponentSymbolReference98=RES
  2039. ComponentUpdate98=1
  2040. ComponentIsDeviceSheet98=0
  2041. ComponentLibIdentifierKind99=Library Name And Type
  2042. ComponentLibraryIdentifier99=MKP_lib.DbLib/Components
  2043. ComponentDesignItemID99=RC0402FR-0768KL
  2044. ComponentSymbolReference99=RES
  2045. ComponentUpdate99=1
  2046. ComponentIsDeviceSheet99=0
  2047. ComponentLibIdentifierKind100=Library Name And Type
  2048. ComponentLibraryIdentifier100=MKP_lib.DbLib/Components
  2049. ComponentDesignItemID100=RC0402FR-0775RL
  2050. ComponentSymbolReference100=RES
  2051. ComponentUpdate100=1
  2052. ComponentIsDeviceSheet100=0
  2053. ComponentLibIdentifierKind101=Library Name And Type
  2054. ComponentLibraryIdentifier101=MKP_lib.DbLib/Components
  2055. ComponentDesignItemID101=RC0402FR-0784K5L
  2056. ComponentSymbolReference101=RES
  2057. ComponentUpdate101=1
  2058. ComponentIsDeviceSheet101=0
  2059. ComponentLibIdentifierKind102=Library Name And Type
  2060. ComponentLibraryIdentifier102=MKP_lib.DbLib/Components
  2061. ComponentDesignItemID102=RC0402FR-078K45L
  2062. ComponentSymbolReference102=RES
  2063. ComponentUpdate102=1
  2064. ComponentIsDeviceSheet102=0
  2065. ComponentLibIdentifierKind103=Library Name And Type
  2066. ComponentLibraryIdentifier103=MKP_lib.DbLib/Components
  2067. ComponentDesignItemID103=RI0603L000JT
  2068. ComponentSymbolReference103=RES
  2069. ComponentUpdate103=1
  2070. ComponentIsDeviceSheet103=0
  2071. ComponentLibIdentifierKind104=Library Name And Type
  2072. ComponentLibraryIdentifier104=MKP_lib.DbLib/Components
  2073. ComponentDesignItemID104=RI0603L1002FT
  2074. ComponentSymbolReference104=RES
  2075. ComponentUpdate104=1
  2076. ComponentIsDeviceSheet104=0
  2077. ComponentLibIdentifierKind105=Library Name And Type
  2078. ComponentLibraryIdentifier105=MKP_lib.DbLib/Components
  2079. ComponentDesignItemID105=RI0603L1R00FT
  2080. ComponentSymbolReference105=RES
  2081. ComponentUpdate105=1
  2082. ComponentIsDeviceSheet105=0
  2083. ComponentLibIdentifierKind106=Library Name And Type
  2084. ComponentLibraryIdentifier106=MKP_lib.DbLib/Components
  2085. ComponentDesignItemID106=RI1206L000JT
  2086. ComponentSymbolReference106=RES
  2087. ComponentUpdate106=1
  2088. ComponentIsDeviceSheet106=0
  2089. ComponentLibIdentifierKind107=Library Name And Type
  2090. ComponentLibraryIdentifier107=MKP_lib.DbLib/Components
  2091. ComponentDesignItemID107=RK3562
  2092. ComponentSymbolReference107=RK3562
  2093. ComponentUpdate107=1
  2094. ComponentIsDeviceSheet107=0
  2095. ComponentLibIdentifierKind108=Library Name And Type
  2096. ComponentLibraryIdentifier108=MKP_lib.DbLib/Components
  2097. ComponentDesignItemID108=RT1H101M0810
  2098. ComponentSymbolReference108=CAPP
  2099. ComponentUpdate108=1
  2100. ComponentIsDeviceSheet108=0
  2101. ComponentLibIdentifierKind109=Library Name And Type
  2102. ComponentLibraryIdentifier109=MKP_lib.DbLib/Components
  2103. ComponentDesignItemID109=RVT1C471M0810
  2104. ComponentSymbolReference109=CAPP
  2105. ComponentUpdate109=1
  2106. ComponentIsDeviceSheet109=0
  2107. ComponentLibIdentifierKind110=Library Name And Type
  2108. ComponentLibraryIdentifier110=MKP_lib.DbLib/Components
  2109. ComponentDesignItemID110=RVT2A100M0605
  2110. ComponentSymbolReference110=CAPP
  2111. ComponentUpdate110=1
  2112. ComponentIsDeviceSheet110=0
  2113. ComponentLibIdentifierKind111=Library Name And Type
  2114. ComponentLibraryIdentifier111=MKP_lib.DbLib/Components
  2115. ComponentDesignItemID111=S10M
  2116. ComponentSymbolReference111=Diode
  2117. ComponentUpdate111=1
  2118. ComponentIsDeviceSheet111=0
  2119. ComponentLibIdentifierKind112=Library Name And Type
  2120. ComponentLibraryIdentifier112=MKP_lib.DbLib/Components
  2121. ComponentDesignItemID112=SI2333CDS
  2122. ComponentSymbolReference112=P-Channel
  2123. ComponentUpdate112=1
  2124. ComponentIsDeviceSheet112=0
  2125. ComponentLibIdentifierKind113=Library Name And Type
  2126. ComponentLibraryIdentifier113=MKP_lib.DbLib/Components
  2127. ComponentDesignItemID113=SIM65M-C
  2128. ComponentSymbolReference113=SIM65M-C
  2129. ComponentUpdate113=1
  2130. ComponentIsDeviceSheet113=0
  2131. ComponentLibIdentifierKind114=Library Name And Type
  2132. ComponentLibraryIdentifier114=MKP_lib.DbLib/Components
  2133. ComponentDesignItemID114=SMF05CT1G-P
  2134. ComponentSymbolReference114=SMF05CT1G-P
  2135. ComponentUpdate114=1
  2136. ComponentIsDeviceSheet114=0
  2137. ComponentLibIdentifierKind115=Library Name And Type
  2138. ComponentLibraryIdentifier115=MKP_lib.DbLib/Components
  2139. ComponentDesignItemID115=SMF36A
  2140. ComponentSymbolReference115=TVS
  2141. ComponentUpdate115=1
  2142. ComponentIsDeviceSheet115=0
  2143. ComponentLibIdentifierKind116=Library Name And Type
  2144. ComponentLibraryIdentifier116=MKP_lib.DbLib/Components
  2145. ComponentDesignItemID116=SR05-04A
  2146. ComponentSymbolReference116=SR05-04A
  2147. ComponentUpdate116=1
  2148. ComponentIsDeviceSheet116=0
  2149. ComponentLibIdentifierKind117=Library Name And Type
  2150. ComponentLibraryIdentifier117=MKP_lib.DbLib/Components
  2151. ComponentDesignItemID117=SS34A
  2152. ComponentSymbolReference117=SCHOTTKY
  2153. ComponentUpdate117=1
  2154. ComponentIsDeviceSheet117=0
  2155. ComponentLibIdentifierKind118=Library Name And Type
  2156. ComponentLibraryIdentifier118=MKP_lib.DbLib/Components
  2157. ComponentDesignItemID118=SS36F
  2158. ComponentSymbolReference118=SCHOTTKY
  2159. ComponentUpdate118=1
  2160. ComponentIsDeviceSheet118=0
  2161. ComponentLibIdentifierKind119=Library Name And Type
  2162. ComponentLibraryIdentifier119=MKP_lib.DbLib/Components
  2163. ComponentDesignItemID119=SX20Y025000B91T002
  2164. ComponentSymbolReference119=Q22FA12800078
  2165. ComponentUpdate119=1
  2166. ComponentIsDeviceSheet119=0
  2167. ComponentLibIdentifierKind120=Library Name And Type
  2168. ComponentLibraryIdentifier120=MKP_lib.DbLib/Components
  2169. ComponentDesignItemID120=TAJB476K010RNJ
  2170. ComponentSymbolReference120=CAPP
  2171. ComponentUpdate120=1
  2172. ComponentIsDeviceSheet120=0
  2173. ComponentLibIdentifierKind121=Library Name And Type
  2174. ComponentLibraryIdentifier121=MKP_lib.DbLib/Components
  2175. ComponentDesignItemID121=TannhietSOM
  2176. ComponentSymbolReference121=Tannhiet
  2177. ComponentUpdate121=1
  2178. ComponentIsDeviceSheet121=0
  2179. ComponentLibIdentifierKind122=Library Name And Type
  2180. ComponentLibraryIdentifier122=MKP_lib.DbLib/Components
  2181. ComponentDesignItemID122=TLV75801PDBVR
  2182. ComponentSymbolReference122=SGM2028-ADJYN5G/TR
  2183. ComponentUpdate122=1
  2184. ComponentIsDeviceSheet122=0
  2185. ComponentLibIdentifierKind123=Library Name And Type
  2186. ComponentLibraryIdentifier123=MKP_lib.DbLib/Components
  2187. ComponentDesignItemID123=TP
  2188. ComponentSymbolReference123=TP
  2189. ComponentUpdate123=1
  2190. ComponentIsDeviceSheet123=0
  2191. ComponentLibIdentifierKind124=Library Name And Type
  2192. ComponentLibraryIdentifier124=MKP_lib.DbLib/Components
  2193. ComponentDesignItemID124=TS-1090S-AR02026
  2194. ComponentSymbolReference124=SW-4PIN
  2195. ComponentUpdate124=1
  2196. ComponentIsDeviceSheet124=0
  2197. ComponentLibIdentifierKind125=Library Name And Type
  2198. ComponentLibraryIdentifier125=MKP_lib.DbLib/Components
  2199. ComponentDesignItemID125=TSB001A3518A
  2200. ComponentSymbolReference125=TS-1001V-AR05016
  2201. ComponentUpdate125=1
  2202. ComponentIsDeviceSheet125=0
  2203. ComponentLibIdentifierKind126=Library Name And Type
  2204. ComponentLibraryIdentifier126=MKP_lib.DbLib/Components
  2205. ComponentDesignItemID126=UPZ2012E102-1R5TF
  2206. ComponentSymbolReference126=FB
  2207. ComponentUpdate126=1
  2208. ComponentIsDeviceSheet126=0
  2209. ComponentLibIdentifierKind127=Library Name And Type
  2210. ComponentLibraryIdentifier127=MKP_lib.DbLib/Components
  2211. ComponentDesignItemID127=VHF100505HQ47NJT
  2212. ComponentSymbolReference127=IND
  2213. ComponentUpdate127=1
  2214. ComponentIsDeviceSheet127=0
  2215. ComponentLibIdentifierKind128=Library Name And Type
  2216. ComponentLibraryIdentifier128=MKP_lib.DbLib/Components
  2217. ComponentDesignItemID128=VHF100505HQ68NJT
  2218. ComponentSymbolReference128=IND
  2219. ComponentUpdate128=1
  2220. ComponentIsDeviceSheet128=0
  2221. ComponentLibIdentifierKind129=Library Name And Type
  2222. ComponentLibraryIdentifier129=MKP_lib.DbLib/Components
  2223. ComponentDesignItemID129=WE05DGCF-B
  2224. ComponentSymbolReference129=TVS-ESD
  2225. ComponentUpdate129=1
  2226. ComponentIsDeviceSheet129=0
  2227. ComponentLibIdentifierKind130=Library Name And Type
  2228. ComponentLibraryIdentifier130=MKP_lib.DbLib/Components
  2229. ComponentDesignItemID130=XH-2A
  2230. ComponentSymbolReference130=CON-2PIN
  2231. ComponentUpdate130=1
  2232. ComponentIsDeviceSheet130=0
  2233. ComponentLibIdentifierKind131=Library Name And Type
  2234. ComponentLibraryIdentifier131=MKP_lib.DbLib/Components
  2235. ComponentDesignItemID131=XH-2AW
  2236. ComponentSymbolReference131=CON-2PIN
  2237. ComponentUpdate131=1
  2238. ComponentIsDeviceSheet131=0
  2239. ComponentLibIdentifierKind132=Library Name And Type
  2240. ComponentLibraryIdentifier132=MKP_lib.DbLib/Components
  2241. ComponentDesignItemID132=XL-1608SURC-06
  2242. ComponentSymbolReference132=LED
  2243. ComponentUpdate132=1
  2244. ComponentIsDeviceSheet132=0
  2245. ComponentLibIdentifierKind133=Library Name And Type
  2246. ComponentLibraryIdentifier133=MKP_lib.DbLib/Components
  2247. ComponentDesignItemID133=XL-1608SYGC-04
  2248. ComponentSymbolReference133=LED
  2249. ComponentUpdate133=1
  2250. ComponentIsDeviceSheet133=0
  2251. ComponentLibIdentifierKind134=Library Name And Type
  2252. ComponentLibraryIdentifier134=MKP_lib.DbLib/Components
  2253. ComponentDesignItemID134=XL-DZ304SURD/3
  2254. ComponentSymbolReference134=LED3
  2255. ComponentUpdate134=1
  2256. ComponentIsDeviceSheet134=0
  2257. ComponentLibIdentifierKind135=Library Name And Type
  2258. ComponentLibraryIdentifier135=MKP_lib.DbLib/Components
  2259. ComponentDesignItemID135=XS9922B
  2260. ComponentSymbolReference135=XS9922B
  2261. ComponentUpdate135=1
  2262. ComponentIsDeviceSheet135=0
  2263. ComponentLibIdentifierKind136=Library Name And Type
  2264. ComponentLibraryIdentifier136=MKP_lib.DbLib/Components
  2265. ComponentDesignItemID136=YAGEO RC0402FR-072R2L
  2266. ComponentSymbolReference136=RES
  2267. ComponentUpdate136=1
  2268. ComponentIsDeviceSheet136=0
  2269. ComponentLibIdentifierKind137=Library Name And Type
  2270. ComponentLibraryIdentifier137=MKP_lib.DbLib/Components
  2271. ComponentDesignItemID137=YI160808U100-5R0T
  2272. ComponentSymbolReference137=FB
  2273. ComponentUpdate137=1
  2274. ComponentIsDeviceSheet137=0
  2275. ComponentLibIdentifierKind138=Library Name And Type
  2276. ComponentLibraryIdentifier138=MKP_lib.DbLib/Components
  2277. ComponentDesignItemID138=YT8512H
  2278. ComponentSymbolReference138=YT8512H
  2279. ComponentUpdate138=1
  2280. ComponentIsDeviceSheet138=0
  2281. ComponentLibIdentifierKind139=Library Name And Type
  2282. ComponentLibraryIdentifier139=MKP_lib.DbLib/Components
  2283. ComponentDesignItemID139=ZD0650-2R2M
  2284. ComponentSymbolReference139=IND
  2285. ComponentUpdate139=1
  2286. ComponentIsDeviceSheet139=0
  2287. ComponentLibIdentifierKind140=Library Name And Type
  2288. ComponentLibraryIdentifier140=MKP_lib.DbLib/Components
  2289. ComponentDesignItemID140=ZNR3015ST2R2M
  2290. ComponentSymbolReference140=IND
  2291. ComponentUpdate140=1
  2292. ComponentIsDeviceSheet140=0
  2293. FullReplace=1
  2294. UpdateDesignatorLock=1
  2295. UpdatePartIDLock=1
  2296. PreserveParameterLocations=1
  2297. PreserveParameterVisibility=1
  2298. DoGraphics=1
  2299. DoParameters=1
  2300. DoModels=1
  2301. AddParameters=0
  2302. RemoveParameters=0
  2303. AddModels=1
  2304. RemoveModels=1
  2305. UpdateCurrentModels=1
  2306. ParameterName0=Actuator Style
  2307. ParameterUpdate0=1
  2308. ParameterName1=Actuator/Cap Color
  2309. ParameterUpdate1=1
  2310. ParameterName2=Add into BOM
  2311. ParameterUpdate2=1
  2312. ParameterName3=Category
  2313. ParameterUpdate3=1
  2314. ParameterName4=Catelogy
  2315. ParameterUpdate4=1
  2316. ParameterName5=Circuit
  2317. ParameterUpdate5=1
  2318. ParameterName6=Comment
  2319. ParameterUpdate6=1
  2320. ParameterName7=Company ID
  2321. ParameterUpdate7=1
  2322. ParameterName8=Component Kind
  2323. ParameterUpdate8=1
  2324. ParameterName9=ComponentLink1Description
  2325. ParameterUpdate9=1
  2326. ParameterName10=ComponentLink1URL
  2327. ParameterUpdate10=1
  2328. ParameterName11=ComponentLink2Description
  2329. ParameterUpdate11=1
  2330. ParameterName12=ComponentLink2URL
  2331. ParameterUpdate12=1
  2332. ParameterName13=ComponentLink3Description
  2333. ParameterUpdate13=1
  2334. ParameterName14=ComponentLink3URL
  2335. ParameterUpdate14=1
  2336. ParameterName15=ComponentLink4Description
  2337. ParameterUpdate15=1
  2338. ParameterName16=ComponentLink4URL
  2339. ParameterUpdate16=1
  2340. ParameterName17=ComponentLink5Description
  2341. ParameterUpdate17=1
  2342. ParameterName18=ComponentLink5URL
  2343. ParameterUpdate18=1
  2344. ParameterName19=ComponentLink6Description
  2345. ParameterUpdate19=1
  2346. ParameterName20=ComponentLink6URL
  2347. ParameterUpdate20=1
  2348. ParameterName21=Contact Current
  2349. ParameterUpdate21=1
  2350. ParameterName22=Contact Plating
  2351. ParameterUpdate22=1
  2352. ParameterName23=Continuous Drain Current (ID)
  2353. ParameterUpdate23=1
  2354. ParameterName24=Convert to PCB
  2355. ParameterUpdate24=1
  2356. ParameterName25=Creator
  2357. ParameterUpdate25=1
  2358. ParameterName26=Current Rating
  2359. ParameterUpdate26=1
  2360. ParameterName27=Channel ID
  2361. ParameterUpdate27=1
  2362. ParameterName28=Datasheet
  2363. ParameterUpdate28=1
  2364. ParameterName29=Des
  2365. ParameterUpdate29=1
  2366. ParameterName30=Description
  2367. ParameterUpdate30=1
  2368. ParameterName31=Detailed Value
  2369. ParameterUpdate31=1
  2370. ParameterName32=Device
  2371. ParameterUpdate32=1
  2372. ParameterName33=Drain to Source Breakdown Voltage
  2373. ParameterUpdate33=1
  2374. ParameterName34=Drain to Source Resistance
  2375. ParameterUpdate34=1
  2376. ParameterName35=Drain to Source Voltage (Vdss)
  2377. ParameterUpdate35=1
  2378. ParameterName36=Element Configuration
  2379. ParameterUpdate36=1
  2380. ParameterName37=Fall Time
  2381. ParameterUpdate37=1
  2382. ParameterName38=Gate to Source Voltage (Vgs)
  2383. ParameterUpdate38=1
  2384. ParameterName39=Group ID
  2385. ParameterUpdate39=1
  2386. ParameterName40=Height
  2387. ParameterUpdate40=1
  2388. ParameterName41=Input Capacitance
  2389. ParameterUpdate41=1
  2390. ParameterName42=Insulation Resistance
  2391. ParameterUpdate42=1
  2392. ParameterName43=JLCPCB Part Class
  2393. ParameterUpdate43=1
  2394. ParameterName44=Kieu_Chan
  2395. ParameterUpdate44=1
  2396. ParameterName45=LCSC Part Name
  2397. ParameterUpdate45=1
  2398. ParameterName46=Lead Free
  2399. ParameterUpdate46=1
  2400. ParameterName47=Length
  2401. ParameterUpdate47=1
  2402. ParameterName48=Library Reference
  2403. ParameterUpdate48=1
  2404. ParameterName49=Link sale
  2405. ParameterUpdate49=1
  2406. ParameterName50=MANU 1
  2407. ParameterUpdate50=1
  2408. ParameterName51=MANU 2
  2409. ParameterUpdate51=1
  2410. ParameterName52=Manufacture
  2411. ParameterUpdate52=1
  2412. ParameterName53=Manufacturer
  2413. ParameterUpdate53=1
  2414. ParameterName54=Manufacturer 1
  2415. ParameterUpdate54=1
  2416. ParameterName55=Manufacturer Part
  2417. ParameterUpdate55=1
  2418. ParameterName56=Manufacturer Part Number 1
  2419. ParameterUpdate56=1
  2420. ParameterName57=Max Operating Temperature
  2421. ParameterUpdate57=1
  2422. ParameterName58=Max Power Dissipation
  2423. ParameterUpdate58=1
  2424. ParameterName59=Mechanical Life
  2425. ParameterUpdate59=1
  2426. ParameterName60=Mfr
  2427. ParameterUpdate60=1
  2428. ParameterName61=Min Operating Temperature
  2429. ParameterUpdate61=1
  2430. ParameterName62=Mount
  2431. ParameterUpdate62=1
  2432. ParameterName63=Mounting Style
  2433. ParameterUpdate63=1
  2434. ParameterName64=Mounting type
  2435. ParameterUpdate64=1
  2436. ParameterName65=Mpn
  2437. ParameterUpdate65=1
  2438. ParameterName66=Name
  2439. ParameterUpdate66=1
  2440. ParameterName67=Nominal Vgs
  2441. ParameterUpdate67=1
  2442. ParameterName68=Number of Elements
  2443. ParameterUpdate68=1
  2444. ParameterName69=Number of Pins
  2445. ParameterUpdate69=1
  2446. ParameterName70=Operating Force
  2447. ParameterUpdate70=1
  2448. ParameterName71=Operating Temperature
  2449. ParameterUpdate71=1
  2450. ParameterName72=Package Quantity
  2451. ParameterUpdate72=1
  2452. ParameterName73=Packaging
  2453. ParameterUpdate73=1
  2454. ParameterName74=Part Num 1
  2455. ParameterUpdate74=1
  2456. ParameterName75=Part Num 2
  2457. ParameterUpdate75=1
  2458. ParameterName76=Partnumber
  2459. ParameterUpdate76=1
  2460. ParameterName77=Pin Style
  2461. ParameterUpdate77=1
  2462. ParameterName78=Power Dissipation
  2463. ParameterUpdate78=1
  2464. ParameterName79=Pricing (USD)
  2465. ParameterUpdate79=1
  2466. ParameterName80=Pricing 1
  2467. ParameterUpdate80=1
  2468. ParameterName81=PROJECT
  2469. ParameterUpdate81=1
  2470. ParameterName82=Radiation Hardening
  2471. ParameterUpdate82=1
  2472. ParameterName83=Rds On Max
  2473. ParameterUpdate83=1
  2474. ParameterName84=REACH SVHC
  2475. ParameterUpdate84=1
  2476. ParameterName85=Reuse Block
  2477. ParameterUpdate85=1
  2478. ParameterName86=Rise Time
  2479. ParameterUpdate86=1
  2480. ParameterName87=RoHS
  2481. ParameterUpdate87=1
  2482. ParameterName88=Stock 1
  2483. ParameterUpdate88=1
  2484. ParameterName89=Strike Gundam
  2485. ParameterUpdate89=1
  2486. ParameterName90=Supplier
  2487. ParameterUpdate90=1
  2488. ParameterName91=Supplier 1
  2489. ParameterUpdate91=1
  2490. ParameterName92=Supplier Footprint
  2491. ParameterUpdate92=1
  2492. ParameterName93=Supplier Part
  2493. ParameterUpdate93=1
  2494. ParameterName94=Supplier Part Number 1
  2495. ParameterUpdate94=1
  2496. ParameterName95=Switch Height
  2497. ParameterUpdate95=1
  2498. ParameterName96=Switch Length
  2499. ParameterUpdate96=1
  2500. ParameterName97=Switch Width
  2501. ParameterUpdate97=1
  2502. ParameterName98=Symbol
  2503. ParameterUpdate98=1
  2504. ParameterName99=Tolerance
  2505. ParameterUpdate99=1
  2506. ParameterName100=Turn-Off Delay Time
  2507. ParameterUpdate100=1
  2508. ParameterName101=Turn-On Delay Time
  2509. ParameterUpdate101=1
  2510. ParameterName102=Type
  2511. ParameterUpdate102=1
  2512. ParameterName103=Threshold Voltage
  2513. ParameterUpdate103=1
  2514. ParameterName104=Unit
  2515. ParameterUpdate104=1
  2516. ParameterName105=Value
  2517. ParameterUpdate105=1
  2518. ParameterName106=Voltage Rated
  2519. ParameterUpdate106=1
  2520. ParameterName107=Voltage Rating (DC)
  2521. ParameterUpdate107=1
  2522. ParameterName108=Width
  2523. ParameterUpdate108=1
  2524. ModelTypeGroup0=PCB3DLib
  2525. ModelTypeUpdate0=1
  2526. ModelTypeGroup1=PCBLIB
  2527. ModelTypeUpdate1=1
  2528. ModelTypeGroup2=SIM
  2529. ModelTypeUpdate2=1
  2530. [DatabaseUpdateOptions]
  2531. SelectedOnly=0
  2532. UpdateVariants=1
  2533. UpdateToLatestRevision=1
  2534. PartTypes=0
  2535. ComponentLibIdentifierKind0=Library Name And Type
  2536. ComponentLibraryIdentifier0=MKP_lib.DbLib/Components
  2537. ComponentDesignItemID0=0805CG330J500NT
  2538. ComponentSymbolReference0=CAP
  2539. ComponentUpdate0=1
  2540. ComponentIsDeviceSheet0=0
  2541. ComponentLibIdentifierKind1=Library Name And Type
  2542. ComponentLibraryIdentifier1=MKP_lib.DbLib/Components
  2543. ComponentDesignItemID1=150060YS75000
  2544. ComponentSymbolReference1=LED
  2545. ComponentUpdate1=1
  2546. ComponentIsDeviceSheet1=0
  2547. ComponentLibIdentifierKind2=Library Name And Type
  2548. ComponentLibraryIdentifier2=MKP_lib.DbLib/Components
  2549. ComponentDesignItemID2=2.54-2*8P
  2550. ComponentSymbolReference2=CON-8X2PIN
  2551. ComponentUpdate2=1
  2552. ComponentIsDeviceSheet2=0
  2553. ComponentLibIdentifierKind3=Library Name And Type
  2554. ComponentLibraryIdentifier3=MKP_lib.DbLib/Components
  2555. ComponentDesignItemID3=3.0-2*2A
  2556. ComponentSymbolReference3=CON-2X2PIN
  2557. ComponentUpdate3=1
  2558. ComponentIsDeviceSheet3=0
  2559. ComponentLibIdentifierKind4=Library Name And Type
  2560. ComponentLibraryIdentifier4=MKP_lib.DbLib/Components
  2561. ComponentDesignItemID4=3N27000G33YC
  2562. ComponentSymbolReference4=OSCILLATOR
  2563. ComponentUpdate4=1
  2564. ComponentIsDeviceSheet4=0
  2565. ComponentLibIdentifierKind5=Library Name And Type
  2566. ComponentLibraryIdentifier5=MKP_lib.DbLib/Components
  2567. ComponentDesignItemID5=A2541WV-4P
  2568. ComponentSymbolReference5=CON-4PIN
  2569. ComponentUpdate5=1
  2570. ComponentIsDeviceSheet5=0
  2571. ComponentLibIdentifierKind6=Library Name And Type
  2572. ComponentLibraryIdentifier6=MKP_lib.DbLib/Components
  2573. ComponentDesignItemID6=ABS07-32.768KHZ-T
  2574. ComponentSymbolReference6=XTL-2PIN
  2575. ComponentUpdate6=1
  2576. ComponentIsDeviceSheet6=0
  2577. ComponentLibIdentifierKind7=Library Name And Type
  2578. ComponentLibraryIdentifier7=MKP_lib.DbLib/Components
  2579. ComponentDesignItemID7=AC0402FR-07590KL
  2580. ComponentSymbolReference7=RES
  2581. ComponentUpdate7=1
  2582. ComponentIsDeviceSheet7=0
  2583. ComponentLibIdentifierKind8=Library Name And Type
  2584. ComponentLibraryIdentifier8=MKP_lib.DbLib/Components
  2585. ComponentDesignItemID8=AFC07-S20FCC-00
  2586. ComponentSymbolReference8=FFC-20P
  2587. ComponentUpdate8=1
  2588. ComponentIsDeviceSheet8=0
  2589. ComponentLibIdentifierKind9=Library Name And Type
  2590. ComponentLibraryIdentifier9=MKP_lib.DbLib/Components
  2591. ComponentDesignItemID9=APCI0146-P001A
  2592. ComponentSymbolReference9=APCI0146-P001A
  2593. ComponentUpdate9=1
  2594. ComponentIsDeviceSheet9=0
  2595. ComponentLibIdentifierKind10=Library Name And Type
  2596. ComponentLibraryIdentifier10=MKP_lib.DbLib/Components
  2597. ComponentDesignItemID10=APX823-26W5G-7
  2598. ComponentSymbolReference10=APX823-26W5G-7
  2599. ComponentUpdate10=1
  2600. ComponentIsDeviceSheet10=0
  2601. ComponentLibIdentifierKind11=Library Name And Type
  2602. ComponentLibraryIdentifier11=MKP_lib.DbLib/Components
  2603. ComponentDesignItemID11=AZ6118-01F
  2604. ComponentSymbolReference11=TVS
  2605. ComponentUpdate11=1
  2606. ComponentIsDeviceSheet11=0
  2607. ComponentLibIdentifierKind12=Library Name And Type
  2608. ComponentLibraryIdentifier12=MKP_lib.DbLib/Components
  2609. ComponentDesignItemID12=B72590D50H160
  2610. ComponentSymbolReference12=B72590D50H160
  2611. ComponentUpdate12=1
  2612. ComponentIsDeviceSheet12=0
  2613. ComponentLibIdentifierKind13=Library Name And Type
  2614. ComponentLibraryIdentifier13=MKP_lib.DbLib/Components
  2615. ComponentDesignItemID13=BLM18KG221SN1D
  2616. ComponentSymbolReference13=FB
  2617. ComponentUpdate13=1
  2618. ComponentIsDeviceSheet13=0
  2619. ComponentLibIdentifierKind14=Library Name And Type
  2620. ComponentLibraryIdentifier14=MKP_lib.DbLib/Components
  2621. ComponentDesignItemID14=BLM31KN121SN1L
  2622. ComponentSymbolReference14=FB
  2623. ComponentUpdate14=1
  2624. ComponentIsDeviceSheet14=0
  2625. ComponentLibIdentifierKind15=Library Name And Type
  2626. ComponentLibraryIdentifier15=MKP_lib.DbLib/Components
  2627. ComponentDesignItemID15=C0603X5R105K500NT
  2628. ComponentSymbolReference15=CAP
  2629. ComponentUpdate15=1
  2630. ComponentIsDeviceSheet15=0
  2631. ComponentLibIdentifierKind16=Library Name And Type
  2632. ComponentLibraryIdentifier16=MKP_lib.DbLib/Components
  2633. ComponentDesignItemID16=C0603X5R475K350NT
  2634. ComponentSymbolReference16=C0603X5R475K350NT
  2635. ComponentUpdate16=1
  2636. ComponentIsDeviceSheet16=0
  2637. ComponentLibIdentifierKind17=Library Name And Type
  2638. ComponentLibraryIdentifier17=MKP_lib.DbLib/Components
  2639. ComponentDesignItemID17=C0805X5R106K160NT
  2640. ComponentSymbolReference17=CAP
  2641. ComponentUpdate17=1
  2642. ComponentIsDeviceSheet17=0
  2643. ComponentLibIdentifierKind18=Library Name And Type
  2644. ComponentLibraryIdentifier18=MKP_lib.DbLib/Components
  2645. ComponentDesignItemID18=CC0402FRNPO9BN101
  2646. ComponentSymbolReference18=CAP
  2647. ComponentUpdate18=1
  2648. ComponentIsDeviceSheet18=0
  2649. ComponentLibIdentifierKind19=Library Name And Type
  2650. ComponentLibraryIdentifier19=MKP_lib.DbLib/Components
  2651. ComponentDesignItemID19=CC0402FRNPO9BN120
  2652. ComponentSymbolReference19=CAP
  2653. ComponentUpdate19=1
  2654. ComponentIsDeviceSheet19=0
  2655. ComponentLibIdentifierKind20=Library Name And Type
  2656. ComponentLibraryIdentifier20=MKP_lib.DbLib/Components
  2657. ComponentDesignItemID20=CC0402KRX7R7BB104
  2658. ComponentSymbolReference20=CAP
  2659. ComponentUpdate20=1
  2660. ComponentIsDeviceSheet20=0
  2661. ComponentLibIdentifierKind21=Library Name And Type
  2662. ComponentLibraryIdentifier21=MKP_lib.DbLib/Components
  2663. ComponentDesignItemID21=CC0402KRX7R9BB103
  2664. ComponentSymbolReference21=CAP
  2665. ComponentUpdate21=1
  2666. ComponentIsDeviceSheet21=0
  2667. ComponentLibIdentifierKind22=Library Name And Type
  2668. ComponentLibraryIdentifier22=MKP_lib.DbLib/Components
  2669. ComponentDesignItemID22=CC0402KRX7R9BB104
  2670. ComponentSymbolReference22=CAP
  2671. ComponentUpdate22=1
  2672. ComponentIsDeviceSheet22=0
  2673. ComponentLibIdentifierKind23=Library Name And Type
  2674. ComponentLibraryIdentifier23=MKP_lib.DbLib/Components
  2675. ComponentDesignItemID23=CC0603JRNPO9BN750
  2676. ComponentSymbolReference23=CAP
  2677. ComponentUpdate23=1
  2678. ComponentIsDeviceSheet23=0
  2679. ComponentLibIdentifierKind24=Library Name And Type
  2680. ComponentLibraryIdentifier24=MKP_lib.DbLib/Components
  2681. ComponentDesignItemID24=CC0603KRX7R9BB104
  2682. ComponentSymbolReference24=CAP
  2683. ComponentUpdate24=1
  2684. ComponentIsDeviceSheet24=0
  2685. ComponentLibIdentifierKind25=Library Name And Type
  2686. ComponentLibraryIdentifier25=MKP_lib.DbLib/Components
  2687. ComponentDesignItemID25=CC0603KRX7R9BB474
  2688. ComponentSymbolReference25=CAP
  2689. ComponentUpdate25=1
  2690. ComponentIsDeviceSheet25=0
  2691. ComponentLibIdentifierKind26=Library Name And Type
  2692. ComponentLibraryIdentifier26=MKP_lib.DbLib/Components
  2693. ComponentDesignItemID26=CC0603KRX7R9BB561
  2694. ComponentSymbolReference26=CAP
  2695. ComponentUpdate26=1
  2696. ComponentIsDeviceSheet26=0
  2697. ComponentLibIdentifierKind27=Library Name And Type
  2698. ComponentLibraryIdentifier27=MKP_lib.DbLib/Components
  2699. ComponentDesignItemID27=CC0603KRX7R9BB563
  2700. ComponentSymbolReference27=CAP
  2701. ComponentUpdate27=1
  2702. ComponentIsDeviceSheet27=0
  2703. ComponentLibIdentifierKind28=Library Name And Type
  2704. ComponentLibraryIdentifier28=MKP_lib.DbLib/Components
  2705. ComponentDesignItemID28=CC1206KKX7R0BB104
  2706. ComponentSymbolReference28=CAP
  2707. ComponentUpdate28=1
  2708. ComponentIsDeviceSheet28=0
  2709. ComponentLibIdentifierKind29=Library Name And Type
  2710. ComponentLibraryIdentifier29=MKP_lib.DbLib/Components
  2711. ComponentDesignItemID29=CCTC TCC1206X7R225K101HT
  2712. ComponentSymbolReference29=CAP
  2713. ComponentUpdate29=1
  2714. ComponentIsDeviceSheet29=0
  2715. ComponentLibIdentifierKind30=Library Name And Type
  2716. ComponentLibraryIdentifier30=MKP_lib.DbLib/Components
  2717. ComponentDesignItemID30=CL05A105KO5NNNC
  2718. ComponentSymbolReference30=CAP
  2719. ComponentUpdate30=1
  2720. ComponentIsDeviceSheet30=0
  2721. ComponentLibIdentifierKind31=Library Name And Type
  2722. ComponentLibraryIdentifier31=MKP_lib.DbLib/Components
  2723. ComponentDesignItemID31=CL05C330JB5NNNC
  2724. ComponentSymbolReference31=CAP
  2725. ComponentUpdate31=1
  2726. ComponentIsDeviceSheet31=0
  2727. ComponentLibIdentifierKind32=Library Name And Type
  2728. ComponentLibraryIdentifier32=MKP_lib.DbLib/Components
  2729. ComponentDesignItemID32=CL10A226MO7JZNC
  2730. ComponentSymbolReference32=CL10A226MO7JZNC
  2731. ComponentUpdate32=1
  2732. ComponentIsDeviceSheet32=0
  2733. ComponentLibIdentifierKind33=Library Name And Type
  2734. ComponentLibraryIdentifier33=MKP_lib.DbLib/Components
  2735. ComponentDesignItemID33=CL10A226MQ8NRNE
  2736. ComponentSymbolReference33=CAP
  2737. ComponentUpdate33=1
  2738. ComponentIsDeviceSheet33=0
  2739. ComponentLibIdentifierKind34=Library Name And Type
  2740. ComponentLibraryIdentifier34=MKP_lib.DbLib/Components
  2741. ComponentDesignItemID34=CL10A476MQ8QRNC
  2742. ComponentSymbolReference34=CAP
  2743. ComponentUpdate34=1
  2744. ComponentIsDeviceSheet34=0
  2745. ComponentLibIdentifierKind35=Library Name And Type
  2746. ComponentLibraryIdentifier35=MKP_lib.DbLib/Components
  2747. ComponentDesignItemID35=D-DMR009PM-D002
  2748. ComponentSymbolReference35=D-DMR009PM-D002
  2749. ComponentUpdate35=1
  2750. ComponentIsDeviceSheet35=0
  2751. ComponentLibIdentifierKind36=Library Name And Type
  2752. ComponentLibraryIdentifier36=MKP_lib.DbLib/Components
  2753. ComponentDesignItemID36=DLM0NSN900HY2D
  2754. ComponentSymbolReference36=Common Mode Filters
  2755. ComponentUpdate36=1
  2756. ComponentIsDeviceSheet36=0
  2757. ComponentLibIdentifierKind37=Library Name And Type
  2758. ComponentLibraryIdentifier37=MKP_lib.DbLib/Components
  2759. ComponentDesignItemID37=DRQ125-220-R
  2760. ComponentSymbolReference37=DRQ125
  2761. ComponentUpdate37=1
  2762. ComponentIsDeviceSheet37=0
  2763. ComponentLibIdentifierKind38=Library Name And Type
  2764. ComponentLibraryIdentifier38=MKP_lib.DbLib/Components
  2765. ComponentDesignItemID38=EC25EUGA-512-SGNS
  2766. ComponentSymbolReference38=EC25EUGA-512-SGNS
  2767. ComponentUpdate38=1
  2768. ComponentIsDeviceSheet38=0
  2769. ComponentLibIdentifierKind39=Library Name And Type
  2770. ComponentLibraryIdentifier39=MKP_lib.DbLib/Components
  2771. ComponentDesignItemID39=EL3H7(B)(TA)-VG
  2772. ComponentSymbolReference39=PS2801
  2773. ComponentUpdate39=1
  2774. ComponentIsDeviceSheet39=0
  2775. ComponentLibIdentifierKind40=Library Name And Type
  2776. ComponentLibraryIdentifier40=MKP_lib.DbLib/Components
  2777. ComponentDesignItemID40=EMK316BBJ476ML-T
  2778. ComponentSymbolReference40=CAP
  2779. ComponentUpdate40=1
  2780. ComponentIsDeviceSheet40=0
  2781. ComponentLibIdentifierKind41=Library Name And Type
  2782. ComponentLibraryIdentifier41=MKP_lib.DbLib/Components
  2783. ComponentDesignItemID41=ESD5Z5V0
  2784. ComponentSymbolReference41=TVS
  2785. ComponentUpdate41=1
  2786. ComponentIsDeviceSheet41=0
  2787. ComponentLibIdentifierKind42=Library Name And Type
  2788. ComponentLibraryIdentifier42=MKP_lib.DbLib/Components
  2789. ComponentDesignItemID42=EWK1HM101F11OT
  2790. ComponentSymbolReference42=CAPP
  2791. ComponentUpdate42=1
  2792. ComponentIsDeviceSheet42=0
  2793. ComponentLibIdentifierKind43=Library Name And Type
  2794. ComponentLibraryIdentifier43=MKP_lib.DbLib/Components
  2795. ComponentDesignItemID43=FN21N100J500PAG
  2796. ComponentSymbolReference43=CAP
  2797. ComponentUpdate43=1
  2798. ComponentIsDeviceSheet43=0
  2799. ComponentLibIdentifierKind44=Library Name And Type
  2800. ComponentLibraryIdentifier44=MKP_lib.DbLib/Components
  2801. ComponentDesignItemID44=GT-F0502SR20-24SMT01
  2802. ComponentSymbolReference44=CON-24PIN
  2803. ComponentUpdate44=1
  2804. ComponentIsDeviceSheet44=0
  2805. ComponentLibIdentifierKind45=Library Name And Type
  2806. ComponentLibraryIdentifier45=MKP_lib.DbLib/Components
  2807. ComponentDesignItemID45=HNB09A05
  2808. ComponentSymbolReference45=BUZZER
  2809. ComponentUpdate45=1
  2810. ComponentIsDeviceSheet45=0
  2811. ComponentLibIdentifierKind46=Library Name And Type
  2812. ComponentLibraryIdentifier46=MKP_lib.DbLib/Components
  2813. ComponentDesignItemID46=HT66F0021
  2814. ComponentSymbolReference46=HT66F0021
  2815. ComponentUpdate46=1
  2816. ComponentIsDeviceSheet46=0
  2817. ComponentLibIdentifierKind47=Library Name And Type
  2818. ComponentLibraryIdentifier47=MKP_lib.DbLib/Components
  2819. ComponentDesignItemID47=KH-IPEX-K501-29
  2820. ComponentSymbolReference47=KH-IPEX-K501-29
  2821. ComponentUpdate47=1
  2822. ComponentIsDeviceSheet47=0
  2823. ComponentLibIdentifierKind48=Library Name And Type
  2824. ComponentLibraryIdentifier48=MKP_lib.DbLib/Components
  2825. ComponentDesignItemID48=LBAT54CLT1G
  2826. ComponentSymbolReference48=DIODE-3
  2827. ComponentUpdate48=1
  2828. ComponentIsDeviceSheet48=0
  2829. ComponentLibIdentifierKind49=Library Name And Type
  2830. ComponentLibraryIdentifier49=MKP_lib.DbLib/Components
  2831. ComponentDesignItemID49=LBSS139LT1G
  2832. ComponentSymbolReference49=N-Channel
  2833. ComponentUpdate49=1
  2834. ComponentIsDeviceSheet49=0
  2835. ComponentLibIdentifierKind50=Library Name And Type
  2836. ComponentLibraryIdentifier50=MKP_lib.DbLib/Components
  2837. ComponentDesignItemID50=LK8563T
  2838. ComponentSymbolReference50=LK8563T
  2839. ComponentUpdate50=1
  2840. ComponentIsDeviceSheet50=0
  2841. ComponentLibIdentifierKind51=Library Name And Type
  2842. ComponentLibraryIdentifier51=MKP_lib.DbLib/Components
  2843. ComponentDesignItemID51=LM3481MMX/NOPB
  2844. ComponentSymbolReference51=LM3481MMX/NOPB
  2845. ComponentUpdate51=1
  2846. ComponentIsDeviceSheet51=0
  2847. ComponentLibIdentifierKind52=Library Name And Type
  2848. ComponentLibraryIdentifier52=MKP_lib.DbLib/Components
  2849. ComponentDesignItemID52=LM393DR
  2850. ComponentSymbolReference52=LM358
  2851. ComponentUpdate52=1
  2852. ComponentIsDeviceSheet52=0
  2853. ComponentLibIdentifierKind53=Library Name And Type
  2854. ComponentLibraryIdentifier53=MKP_lib.DbLib/Components
  2855. ComponentDesignItemID53=LM-SE05NRE14GA
  2856. ComponentSymbolReference53=LM-SE05NRE14GA
  2857. ComponentUpdate53=1
  2858. ComponentIsDeviceSheet53=0
  2859. ComponentLibIdentifierKind54=Library Name And Type
  2860. ComponentLibraryIdentifier54=MKP_lib.DbLib/Components
  2861. ComponentDesignItemID54=LQG15HS56NJ02D
  2862. ComponentSymbolReference54=IND
  2863. ComponentUpdate54=1
  2864. ComponentIsDeviceSheet54=0
  2865. ComponentLibIdentifierKind55=Library Name And Type
  2866. ComponentLibraryIdentifier55=MKP_lib.DbLib/Components
  2867. ComponentDesignItemID55=LQM2HPN2R2MGHL
  2868. ComponentSymbolReference55=IND
  2869. ComponentUpdate55=1
  2870. ComponentIsDeviceSheet55=0
  2871. ComponentLibIdentifierKind56=Library Name And Type
  2872. ComponentLibraryIdentifier56=MKP_lib.DbLib/Components
  2873. ComponentDesignItemID56=M7
  2874. ComponentSymbolReference56=Diode
  2875. ComponentUpdate56=1
  2876. ComponentIsDeviceSheet56=0
  2877. ComponentLibIdentifierKind57=Library Name And Type
  2878. ComponentLibraryIdentifier57=MKP_lib.DbLib/Components
  2879. ComponentDesignItemID57=MAI4020S-2R2MT
  2880. ComponentSymbolReference57=IND
  2881. ComponentUpdate57=1
  2882. ComponentIsDeviceSheet57=0
  2883. ComponentLibIdentifierKind58=Library Name And Type
  2884. ComponentLibraryIdentifier58=MKP_lib.DbLib/Components
  2885. ComponentDesignItemID58=MAX3232CDR
  2886. ComponentSymbolReference58=Max3232
  2887. ComponentUpdate58=1
  2888. ComponentIsDeviceSheet58=0
  2889. ComponentLibIdentifierKind59=Library Name And Type
  2890. ComponentLibraryIdentifier59=MKP_lib.DbLib/Components
  2891. ComponentDesignItemID59=MF-NSMF110-2
  2892. ComponentSymbolReference59=Fuse
  2893. ComponentUpdate59=1
  2894. ComponentIsDeviceSheet59=0
  2895. ComponentLibIdentifierKind60=Library Name And Type
  2896. ComponentLibraryIdentifier60=MKP_lib.DbLib/Components
  2897. ComponentDesignItemID60=MMBT3904-TP
  2898. ComponentSymbolReference60=NPN
  2899. ComponentUpdate60=1
  2900. ComponentIsDeviceSheet60=0
  2901. ComponentLibIdentifierKind61=Library Name And Type
  2902. ComponentLibraryIdentifier61=MKP_lib.DbLib/Components
  2903. ComponentDesignItemID61=MMBTA05LT1G
  2904. ComponentSymbolReference61=NPN
  2905. ComponentUpdate61=1
  2906. ComponentIsDeviceSheet61=0
  2907. ComponentLibIdentifierKind62=Library Name And Type
  2908. ComponentLibraryIdentifier62=MKP_lib.DbLib/Components
  2909. ComponentDesignItemID62=MR01A-01211
  2910. ComponentSymbolReference62=MicroSDCard
  2911. ComponentUpdate62=1
  2912. ComponentIsDeviceSheet62=0
  2913. ComponentLibIdentifierKind63=Library Name And Type
  2914. ComponentLibraryIdentifier63=MKP_lib.DbLib/Components
  2915. ComponentDesignItemID63=N4
  2916. ComponentSymbolReference63=N4
  2917. ComponentUpdate63=1
  2918. ComponentIsDeviceSheet63=0
  2919. ComponentLibIdentifierKind64=Library Name And Type
  2920. ComponentLibraryIdentifier64=MKP_lib.DbLib/Components
  2921. ComponentDesignItemID64=NDP2435KC
  2922. ComponentSymbolReference64=NDP2435KC
  2923. ComponentUpdate64=1
  2924. ComponentIsDeviceSheet64=0
  2925. ComponentLibIdentifierKind65=Library Name And Type
  2926. ComponentLibraryIdentifier65=MKP_lib.DbLib/Components
  2927. ComponentDesignItemID65=PA4341.103ANLT
  2928. ComponentSymbolReference65=IND
  2929. ComponentUpdate65=1
  2930. ComponentIsDeviceSheet65=0
  2931. ComponentLibIdentifierKind66=Library Name And Type
  2932. ComponentLibraryIdentifier66=MKP_lib.DbLib/Components
  2933. ComponentDesignItemID66=PE1206DRF7W0R015L
  2934. ComponentSymbolReference66=RES
  2935. ComponentUpdate66=1
  2936. ComponentIsDeviceSheet66=0
  2937. ComponentLibIdentifierKind67=Library Name And Type
  2938. ComponentLibraryIdentifier67=MKP_lib.DbLib/Components
  2939. ComponentDesignItemID67=PTVS5V0S1UR,115
  2940. ComponentSymbolReference67=TVS
  2941. ComponentUpdate67=1
  2942. ComponentIsDeviceSheet67=0
  2943. ComponentLibIdentifierKind68=Library Name And Type
  2944. ComponentLibraryIdentifier68=MKP_lib.DbLib/Components
  2945. ComponentDesignItemID68=PZ254R-12-4P
  2946. ComponentSymbolReference68=CON-2X2PIN
  2947. ComponentUpdate68=1
  2948. ComponentIsDeviceSheet68=0
  2949. ComponentLibIdentifierKind69=Library Name And Type
  2950. ComponentLibraryIdentifier69=MKP_lib.DbLib/Components
  2951. ComponentDesignItemID69=RC0402FR-070RL
  2952. ComponentSymbolReference69=RES
  2953. ComponentUpdate69=1
  2954. ComponentIsDeviceSheet69=0
  2955. ComponentLibIdentifierKind70=Library Name And Type
  2956. ComponentLibraryIdentifier70=MKP_lib.DbLib/Components
  2957. ComponentDesignItemID70=RC0402FR-07100KL
  2958. ComponentSymbolReference70=RES
  2959. ComponentUpdate70=1
  2960. ComponentIsDeviceSheet70=0
  2961. ComponentLibIdentifierKind71=Library Name And Type
  2962. ComponentLibraryIdentifier71=MKP_lib.DbLib/Components
  2963. ComponentDesignItemID71=RC0402FR-07100RL
  2964. ComponentSymbolReference71=RES
  2965. ComponentUpdate71=1
  2966. ComponentIsDeviceSheet71=0
  2967. ComponentLibIdentifierKind72=Library Name And Type
  2968. ComponentLibraryIdentifier72=MKP_lib.DbLib/Components
  2969. ComponentDesignItemID72=RC0402FR-07105KL
  2970. ComponentSymbolReference72=RES
  2971. ComponentUpdate72=1
  2972. ComponentIsDeviceSheet72=0
  2973. ComponentLibIdentifierKind73=Library Name And Type
  2974. ComponentLibraryIdentifier73=MKP_lib.DbLib/Components
  2975. ComponentDesignItemID73=RC0402FR-0710KL
  2976. ComponentSymbolReference73=RES
  2977. ComponentUpdate73=1
  2978. ComponentIsDeviceSheet73=0
  2979. ComponentLibIdentifierKind74=Library Name And Type
  2980. ComponentLibraryIdentifier74=MKP_lib.DbLib/Components
  2981. ComponentDesignItemID74=RC0402FR-0710RL
  2982. ComponentSymbolReference74=RES
  2983. ComponentUpdate74=1
  2984. ComponentIsDeviceSheet74=0
  2985. ComponentLibIdentifierKind75=Library Name And Type
  2986. ComponentLibraryIdentifier75=MKP_lib.DbLib/Components
  2987. ComponentDesignItemID75=RC0402FR-0715KL
  2988. ComponentSymbolReference75=RES
  2989. ComponentUpdate75=1
  2990. ComponentIsDeviceSheet75=0
  2991. ComponentLibIdentifierKind76=Library Name And Type
  2992. ComponentLibraryIdentifier76=MKP_lib.DbLib/Components
  2993. ComponentDesignItemID76=RC0402FR-071K91L
  2994. ComponentSymbolReference76=RES
  2995. ComponentUpdate76=1
  2996. ComponentIsDeviceSheet76=0
  2997. ComponentLibIdentifierKind77=Library Name And Type
  2998. ComponentLibraryIdentifier77=MKP_lib.DbLib/Components
  2999. ComponentDesignItemID77=RC0402FR-071KL
  3000. ComponentSymbolReference77=RES
  3001. ComponentUpdate77=1
  3002. ComponentIsDeviceSheet77=0
  3003. ComponentLibIdentifierKind78=Library Name And Type
  3004. ComponentLibraryIdentifier78=MKP_lib.DbLib/Components
  3005. ComponentDesignItemID78=RC0402FR-0720KL
  3006. ComponentSymbolReference78=RES
  3007. ComponentUpdate78=1
  3008. ComponentIsDeviceSheet78=0
  3009. ComponentLibIdentifierKind79=Library Name And Type
  3010. ComponentLibraryIdentifier79=MKP_lib.DbLib/Components
  3011. ComponentDesignItemID79=RC0402FR-0721K5L
  3012. ComponentSymbolReference79=RES
  3013. ComponentUpdate79=1
  3014. ComponentIsDeviceSheet79=0
  3015. ComponentLibIdentifierKind80=Library Name And Type
  3016. ComponentLibraryIdentifier80=MKP_lib.DbLib/Components
  3017. ComponentDesignItemID80=RC0402FR-0722RL
  3018. ComponentSymbolReference80=RES
  3019. ComponentUpdate80=1
  3020. ComponentIsDeviceSheet80=0
  3021. ComponentLibIdentifierKind81=Library Name And Type
  3022. ComponentLibraryIdentifier81=MKP_lib.DbLib/Components
  3023. ComponentDesignItemID81=RC0402FR-0724K9L
  3024. ComponentSymbolReference81=RES
  3025. ComponentUpdate81=1
  3026. ComponentIsDeviceSheet81=0
  3027. ComponentLibIdentifierKind82=Library Name And Type
  3028. ComponentLibraryIdentifier82=MKP_lib.DbLib/Components
  3029. ComponentDesignItemID82=RC0402FR-072K2L
  3030. ComponentSymbolReference82=RES
  3031. ComponentUpdate82=1
  3032. ComponentIsDeviceSheet82=0
  3033. ComponentLibIdentifierKind83=Library Name And Type
  3034. ComponentLibraryIdentifier83=MKP_lib.DbLib/Components
  3035. ComponentDesignItemID83=RC0402FR-072K49L
  3036. ComponentSymbolReference83=RES
  3037. ComponentUpdate83=1
  3038. ComponentIsDeviceSheet83=0
  3039. ComponentLibIdentifierKind84=Library Name And Type
  3040. ComponentLibraryIdentifier84=MKP_lib.DbLib/Components
  3041. ComponentDesignItemID84=RC0402FR-0734KL
  3042. ComponentSymbolReference84=RES
  3043. ComponentUpdate84=1
  3044. ComponentIsDeviceSheet84=0
  3045. ComponentLibIdentifierKind85=Library Name And Type
  3046. ComponentLibraryIdentifier85=MKP_lib.DbLib/Components
  3047. ComponentDesignItemID85=RC0402FR-0739K2L
  3048. ComponentSymbolReference85=RES
  3049. ComponentUpdate85=1
  3050. ComponentIsDeviceSheet85=0
  3051. ComponentLibIdentifierKind86=Library Name And Type
  3052. ComponentLibraryIdentifier86=MKP_lib.DbLib/Components
  3053. ComponentDesignItemID86=RC0402FR-073K3L
  3054. ComponentSymbolReference86=RES
  3055. ComponentUpdate86=1
  3056. ComponentIsDeviceSheet86=0
  3057. ComponentLibIdentifierKind87=Library Name And Type
  3058. ComponentLibraryIdentifier87=MKP_lib.DbLib/Components
  3059. ComponentDesignItemID87=RC0402FR-07470RL
  3060. ComponentSymbolReference87=RES
  3061. ComponentUpdate87=1
  3062. ComponentIsDeviceSheet87=0
  3063. ComponentLibIdentifierKind88=Library Name And Type
  3064. ComponentLibraryIdentifier88=MKP_lib.DbLib/Components
  3065. ComponentDesignItemID88=RC0402FR-0747KL
  3066. ComponentSymbolReference88=RES
  3067. ComponentUpdate88=1
  3068. ComponentIsDeviceSheet88=0
  3069. ComponentLibIdentifierKind89=Library Name And Type
  3070. ComponentLibraryIdentifier89=MKP_lib.DbLib/Components
  3071. ComponentDesignItemID89=RC0402FR-074K7L
  3072. ComponentSymbolReference89=RES
  3073. ComponentUpdate89=1
  3074. ComponentIsDeviceSheet89=0
  3075. ComponentLibIdentifierKind90=Library Name And Type
  3076. ComponentLibraryIdentifier90=MKP_lib.DbLib/Components
  3077. ComponentDesignItemID90=RC0402FR-0757K6P
  3078. ComponentSymbolReference90=RES
  3079. ComponentUpdate90=1
  3080. ComponentIsDeviceSheet90=0
  3081. ComponentLibIdentifierKind91=Library Name And Type
  3082. ComponentLibraryIdentifier91=MKP_lib.DbLib/Components
  3083. ComponentDesignItemID91=RC0402FR-075K6L
  3084. ComponentSymbolReference91=RES
  3085. ComponentUpdate91=1
  3086. ComponentIsDeviceSheet91=0
  3087. ComponentLibIdentifierKind92=Library Name And Type
  3088. ComponentLibraryIdentifier92=MKP_lib.DbLib/Components
  3089. ComponentDesignItemID92=RC0402FR-0768KL
  3090. ComponentSymbolReference92=RES
  3091. ComponentUpdate92=1
  3092. ComponentIsDeviceSheet92=0
  3093. ComponentLibIdentifierKind93=Library Name And Type
  3094. ComponentLibraryIdentifier93=MKP_lib.DbLib/Components
  3095. ComponentDesignItemID93=RC0402FR-0769K8L
  3096. ComponentSymbolReference93=RES
  3097. ComponentUpdate93=1
  3098. ComponentIsDeviceSheet93=0
  3099. ComponentLibIdentifierKind94=Library Name And Type
  3100. ComponentLibraryIdentifier94=MKP_lib.DbLib/Components
  3101. ComponentDesignItemID94=RC0402FR-076K8L
  3102. ComponentSymbolReference94=RES
  3103. ComponentUpdate94=1
  3104. ComponentIsDeviceSheet94=0
  3105. ComponentLibIdentifierKind95=Library Name And Type
  3106. ComponentLibraryIdentifier95=MKP_lib.DbLib/Components
  3107. ComponentDesignItemID95=RC0402FR-0775RL
  3108. ComponentSymbolReference95=RES
  3109. ComponentUpdate95=1
  3110. ComponentIsDeviceSheet95=0
  3111. ComponentLibIdentifierKind96=Library Name And Type
  3112. ComponentLibraryIdentifier96=MKP_lib.DbLib/Components
  3113. ComponentDesignItemID96=RC0402FR-0784K5L
  3114. ComponentSymbolReference96=RES
  3115. ComponentUpdate96=1
  3116. ComponentIsDeviceSheet96=0
  3117. ComponentLibIdentifierKind97=Library Name And Type
  3118. ComponentLibraryIdentifier97=MKP_lib.DbLib/Components
  3119. ComponentDesignItemID97=RI0603L000JT
  3120. ComponentSymbolReference97=RES
  3121. ComponentUpdate97=1
  3122. ComponentIsDeviceSheet97=0
  3123. ComponentLibIdentifierKind98=Library Name And Type
  3124. ComponentLibraryIdentifier98=MKP_lib.DbLib/Components
  3125. ComponentDesignItemID98=RI0603L1R00FT
  3126. ComponentSymbolReference98=RES
  3127. ComponentUpdate98=1
  3128. ComponentIsDeviceSheet98=0
  3129. ComponentLibIdentifierKind99=Library Name And Type
  3130. ComponentLibraryIdentifier99=MKP_lib.DbLib/Components
  3131. ComponentDesignItemID99=RI1206L000JT
  3132. ComponentSymbolReference99=RES
  3133. ComponentUpdate99=1
  3134. ComponentIsDeviceSheet99=0
  3135. ComponentLibIdentifierKind100=Library Name And Type
  3136. ComponentLibraryIdentifier100=MKP_lib.DbLib/Components
  3137. ComponentDesignItemID100=RS1G126XC5
  3138. ComponentSymbolReference100=RS1G126XC5
  3139. ComponentUpdate100=1
  3140. ComponentIsDeviceSheet100=0
  3141. ComponentLibIdentifierKind101=Library Name And Type
  3142. ComponentLibraryIdentifier101=MKP_lib.DbLib/Components
  3143. ComponentDesignItemID101=RT1H101M0810
  3144. ComponentSymbolReference101=CAPP
  3145. ComponentUpdate101=1
  3146. ComponentIsDeviceSheet101=0
  3147. ComponentLibIdentifierKind102=Library Name And Type
  3148. ComponentLibraryIdentifier102=MKP_lib.DbLib/Components
  3149. ComponentDesignItemID102=RT7-174AAM1A
  3150. ComponentSymbolReference102=RT7-174AAM1A
  3151. ComponentUpdate102=1
  3152. ComponentIsDeviceSheet102=0
  3153. ComponentLibIdentifierKind103=Library Name And Type
  3154. ComponentLibraryIdentifier103=MKP_lib.DbLib/Components
  3155. ComponentDesignItemID103=RVT1A331M0607
  3156. ComponentSymbolReference103=CAPP
  3157. ComponentUpdate103=1
  3158. ComponentIsDeviceSheet103=0
  3159. ComponentLibIdentifierKind104=Library Name And Type
  3160. ComponentLibraryIdentifier104=MKP_lib.DbLib/Components
  3161. ComponentDesignItemID104=RVT2A100M0605
  3162. ComponentSymbolReference104=CAPP
  3163. ComponentUpdate104=1
  3164. ComponentIsDeviceSheet104=0
  3165. ComponentLibIdentifierKind105=Library Name And Type
  3166. ComponentLibraryIdentifier105=MKP_lib.DbLib/Components
  3167. ComponentDesignItemID105=RY3408
  3168. ComponentSymbolReference105=RY3408
  3169. ComponentUpdate105=1
  3170. ComponentIsDeviceSheet105=0
  3171. ComponentLibIdentifierKind106=Library Name And Type
  3172. ComponentLibraryIdentifier106=MKP_lib.DbLib/Components
  3173. ComponentDesignItemID106=S10M
  3174. ComponentSymbolReference106=Diode
  3175. ComponentUpdate106=1
  3176. ComponentIsDeviceSheet106=0
  3177. ComponentLibIdentifierKind107=Library Name And Type
  3178. ComponentLibraryIdentifier107=MKP_lib.DbLib/Components
  3179. ComponentDesignItemID107=SGM2028-ADJYN5G/TR
  3180. ComponentSymbolReference107=SGM2028-ADJYN5G/TR
  3181. ComponentUpdate107=1
  3182. ComponentIsDeviceSheet107=0
  3183. ComponentLibIdentifierKind108=Library Name And Type
  3184. ComponentLibraryIdentifier108=MKP_lib.DbLib/Components
  3185. ComponentDesignItemID108=SI2333CDS
  3186. ComponentSymbolReference108=P-Channel
  3187. ComponentUpdate108=1
  3188. ComponentIsDeviceSheet108=0
  3189. ComponentLibIdentifierKind109=Library Name And Type
  3190. ComponentLibraryIdentifier109=MKP_lib.DbLib/Components
  3191. ComponentDesignItemID109=SIM8066-6-1-14-01-A
  3192. ComponentSymbolReference109=SIM8066-6-1-14-01-A
  3193. ComponentUpdate109=1
  3194. ComponentIsDeviceSheet109=0
  3195. ComponentLibIdentifierKind110=Library Name And Type
  3196. ComponentLibraryIdentifier110=MKP_lib.DbLib/Components
  3197. ComponentDesignItemID110=SMF05CT1G-P
  3198. ComponentSymbolReference110=SMF05CT1G-P
  3199. ComponentUpdate110=1
  3200. ComponentIsDeviceSheet110=0
  3201. ComponentLibIdentifierKind111=Library Name And Type
  3202. ComponentLibraryIdentifier111=MKP_lib.DbLib/Components
  3203. ComponentDesignItemID111=SMF54A
  3204. ComponentSymbolReference111=TVS
  3205. ComponentUpdate111=1
  3206. ComponentIsDeviceSheet111=0
  3207. ComponentLibIdentifierKind112=Library Name And Type
  3208. ComponentLibraryIdentifier112=MKP_lib.DbLib/Components
  3209. ComponentDesignItemID112=SR05-04A
  3210. ComponentSymbolReference112=SR05-04A
  3211. ComponentUpdate112=1
  3212. ComponentIsDeviceSheet112=0
  3213. ComponentLibIdentifierKind113=Library Name And Type
  3214. ComponentLibraryIdentifier113=MKP_lib.DbLib/Components
  3215. ComponentDesignItemID113=SRP6540-2R2M
  3216. ComponentSymbolReference113=IND
  3217. ComponentUpdate113=1
  3218. ComponentIsDeviceSheet113=0
  3219. ComponentLibIdentifierKind114=Library Name And Type
  3220. ComponentLibraryIdentifier114=MKP_lib.DbLib/Components
  3221. ComponentDesignItemID114=SS34A
  3222. ComponentSymbolReference114=SCHOTTKY
  3223. ComponentUpdate114=1
  3224. ComponentIsDeviceSheet114=0
  3225. ComponentLibIdentifierKind115=Library Name And Type
  3226. ComponentLibraryIdentifier115=MKP_lib.DbLib/Components
  3227. ComponentDesignItemID115=SS56F
  3228. ComponentSymbolReference115=SCHOTTKY
  3229. ComponentUpdate115=1
  3230. ComponentIsDeviceSheet115=0
  3231. ComponentLibIdentifierKind116=Library Name And Type
  3232. ComponentLibraryIdentifier116=MKP_lib.DbLib/Components
  3233. ComponentDesignItemID116=SX20Y025000B91T002
  3234. ComponentSymbolReference116=Q22FA12800078
  3235. ComponentUpdate116=1
  3236. ComponentIsDeviceSheet116=0
  3237. ComponentLibIdentifierKind117=Library Name And Type
  3238. ComponentLibraryIdentifier117=MKP_lib.DbLib/Components
  3239. ComponentDesignItemID117=TAJB476K010RNJ
  3240. ComponentSymbolReference117=CAPP
  3241. ComponentUpdate117=1
  3242. ComponentIsDeviceSheet117=0
  3243. ComponentLibIdentifierKind118=Library Name And Type
  3244. ComponentLibraryIdentifier118=MKP_lib.DbLib/Components
  3245. ComponentDesignItemID118=TannhietSOM
  3246. ComponentSymbolReference118=Tannhiet
  3247. ComponentUpdate118=1
  3248. ComponentIsDeviceSheet118=0
  3249. ComponentLibIdentifierKind119=Library Name And Type
  3250. ComponentLibraryIdentifier119=MKP_lib.DbLib/Components
  3251. ComponentDesignItemID119=TP
  3252. ComponentSymbolReference119=TP
  3253. ComponentUpdate119=1
  3254. ComponentIsDeviceSheet119=0
  3255. ComponentLibIdentifierKind120=Library Name And Type
  3256. ComponentLibraryIdentifier120=MKP_lib.DbLib/Components
  3257. ComponentDesignItemID120=TS-1090S-AR02026
  3258. ComponentSymbolReference120=SW-4PIN
  3259. ComponentUpdate120=1
  3260. ComponentIsDeviceSheet120=0
  3261. ComponentLibIdentifierKind121=Library Name And Type
  3262. ComponentLibraryIdentifier121=MKP_lib.DbLib/Components
  3263. ComponentDesignItemID121=UMK212B7104KG-T
  3264. ComponentSymbolReference121=CAP
  3265. ComponentUpdate121=1
  3266. ComponentIsDeviceSheet121=0
  3267. ComponentLibIdentifierKind122=Library Name And Type
  3268. ComponentLibraryIdentifier122=MKP_lib.DbLib/Components
  3269. ComponentDesignItemID122=UPZ2012E102-1R5TF
  3270. ComponentSymbolReference122=FB
  3271. ComponentUpdate122=1
  3272. ComponentIsDeviceSheet122=0
  3273. ComponentLibIdentifierKind123=Library Name And Type
  3274. ComponentLibraryIdentifier123=MKP_lib.DbLib/Components
  3275. ComponentDesignItemID123=VH3.96-3A
  3276. ComponentSymbolReference123=CON-3PIN
  3277. ComponentUpdate123=1
  3278. ComponentIsDeviceSheet123=0
  3279. ComponentLibIdentifierKind124=Library Name And Type
  3280. ComponentLibraryIdentifier124=MKP_lib.DbLib/Components
  3281. ComponentDesignItemID124=XL-1608SURC-06
  3282. ComponentSymbolReference124=LED
  3283. ComponentUpdate124=1
  3284. ComponentIsDeviceSheet124=0
  3285. ComponentLibIdentifierKind125=Library Name And Type
  3286. ComponentLibraryIdentifier125=MKP_lib.DbLib/Components
  3287. ComponentDesignItemID125=XL-1608SYGC-04
  3288. ComponentSymbolReference125=LED
  3289. ComponentUpdate125=1
  3290. ComponentIsDeviceSheet125=0
  3291. ComponentLibIdentifierKind126=Library Name And Type
  3292. ComponentLibraryIdentifier126=MKP_lib.DbLib/Components
  3293. ComponentDesignItemID126=XL-DZ304SURD/3
  3294. ComponentSymbolReference126=LED3
  3295. ComponentUpdate126=1
  3296. ComponentIsDeviceSheet126=0
  3297. ComponentLibIdentifierKind127=Library Name And Type
  3298. ComponentLibraryIdentifier127=MKP_lib.DbLib/Components
  3299. ComponentDesignItemID127=YI201209U601-2R5T
  3300. ComponentSymbolReference127=FB
  3301. ComponentUpdate127=1
  3302. ComponentIsDeviceSheet127=0
  3303. ComponentLibIdentifierKind128=Library Name And Type
  3304. ComponentLibraryIdentifier128=MKP_lib.DbLib/Components
  3305. ComponentDesignItemID128=YJL2305A
  3306. ComponentSymbolReference128=P-Channel
  3307. ComponentUpdate128=1
  3308. ComponentIsDeviceSheet128=0
  3309. ComponentLibIdentifierKind129=Library Name And Type
  3310. ComponentLibraryIdentifier129=MKP_lib.DbLib/Components
  3311. ComponentDesignItemID129=YT8531SH-CA
  3312. ComponentSymbolReference129=YT8531SH-CA
  3313. ComponentUpdate129=1
  3314. ComponentIsDeviceSheet129=0
  3315. ComponentLibIdentifierKind130=Library Name And Type
  3316. ComponentLibraryIdentifier130=MKP_lib.DbLib/Components
  3317. ComponentDesignItemID130=ZX-PZ2.54-2-3PZZ
  3318. ComponentSymbolReference130=CON-3x2PIN
  3319. ComponentUpdate130=1
  3320. ComponentIsDeviceSheet130=0
  3321. ComponentLibIdentifierKind131=Library Name And Type
  3322. ComponentLibraryIdentifier131=MKP_lib.DbLib
  3323. ComponentDesignItemID131=CSD19538Q3A
  3324. ComponentSymbolReference131=Mosfet N-Chanel
  3325. ComponentUpdate131=1
  3326. ComponentIsDeviceSheet131=0
  3327. ComponentLibIdentifierKind132=Library Name And Type
  3328. ComponentLibraryIdentifier132=MKP_lib.DbLib
  3329. ComponentDesignItemID132=JUMP-2.54-2PIN-M-TH
  3330. ComponentSymbolReference132=CON-2PIN
  3331. ComponentUpdate132=1
  3332. ComponentIsDeviceSheet132=0
  3333. ComponentLibIdentifierKind133=Library Name And Type
  3334. ComponentLibraryIdentifier133=MKP_lib.DbLib
  3335. ComponentDesignItemID133=PH-2A
  3336. ComponentSymbolReference133=CON-2PIN
  3337. ComponentUpdate133=1
  3338. ComponentIsDeviceSheet133=0
  3339. ComponentLibIdentifierKind134=Library Name And Type
  3340. ComponentLibraryIdentifier134=MYC_LR3568.SchLib
  3341. ComponentDesignItemID134=MYC-LR3568X
  3342. ComponentSymbolReference134=MYC-LR3568X
  3343. ComponentUpdate134=1
  3344. ComponentIsDeviceSheet134=0
  3345. [Comparison Options]
  3346. ComparisonOptions0=Kind=Net|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
  3347. ComparisonOptions1=Kind=Net Class|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
  3348. ComparisonOptions2=Kind=Component Class|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
  3349. ComparisonOptions3=Kind=Rule|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
  3350. ComparisonOptions4=Kind=Differential Pair|MinPercent=50|MinMatch=1|ShowMatch=0|UseName=0|InclAllRules=0
  3351. ComparisonOptions5=Kind=Structure Class|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
  3352. [SmartPDF]
  3353. 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