Camera_Box_RK3562.PrjPcb 112 KB

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