| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585 |
- [Design]
- Version=1.0
- HierarchyMode=0
- ChannelRoomNamingStyle=0
- ReleasesFolder=
- ChannelDesignatorFormatString=$Component_$RoomName
- ChannelRoomLevelSeperator=_
- OpenOutputs=1
- ArchiveProject=0
- TimestampOutput=0
- SeparateFolders=0
- TemplateLocationPath=
- PinSwapBy_Netlabel=1
- PinSwapBy_Pin=1
- AllowPortNetNames=0
- AllowSheetEntryNetNames=1
- AppendSheetNumberToLocalNets=0
- NetlistSinglePinNets=0
- DefaultConfiguration=Sources
- UserID=0xFFFFFFFF
- DefaultPcbProtel=1
- DefaultPcbPcad=0
- ReorderDocumentsOnCompile=1
- NameNetsHierarchically=0
- PowerPortNamesTakePriority=0
- AutoSheetNumbering=0
- AutoCrossReferences=0
- NewIndexingOfSheetSymbols=0
- PushECOToAnnotationFile=1
- DItemRevisionGUID=
- ReportSuppressedErrorsInMessages=0
- FSMCodingStyle=eFMSDropDownList_OneProcess
- FSMEncodingStyle=eFMSDropDownList_OneHot
- IsProjectConflictPreventionWarningsEnabled=1
- IsVirtualBomDocumentRemoved=0
- OutputPath=
- LogFolderPath=
- ManagedProjectGUID=
- IncludeDesignInRelease=0
- CrossRefSheetStyle=1
- CrossRefLocationStyle=1
- CrossRefPorts=3
- CrossRefCrossSheets=1
- CrossRefSheetEntries=0
- CrossRefFollowFromMainSettings=1
- [Preferences]
- PrefsVaultGUID=
- PrefsRevisionGUID=
- [Document1]
- DocumentPath=Block_Diagram.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=15
- DoLibraryUpdate=0
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=BCYXRSKT
- [Document2]
- DocumentPath=POWER.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=0
- DoLibraryUpdate=0
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=YZVKBUMY
- [Document3]
- DocumentPath=CORE_RV1106.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=14
- DoLibraryUpdate=0
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=TYDQGRHT
- [Document4]
- DocumentPath=AUDIO.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=2
- DoLibraryUpdate=0
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=FQUWCDSP
- [Document5]
- DocumentPath=MCU_RX130-140.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=16
- DoLibraryUpdate=0
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=UGELCSZG
- [Document6]
- DocumentPath=CAMERA.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=3
- DoLibraryUpdate=0
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=CPLWNQMC
- [Document7]
- DocumentPath=UART.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=4
- DoLibraryUpdate=0
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=IBCFWMTB
- [Document8]
- DocumentPath=Function.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=5
- DoLibraryUpdate=0
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=XTFNUDHB
- [Document9]
- DocumentPath=TF.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=6
- DoLibraryUpdate=0
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=DYCPCOVH
- [Document10]
- DocumentPath=4G.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=7
- DoLibraryUpdate=0
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=HBTPIULA
- [Document11]
- DocumentPath=GPS.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=8
- DoLibraryUpdate=0
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=XBHZKGQY
- [Document12]
- DocumentPath=ETH.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=9
- DoLibraryUpdate=0
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=PURCMWXV
- [Document13]
- DocumentPath=INPUT.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=10
- DoLibraryUpdate=0
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=BCQXQIZB
- [Document14]
- DocumentPath=OUTPUT.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=11
- DoLibraryUpdate=0
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=QOXORCSF
- [Document15]
- DocumentPath=CONN.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=13
- DoLibraryUpdate=1
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=SAITEOPN
- [Document16]
- DocumentPath=CamBox_RV11061\CamBox_RV1106.PcbLib
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=-1
- DoLibraryUpdate=1
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=1
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=TCHWHPCA
- [Document17]
- DocumentPath=CamBox_RV11061\CamBox_RV1106.SCHLIB
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=-1
- DoLibraryUpdate=1
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=1
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=PJEWJJUC
- [Document18]
- DocumentPath=CamBox_RV1106.IntLib
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=-1
- DoLibraryUpdate=1
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=1
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=
- [Document19]
- DocumentPath=CamBox_RV1106_lot_1000.PcbDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=-1
- DoLibraryUpdate=1
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=1
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=DNIDONKW
- [Document20]
- DocumentPath=MECHANICALS.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=17
- DoLibraryUpdate=0
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=ECTNIVSY
- [Document21]
- DocumentPath=CamBox_RV1106.OutJob
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=-1
- DoLibraryUpdate=1
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=1
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=
- [Document22]
- DocumentPath=CamBox_RV1106.PCBDwf
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=-1
- DoLibraryUpdate=1
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=1
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=
- [ProjectVariant1]
- UniqueID=E3D06398-A058-42DC-91D4-E4FCEEED59B6
- Description=CameraBox
- AllowFabrication=0
- ParameterCount=4
- VariationCount=23
- Variation1=Designator=R28|UniqueId=\PGKVMOGM|Kind=1|AlternatePart=
- Variation2=Designator=R32|UniqueId=\EHOLIYFG|Kind=1|AlternatePart=
- Variation3=Designator=C109|UniqueId=\HMEZJDJO|Kind=1|AlternatePart=
- Variation4=Designator=C114|UniqueId=\RSCQUYGB|Kind=1|AlternatePart=
- Variation5=Designator=C187|UniqueId=\WUOFJAQV|Kind=1|AlternatePart=
- Variation6=Designator=R117|UniqueId=\YWMIUTDW|Kind=1|AlternatePart=
- Variation7=Designator=R118|UniqueId=\OYEEWPHO|Kind=1|AlternatePart=
- Variation8=Designator=C163|UniqueId=\FLDWJTMA|Kind=1|AlternatePart=
- Variation9=Designator=C164|UniqueId=\RLEMRSVZ|Kind=1|AlternatePart=
- Variation10=Designator=R160|UniqueId=\GTVIZXDC|Kind=1|AlternatePart=
- Variation11=Designator=R174|UniqueId=\BXITKBOI|Kind=1|AlternatePart=
- Variation12=Designator=R176|UniqueId=\ZWGPDMSA|Kind=1|AlternatePart=
- Variation13=Designator=R177|UniqueId=\NCLNTMOM|Kind=1|AlternatePart=
- Variation14=Designator=R180|UniqueId=\OZQHEAGH|Kind=1|AlternatePart=
- Variation15=Designator=R184|UniqueId=\FAABKJMQ|Kind=1|AlternatePart=
- Variation16=Designator=R183|UniqueId=\CBERASUA|Kind=1|AlternatePart=
- Variation17=Designator=R170|UniqueId=\KPAKVTZV|Kind=1|AlternatePart=
- Variation18=Designator=R225|UniqueId=\HTBUCSTY|Kind=1|AlternatePart=
- Variation19=Designator=R?|UniqueId=\SYIFLMHS|Kind=1|AlternatePart=
- Variation20=Designator=D34|UniqueId=\AJSNUYRF|Kind=1|AlternatePart=
- Variation21=Designator=C147|UniqueId=\RGPLURCD|Kind=1|AlternatePart=
- Variation22=Designator=R?|UniqueId=\JGFXGPCO|Kind=1|AlternatePart=
- Variation23=Designator=R?|UniqueId=\SWISXZIF|Kind=1|AlternatePart=
- ParamVariationCount=0
- [Parameter2_1]
- Name=author
- Value=Hainv
- [Parameter2_2]
- Name=Cus
- Value=Aithings
- [Parameter2_3]
- Name=des
- Value=Cambox_2026
- [Parameter2_4]
- Name=ver
- Value=4.0
- [GeneratedDocument1]
- DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Design Rule Check - CamBox_RV1106_lot_1000.html
- DItemRevisionGUID=
- [Configuration1]
- Name=Sources
- ParameterCount=0
- ConstraintFileCount=0
- ReleaseItemId=
- Variant=[No Variations]
- OutputJobsCount=0
- ContentTypeGUID=CB6F2064-E317-11DF-B822-12313F0024A2
- ConfigurationType=Source
- [Generic_SmartPDF]
- AutoOpenFile=-1
- AutoOpenOutJob=-1
- [Generic_SmartPDFSettings]
- ProjectMode=-1
- ZoomPrecision=50
- AddNetsInformation=-1
- AddNetPins=-1
- AddNetNetLabels=-1
- AddNetPorts=-1
- ShowComponentParameters=-1
- GlobalBookmarks=0
- ExportBOM=0
- TemplateFilename=Board Stack Report.XLT
- TemplateStoreRelative=-1
- PCB_PrintColor=1
- SCH_PrintColor=0
- PrintQuality=-4
- SCH_ShowNoErc=-1
- SCH_ShowParameter=-1
- SCH_ShowProbes=-1
- SCH_ShowBlankets=-1
- SCH_NoERCSymbolsToShow="Thin Cross","Thick Cross","Small Cross",Checkbox,Triangle
- SCH_ShowNote=-1
- SCH_ShowNoteCollapsed=-1
- Wir_PrintColor=0
- Ldr_PrintColor=0
- SCH_ExpandLogicalToPhysical=-1
- SCH_VariantName=[No Variations]
- SCH_ExpandComponentDesignators=-1
- SCH_ExpandNetlabels=-1
- SCH_ExpandPorts=-1
- SCH_ExpandSheetNumber=-1
- SCH_ExpandDocumentNumber=-1
- SCH_HasExpandLogicalToPhysicalSheets=-1
- SaveSettingsToOutJob=-1
- [Generic_EDE]
- OutputDir=
- [Generic_SimulationProfiles]
- ActiveProfile=ALGJRBAG
- ProfileId0=ALGJRBAG
- ProfileName0=Mixed Sim Configuration
- OutputType0=AdvSimNetlist
- ConfigParameters0=OP_Analysis=False|TRAN_Analysis=True|DC_Analysis=False|AC_Analysis=False|TF_Analysis=False|PZ_Analysis=False|Noise_Analysis=False|TRAN_FourierAnalysis=False|TempSweep_Analysis=False|ParamSweep_Analysis=False|MonteCarlo_Analysis=False|TF_Enabled=False|TF_Source=|TF_Reference=0|PZ_Enabled=False|PZ_Node1=|PZ_Node2=0|PZ_Node3=|PZ_Node4=0|PZ_AnalType=PZ|PZ_TfType=VOL|AnalysesDataSavedIndex=4|DC_ShowMeasTableChart=False|DC_PrimarySource=|DC_PrimaryStart=|DC_PrimaryStop=|DC_PrimaryStep=|DC_EnableSecondary=False|DC_SecondarySource=|DC_SecondaryStart=|DC_SecondaryStop=|DC_SecondaryStep=|Noise_Enabled=False|Noise_Source=|Noise_Output=|Noise_Reference=0|Noise_Start_UserValue=|Noise_Start=1K|Noise_Stop_UserValue=|Noise_Stop=1G|Noise_TestPoints_UserValue=|Noise_TestPoints=10|Noise_PointsPerSummary=0|Noise_SweepType=DEC|AC_StartFrequency_UserValue=|AC_StartFrequency=1K|AC_StopFrequency_UserValue=|AC_StopFrequency=1G|AC_TestPoints_UserValue=|AC_TestPoints=10|AC_SweepType=DEC|AC_ShowMeasTableChart=False|TRAN_StartTime_UserValue=|TRAN_StartTime=0|TRAN_StopTime_UserValue=|TRAN_StopTime=5u|TRAN_StepTime_UserValue=|TRAN_StepTime=0.1u|TRAN_MaxStepTime_UserValue=|TRAN_MaxStepTime=0.1u|TRAN_AlwaysSetDefaults=False|TRAN_DefaultCycles_UserValue=|TRAN_DefaultCycles=5|TRAN_DefaultPointsPerCycle_UserValue=|TRAN_DefaultPointsPerCycle=25|TRAN_UseInitialConditions=False|TRAN_FourierEnabled=False|TRAN_FourierFundFreq_UserValue=|TRAN_FourierFundFreq=1Meg|TRAN_FourierNumHarmonics_UserValue=|TRAN_FourierNumHarmonics=10|TRAN_ShowMeasTableChart=False|TempSweep_Start_UserValue=|TempSweep_Start=-10|TempSweep_Stop_UserValue=|TempSweep_Stop=60|TempSweep_Step_UserValue=|TempSweep_Step=10|ParamSweep_Parameter1=|ParamSweep_Type1=LIN|ParamSweep_Start1=|ParamSweep_Stop1=|ParamSweep_Step1=|ParamSweep_SweepType1=False|ParamSweep_SecondaryEnabled=False|ParamSweep_Parameter2=|ParamSweep_Type2=LIN|ParamSweep_Start2=|ParamSweep_Stop2=|ParamSweep_Step2=|ParamSweep_SweepType2=False|MonteCarlo_NumberOfRuns=10|MonteCarlo_DistributionType=GAUSS|MonteCarlo_Seed=-1|MonteCarlo_ResistorTolerance=10%|MonteCarlo_ResistorTolerance_UserValue=10%|MonteCarlo_CapacitorTolerance=10%|MonteCarlo_CapacitorTolerance_UserValue=10%|MonteCarlo_InductorTolerance=10%|MonteCarlo_InductorTolerance_UserValue=10%|MonteCarlo_TransistorTolerance=10%|MonteCarlo_TransistorTolerance_UserValue=10%|MonteCarlo_DCSourceTolerance=10%|MonteCarlo_DCSourceTolerance_UserValue=10%|MonteCarlo_DigitalTpTolerance=10%|MonteCarlo_DigitalTpTolerance_UserValue=10%|Sensitivity_Analysis=False|Sensitivity_GroupDeviationsEnabled=False|Sensitivity_GroupResistorEnabled=True|Sensitivity_GroupResistorDeviation_UserValue=|Sensitivity_GroupResistorDeviation=1m|Sensitivity_GroupCapacitorEnabled=False|Sensitivity_GroupCapacitorDeviation_UserValue=|Sensitivity_GroupCapacitorDeviation=1m|Sensitivity_GroupInductorEnabled=False|Sensitivity_GroupInductorDeviation_UserValue=|Sensitivity_GroupInductorDeviation=1m|Sensitivity_GroupTransistorEnabled=False|Sensitivity_GroupTransistorDeviation_UserValue=|Sensitivity_GroupTransistorDeviation=1m|Sensitivity_GroupDcSourceEnabled=False|Sensitivity_GroupDcSourceDeviation_UserValue=|Sensitivity_GroupDcSourceDeviation=1m|Sensitivity_GroupGlobalParameterEnabled=False|Sensitivity_GroupGlobalParameterDeviation_UserValue=|Sensitivity_GroupGlobalParameterDeviation=1m|Sensitivity_CustomDeviationsEnabled=True|OldCfgLoaded=True|SimViewSetup=ShowActiveSignalsProbes|OPTION_Method=Trapezoidal|OPTION_SpiceRefNode_UserValue=|OPTION_SpiceRefNode=GND|OPTION_DVCC_UserValue=|OPTION_DVCC=5|OPTION_DVDD_UserValue=|OPTION_DVDD=15|SheetsToNetlist=0
- [OutputGroup1]
- Name=Netlist Outputs
- Description=
- TargetPrinter=Microsoft Print to PDF
- PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
- OutputType1=CadnetixNetlist
- OutputName1=Cadnetix Netlist
- OutputDocumentPath1=
- OutputVariantName1=
- OutputDefault1=0
- OutputType2=CalayNetlist
- OutputName2=Calay Netlist
- OutputDocumentPath2=
- OutputVariantName2=
- OutputDefault2=0
- OutputType3=EDIF
- OutputName3=EDIF for PCB
- OutputDocumentPath3=
- OutputVariantName3=
- OutputDefault3=0
- OutputType4=EESofNetlist
- OutputName4=EESof Netlist
- OutputDocumentPath4=
- OutputVariantName4=
- OutputDefault4=0
- OutputType5=IntergraphNetlist
- OutputName5=Intergraph Netlist
- OutputDocumentPath5=
- OutputVariantName5=
- OutputDefault5=0
- OutputType6=MentorBoardStationNetlist
- OutputName6=Mentor BoardStation Netlist
- OutputDocumentPath6=
- OutputVariantName6=
- OutputDefault6=0
- OutputType7=MultiWire
- OutputName7=MultiWire
- OutputDocumentPath7=
- OutputVariantName7=
- OutputDefault7=0
- OutputType8=OrCadPCB2Netlist
- OutputName8=Orcad/PCB2 Netlist
- OutputDocumentPath8=
- OutputVariantName8=
- OutputDefault8=0
- OutputType9=PADSNetlist
- OutputName9=PADS ASCII Netlist
- OutputDocumentPath9=
- OutputVariantName9=
- OutputDefault9=0
- OutputType10=Pcad
- OutputName10=Pcad for PCB
- OutputDocumentPath10=
- OutputVariantName10=
- OutputDefault10=0
- OutputType11=PCADNetlist
- OutputName11=PCAD Netlist
- OutputDocumentPath11=
- OutputVariantName11=
- OutputDefault11=0
- OutputType12=PCADnltNetlist
- OutputName12=PCADnlt Netlist
- OutputDocumentPath12=
- OutputVariantName12=
- OutputDefault12=0
- OutputType13=Protel2Netlist
- OutputName13=Protel2 Netlist
- OutputDocumentPath13=
- OutputVariantName13=
- OutputDefault13=0
- OutputType14=ProtelNetlist
- OutputName14=Protel
- OutputDocumentPath14=
- OutputVariantName14=
- OutputDefault14=0
- OutputType15=RacalNetlist
- OutputName15=Racal Netlist
- OutputDocumentPath15=
- OutputVariantName15=
- OutputDefault15=0
- OutputType16=RINFNetlist
- OutputName16=RINF Netlist
- OutputDocumentPath16=
- OutputVariantName16=
- OutputDefault16=0
- OutputType17=SciCardsNetlist
- OutputName17=SciCards Netlist
- OutputDocumentPath17=
- OutputVariantName17=
- OutputDefault17=0
- OutputType18=TangoNetlist
- OutputName18=Tango Netlist
- OutputDocumentPath18=
- OutputVariantName18=
- OutputDefault18=0
- OutputType19=TelesisNetlist
- OutputName19=Telesis Netlist
- OutputDocumentPath19=
- OutputVariantName19=
- OutputDefault19=0
- OutputType20=WireListNetlist
- OutputName20=WireList Netlist
- OutputDocumentPath20=
- OutputVariantName20=
- OutputDefault20=0
- OutputType21=XSpiceNetlist
- OutputName21=Mixed Sim Netlist
- OutputDocumentPath21=
- OutputVariantName21=
- OutputDefault21=0
- [OutputGroup2]
- Name=Simulator Outputs
- Description=
- TargetPrinter=Microsoft Print to PDF
- PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
- OutputType1=AdvSimNetlist
- OutputName1=Mixed Sim
- OutputDocumentPath1=
- OutputVariantName1=
- OutputDefault1=0
- Configuration1_Name1=OutputConfigurationParameter1
- Configuration1_Item1=OP_Analysis=False|TRAN_Analysis=True|DC_Analysis=False|AC_Analysis=False|TF_Analysis=False|PZ_Analysis=False|Noise_Analysis=False|TRAN_FourierAnalysis=False|TempSweep_Analysis=False|ParamSweep_Analysis=False|MonteCarlo_Analysis=False|TF_Enabled=False|TF_Source= |TF_Reference=0|PZ_Enabled=False|PZ_Node1= |PZ_Node2=0|PZ_Node3= |PZ_Node4=0|PZ_AnalType=PZ|PZ_TfType=VOL|AnalysesDataSavedIndex=4|DC_ShowMeasTableChart=False|DC_PrimarySource= |DC_PrimaryStart= |DC_PrimaryStop= |DC_PrimaryStep= |DC_EnableSecondary=False|DC_SecondarySource= |DC_SecondaryStart= |DC_SecondaryStop= |DC_SecondaryStep= |Noise_Enabled=False|Noise_Source= |Noise_Output= |Noise_Reference=0|Noise_Start_UserValue= |Noise_Start=1K|Noise_Stop_UserValue= |Noise_Stop=1G|Noise_TestPoints_UserValue= |Noise_TestPoints=10|Noise_PointsPerSummary=0|Noise_SweepType=DEC|AC_StartFrequency_UserValue= |AC_StartFrequency=1K|AC_StopFrequency_UserValue= |AC_StopFrequency=1G|AC_TestPoints_UserValue= |AC_TestPoints=10|AC_SweepType=DEC|AC_ShowMeasTableChart=False|TRAN_StartTime_UserValue= |TRAN_StartTime=0|TRAN_StopTime_UserValue= |TRAN_StopTime=5u|TRAN_StepTime_UserValue= |TRAN_StepTime=0.1u|TRAN_MaxStepTime_UserValue= |TRAN_MaxStepTime=0.1u|TRAN_AlwaysSetDefaults=False|TRAN_DefaultCycles_UserValue= |TRAN_DefaultCycles=5|TRAN_DefaultPointsPerCycle_UserValue= |TRAN_DefaultPointsPerCycle=25|TRAN_UseInitialConditions=False|TRAN_FourierEnabled=False|TRAN_FourierFundFreq_UserValue= |TRAN_FourierFundFreq=1Meg|TRAN_FourierNumHarmonics_UserValue= |TRAN_FourierNumHarmonics=10|TRAN_ShowMeasTableChart=False|TempSweep_Start_UserValue= |TempSweep_Start=-10|TempSweep_Stop_UserValue= |TempSweep_Stop=60|TempSweep_Step_UserValue= |TempSweep_Step=10|ParamSweep_Parameter1= |ParamSweep_Type1=LIN|ParamSweep_Start1= |ParamSweep_Stop1= |ParamSweep_Step1= |ParamSweep_SweepType1=False|ParamSweep_SecondaryEnabled=False|ParamSweep_Parameter2= |ParamSweep_Type2=LIN|ParamSweep_Start2= |ParamSweep_Stop2= |ParamSweep_Step2= |ParamSweep_SweepType2=False|MonteCarlo_NumberOfRuns=10|MonteCarlo_DistributionType=GAUSS|MonteCarlo_Seed=-1|MonteCarlo_ResistorTolerance=10%|MonteCarlo_ResistorTolerance_UserValue=10%|MonteCarlo_CapacitorTolerance=10%|MonteCarlo_CapacitorTolerance_UserValue=10%|MonteCarlo_InductorTolerance=10%|MonteCarlo_InductorTolerance_UserValue=10%|MonteCarlo_TransistorTolerance=10%|MonteCarlo_TransistorTolerance_UserValue=10%|MonteCarlo_DCSourceTolerance=10%|MonteCarlo_DCSourceTolerance_UserValue=10%|MonteCarlo_DigitalTpTolerance=10%|MonteCarlo_DigitalTpTolerance_UserValue=10%|Sensitivity_Analysis=False|Sensitivity_GroupDeviationsEnabled=False|Sensitivity_GroupResistorEnabled=True|Sensitivity_GroupResistorDeviation_UserValue= |Sensitivity_GroupResistorDeviation=1m|Sensitivity_GroupCapacitorEnabled=False|Sensitivity_GroupCapacitorDeviation_UserValue= |Sensitivity_GroupCapacitorDeviation=1m|Sensitivity_GroupInductorEnabled=False|Sensitivity_GroupInductorDeviation_UserValue= |Sensitivity_GroupInductorDeviation=1m|Sensitivity_GroupTransistorEnabled=False|Sensitivity_GroupTransistorDeviation_UserValue= |Sensitivity_GroupTransistorDeviation=1m|Sensitivity_GroupDcSourceEnabled=False|Sensitivity_GroupDcSourceDeviation_UserValue= |Sensitivity_GroupDcSourceDeviation=1m|Sensitivity_GroupGlobalParameterEnabled=False|Sensitivity_GroupGlobalParameterDeviation_UserValue= |Sensitivity_GroupGlobalParameterDeviation=1m|Sensitivity_CustomDeviationsEnabled=True|OldCfgLoaded=True|SimViewSetup=ShowActiveSignalsProbes|OPTION_Method=Trapezoidal|OPTION_SpiceRefNode_UserValue= |OPTION_SpiceRefNode=GND|OPTION_DVCC_UserValue= |OPTION_DVCC=5|OPTION_DVDD_UserValue= |OPTION_DVDD=15|SheetsToNetlist=0|Record=AdvSimNetlistView|SimulationName=Mixed Sim Configuration|ProfileId=ALGJRBAG
- [OutputGroup3]
- Name=Documentation Outputs
- Description=
- TargetPrinter=Microsoft Print to PDF
- PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=0
- OutputType1=Composite
- OutputName1=Composite Drawing
- OutputDocumentPath1=
- OutputVariantName1=[No Variations]
- OutputDefault1=0
- 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
- OutputType2=PCB 3D Print
- OutputName2=PCB 3D Print
- OutputDocumentPath2=
- OutputVariantName2=[No Variations]
- OutputDefault2=0
- 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
- OutputType3=PCB 3D Video
- OutputName3=PCB 3D Video
- OutputDocumentPath3=
- OutputVariantName3=[No Variations]
- OutputDefault3=0
- 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
- OutputType4=PCB Print
- OutputName4=PCB Prints
- OutputDocumentPath4=
- OutputVariantName4=[No Variations]
- OutputDefault4=0
- 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
- OutputType5=PCBDrawing
- OutputName5=Draftsman
- OutputDocumentPath5=
- OutputVariantName5=[No Variations]
- OutputDefault5=0
- 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
- OutputType6=PCBLIB Print
- OutputName6=PCBLIB Prints
- OutputDocumentPath6=
- OutputVariantName6=[No Variations]
- OutputDefault6=0
- 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
- OutputType7=PDF3D
- OutputName7=PDF3D
- OutputDocumentPath7=
- OutputVariantName7=[No Variations]
- OutputDefault7=0
- 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
- OutputType8=PDF3D MBA
- OutputName8=PDF3D MBA
- OutputDocumentPath8=
- OutputVariantName8=
- OutputDefault8=0
- 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
- OutputType9=Report Print
- OutputName9=Report Prints
- OutputDocumentPath9=
- OutputVariantName9=
- OutputDefault9=0
- 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
- OutputType10=Schematic Print
- OutputName10=Schematic Prints
- OutputDocumentPath10=
- OutputVariantName10=
- OutputDefault10=0
- PageOptions10=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=0.94|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=A4|PaperIndex=9
- Configuration10_Name1=OutputConfigurationParameter1
- 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_RV1106\MCU_RX130-140.SchDoc
- OutputType11=SimView Print
- OutputName11=SimView Prints
- OutputDocumentPath11=
- OutputVariantName11=
- OutputDefault11=0
- 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
- OutputType12=Harness Layout Drawing Print
- OutputName12=Harness Layout Drawing Prints
- OutputDocumentPath12=
- OutputVariantName12=
- OutputDefault12=0
- 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
- OutputType13=Harness Wiring Diagram Print
- OutputName13=Harness Wiring Diagram Prints
- OutputDocumentPath13=
- OutputVariantName13=
- OutputDefault13=0
- 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
- [OutputGroup4]
- Name=Assembly Outputs
- Description=
- TargetPrinter=Microsoft Print to PDF
- PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
- OutputType1=Assembly
- OutputName1=Assembly Drawings
- OutputDocumentPath1=
- OutputVariantName1=[No Variations]
- OutputDefault1=0
- 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
- OutputType2=Pick Place
- OutputName2=Generates pick and place files
- OutputDocumentPath2=
- OutputVariantName2=[No Variations]
- OutputDefault2=0
- Configuration2_Name1=ForceUpdateSettings
- Configuration2_Item1=False
- Configuration2_Name2=OutputConfigurationParameter1
- Configuration2_Item2=Record=PickPlaceView|Units=Metric|GenerateCSVFormat=True|GenerateTextFormat=False|ShowUnits=False|Separator=.|ExcludeFilterParam=False|IncludeVariations=False|IncludeStandardNoBOM=False|Filter= |FilterActive=False|YFlip=False|DifferentFootprints=False|Column#1=Name:Designator,Fixed:True,Metric:False,Visible:True,Sort:None,Position:0|Column#2=Name:Comment,Fixed:True,Metric:False,Visible:True,Sort:None,Position:1|Column#3=Name:Layer,Fixed:True,Metric:False,Visible:True,Sort:None,Position:2|Column#4=Name:Footprint,Fixed:True,Metric:False,Visible:True,Sort:None,Position:3|Column#5=Name:Footprint Description,Fixed:True,Metric:False,Visible:False,Sort:None,Position:4|Column#6=Name:Center-X,Fixed:True,Metric:True,Visible:True,Sort:None,Position:5|Column#7=Name:Center-Y,Fixed:True,Metric:True,Visible:True,Sort:None,Position:6|Column#8=Name:Rotation,Fixed:True,Metric:False,Visible:True,Sort:None,Position:7|Column#9=Name:Description,Fixed:True,Metric:False,Visible:True,Sort:None,Position:8|Column#10=Name:ComponentKind,Fixed:True,Metric:False,Visible:False,Sort:None,Position:9|Column#11=Name:Height,Fixed:True,Metric:True,Visible:False,Sort:None,Position:10|Column#12=Name:Ref-X,Fixed:True,Metric:True,Visible:False,Sort:None,Position:11|Column#13=Name:Ref-Y,Fixed:True,Metric:True,Visible:False,Sort:None,Position:12|Column#14=Name:Pad-X,Fixed:True,Metric:True,Visible:False,Sort:None,Position:13|Column#15=Name:Pad-Y,Fixed:True,Metric:True,Visible:False,Sort:None,Position:14|Column#16=Name:Variation,Fixed:True,Metric:False,Visible:False,Sort:None,Position:15|Column#17=Name:ComponentLink6Description,Fixed:False,Metric:False,Visible:False,Sort:None,Position:29,Type:0|Column#18=Name:Continuous Drain Current (ID),Fixed:False,Metric:False,Visible:False,Sort:None,Position:32,Type:0|Column#19=Name:Operating Temperature,Fixed:False,Metric:False,Visible:False,Sort:None,Position:67,Type:0|Column#20=Name:Manufacturer Part Number,Fixed:False,Metric:False,Visible:False,Sort:None,Position:55,Type:0|Column#21=Name:ComponentLink3Description,Fixed:False,Metric:False,Visible:False,Sort:None,Position:23,Type:0|Column#22=Name:Kieu_Chan,Fixed:False,Metric:False,Visible:False,Sort:None,Position:46,Type:0|Column#23=Name:Detailed Value,Fixed:False,Metric:False,Visible:False,Sort:None,Position:37,Type:0|Column#24=Name:REACH SVHC,Fixed:False,Metric:False,Visible:False,Sort:None,Position:80,Type:0|Column#25=Name:MPN,Fixed:False,Metric:False,Visible:False,Sort:None,Position:63,Type:0|Column#26=Name:Pricing (USD),Fixed:False,Metric:False,Visible:False,Sort:None,Position:75,Type:0|Column#27=Name:Threshold Voltage,Fixed:False,Metric:False,Visible:False,Sort:None,Position:93,Type:0|Column#28=Name:Package Quantity,Fixed:False,Metric:False,Visible:False,Sort:None,Position:68,Type:0|Column#29=Name:Fall Time,Fixed:False,Metric:False,Visible:False,Sort:None,Position:42,Type:0|Column#30=Name:Length,Fixed:False,Metric:False,Visible:False,Sort:None,Position:48,Type:0|Column#31=Name:ComponentLink5URL,Fixed:False,Metric:False,Visible:False,Sort:None,Position:28,Type:0|Column#32=Name:Max Operating Temperature,Fixed:False,Metric:False,Visible:False,Sort:None,Position:57,Type:0|Column#33=Name:Min Operating Temperature,Fixed:False,Metric:False,Visible:False,Sort:None,Position:60,Type:0|Column#34=Name:PROJECT,Fixed:False,Metric:False,Visible:False,Sort:None,Position:77,Type:0|Column#35=Name:ComponentLink4URL,Fixed:False,Metric:False,Visible:False,Sort:None,Position:26,Type:0|Column#36=Name:Category,Fixed:False,Metric:False,Visible:False,Sort:None,Position:16,Type:0|Column#37=Name:Packaging,Fixed:False,Metric:False,Visible:False,Sort:None,Position:69,Type:0|Column#38=Name:Supplier,Fixed:False,Metric:False,Visible:False,Sort:None,Position:85,Type:0|Column#39=Name:Contact Plating,Fixed:False,Metric:False,Visible:False,Sort:None,Position:31,Type:0|Column#40=Name:Mount,Fixed:False,Metric:False,Visible:False,Sort:None,Position:61,Type:0|Column#41=Name:Turn-Off Delay Time,Fixed:False,Metric:False,Visible:False,Sort:None,Position:90,Type:0|Column#42=Name:Datasheet,Fixed:False,Metric:False,Visible:False,Sort:None,Position:35,Type:0|Column#43=Name:Number of Pins,Fixed:False,Metric:False,Visible:False,Sort:None,Position:66,Type:0|Column#44=Name:Pricing 1,Fixed:False,Metric:False,Visible:False,Sort:None,Position:76,Type:0|Column#45=Name:Drain to Source Breakdown Voltage,Fixed:False,Metric:False,Visible:False,Sort:None,Position:38,Type:0|Column#46=Name:Stock 1,Fixed:False,Metric:False,Visible:False,Sort:None,Position:84,Type:0|Column#47=Name:Turn-On Delay Time,Fixed:False,Metric:False,Visible:False,Sort:None,Position:91,Type:0|Column#48=Name:Rise Time,Fixed:False,Metric:False,Visible:False,Sort:None,Position:81,Type:0|Column#49=Name:Width,Fixed:False,Metric:False,Visible:False,Sort:None,Position:97,Type:0|Column#50=Name:ComponentLink3URL,Fixed:False,Metric:False,Visible:False,Sort:None,Position:24,Type:0|Column#51=Name:Part Num 1,Fixed:False,Metric:False,Visible:False,Sort:None,Position:71,Type:0|Column#52=Name:Rds On Max,Fixed:False,Metric:False,Visible:False,Sort:None,Position:79,Type:0|Column#53=Name:Supplier 1,Fixed:False,Metric:False,Visible:False,Sort:None,Position:86,Type:0|Column#54=Name:Tolerance,Fixed:False,Metric:False,Visible:False,Sort:None,Position:89,Type:0|Column#55=Name:MFR,Fixed:False,Metric:False,Visible:False,Sort:None,Position:59,Type:0|Column#56=Name:Nominal Vgs,Fixed:False,Metric:False,Visible:False,Sort:None,Position:64,Type:0|Column#57=Name:Drain to Source Resistance,Fixed:False,Metric:False,Visible:False,Sort:None,Position:39,Type:0|Column#58=Name:Drain to Source Voltage (Vdss),Fixed:False,Metric:False,Visible:False,Sort:None,Position:40,Type:0|Column#59=Name:Supplier Part Number 1,Fixed:False,Metric:False,Visible:False,Sort:None,Position:87,Type:0|Column#60=Name:ComponentLink2URL,Fixed:False,Metric:False,Visible:False,Sort:None,Position:22,Type:0|Column#61=Name:Gate to Source Voltage (Vgs),Fixed:False,Metric:False,Visible:False,Sort:None,Position:43,Type:0|Column#62=Name:MANU 1,Fixed:False,Metric:False,Visible:False,Sort:None,Position:50,Type:0|Column#63=Name:Manufacturer,Fixed:False,Metric:False,Visible:False,Sort:None,Position:53,Type:0|Column#64=Name:MANU 2,Fixed:False,Metric:False,Visible:False,Sort:None,Position:51,Type:0|Column#65=Name:Manufacturer 1,Fixed:False,Metric:False,Visible:False,Sort:None,Position:54,Type:0|Column#66=Name:RoHS,Fixed:False,Metric:False,Visible:False,Sort:None,Position:82,Type:0|Column#67=Name:Input Capacitance,Fixed:False,Metric:False,Visible:False,Sort:None,Position:45,Type:0|Column#68=Name:Type,Fixed:False,Metric:False,Visible:False,Sort:None,Position:92,Type:0|Column#69=Name:PartNumber,Fixed:False,Metric:False,Visible:False,Sort:None,Position:73,Type:0|Column#70=Name:ComponentLink5Description,Fixed:False,Metric:False,Visible:False,Sort:None,Position:27,Type:0|Column#71=Name:ComponentLink4Description,Fixed:False,Metric:False,Visible:False,Sort:None,Position:25,Type:0|Column#72=Name:Radiation Hardening,Fixed:False,Metric:False,Visible:False,Sort:None,Position:78,Type:0|Column#73=Name:ComponentLink6URL,Fixed:False,Metric:False,Visible:False,Sort:None,Position:30,Type:0|Column#74=Name:ComponentLink2Description,Fixed:False,Metric:False,Visible:False,Sort:None,Position:21,Type:0|Column#75=Name:Lead Free,Fixed:False,Metric:False,Visible:False,Sort:None,Position:47,Type:0|Column#76=Name:Current Rating,Fixed:False,Metric:False,Visible:False,Sort:None,Position:34,Type:0|Column#77=Name:Power Dissipation,Fixed:False,Metric:False,Visible:False,Sort:None,Position:74,Type:0|Column#78=Name:Max Power Dissipation,Fixed:False,Metric:False,Visible:False,Sort:None,Position:58,Type:0|Column#79=Name:Temperature Coefficient,Fixed:False,Metric:False,Visible:False,Sort:None,Position:88,Type:0|Column#80=Name:Des,Fixed:False,Metric:False,Visible:False,Sort:None,Position:36,Type:0|Column#81=Name:Unit,Fixed:False,Metric:False,Visible:False,Sort:None,Position:94,Type:0|Column#82=Name:ComponentLink1URL,Fixed:False,Metric:False,Visible:False,Sort:None,Position:20,Type:0|Column#83=Name:Solder,Fixed:False,Metric:False,Visible:False,Sort:None,Position:83,Type:0|Column#84=Name:Link sale,Fixed:False,Metric:False,Visible:False,Sort:None,Position:49,Type:0|Column#85=Name:Value,Fixed:False,Metric:False,Visible:False,Sort:None,Position:95,Type:0|Column#86=Name:Company ID,Fixed:False,Metric:False,Visible:False,Sort:None,Position:18,Type:0|Column#87=Name:Manufacturer Part Number 1,Fixed:False,Metric:False,Visible:False,Sort:None,Position:56,Type:0|Column#88=Name:Creator,Fixed:False,Metric:False,Visible:False,Sort:None,Position:33,Type:0|Column#89=Name:Number of Elements,Fixed:False,Metric:False,Visible:False,Sort:None,Position:65,Type:0|Column#90=Name:Manufacture,Fixed:False,Metric:False,Visible:False,Sort:None,Position:52,Type:0|Column#91=Name:ComponentLink1Description,Fixed:False,Metric:False,Visible:False,Sort:None,Position:19,Type:0|Column#92=Name:Mounting type,Fixed:False,Metric:False,Visible:False,Sort:None,Position:62,Type:0|Column#93=Name:Catelogy,Fixed:False,Metric:False,Visible:False,Sort:None,Position:17,Type:0|Column#94=Name:Parameter 1,Fixed:False,Metric:False,Visible:False,Sort:None,Position:70,Type:0|Column#95=Name:Part Num 2,Fixed:False,Metric:False,Visible:False,Sort:None,Position:72,Type:0|Column#96=Name:Element Configuration,Fixed:False,Metric:False,Visible:False,Sort:None,Position:41,Type:0|Column#97=Name:Height,Fixed:False,Metric:False,Visible:False,Sort:None,Position:44,Type:0|Column#98=Name:Voltage Rated,Fixed:False,Metric:False,Visible:False,Sort:None,Position:96,Type:0|DocumentPath=E:\HARDWARE\GitDVD\CAMBOX_RV1106\CamBox_RV1106.PcbDoc
- OutputType3=Test Points For Assembly
- OutputName3=Test Point Report
- OutputDocumentPath3=
- OutputVariantName3=[No Variations]
- OutputDefault3=0
- [OutputGroup5]
- Name=Fabrication Outputs
- Description=
- TargetPrinter=Microsoft Print to PDF
- PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
- OutputType1=Board Stack Report
- OutputName1=Report Board Stack
- OutputDocumentPath1=
- OutputVariantName1=
- OutputDefault1=0
- 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
- OutputType2=CompositeDrill
- OutputName2=Composite Drill Drawing
- OutputDocumentPath2=
- OutputVariantName2=[No Variations]
- OutputDefault2=0
- 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
- OutputType3=Drill
- OutputName3=Drill Drawing/Guides
- OutputDocumentPath3=
- OutputVariantName3=[No Variations]
- OutputDefault3=0
- 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
- OutputType4=Final
- OutputName4=Final Artwork Prints
- OutputDocumentPath4=
- OutputVariantName4=[No Variations]
- OutputDefault4=0
- 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
- OutputType5=Gerber
- OutputName5=Gerber Files
- OutputDocumentPath5=
- OutputVariantName5=[No Variations]
- OutputDefault5=0
- OutputType6=Gerber X2
- OutputName6=Gerber X2 Files
- OutputDocumentPath6=
- OutputVariantName6=[No Variations]
- OutputDefault6=0
- OutputType7=IPC2581
- OutputName7=IPC-2581 Files
- OutputDocumentPath7=
- OutputVariantName7=[No Variations]
- OutputDefault7=0
- OutputType8=Mask
- OutputName8=Solder/Paste Mask Prints
- OutputDocumentPath8=
- OutputVariantName8=[No Variations]
- OutputDefault8=0
- 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
- OutputType9=NC Drill
- OutputName9=NC Drill Files
- OutputDocumentPath9=
- OutputVariantName9=
- OutputDefault9=0
- OutputType10=ODB
- OutputName10=ODB++ Files
- OutputDocumentPath10=
- OutputVariantName10=[No Variations]
- OutputDefault10=0
- OutputType11=Plane
- OutputName11=Power-Plane Prints
- OutputDocumentPath11=
- OutputVariantName11=[No Variations]
- OutputDefault11=0
- 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
- OutputType12=Test Points
- OutputName12=Test Point Report
- OutputDocumentPath12=
- OutputVariantName12=
- OutputDefault12=0
- [OutputGroup6]
- Name=Report Outputs
- Description=
- TargetPrinter=Microsoft Print to PDF
- PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
- OutputType1=BOM_PartType
- OutputName1=Bill of Materials
- OutputDocumentPath1=
- OutputVariantName1=[No Variations]
- OutputDefault1=0
- 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
- OutputType2=ComponentCrossReference
- OutputName2=Component Cross Reference Report
- OutputDocumentPath2=
- OutputVariantName2=[No Variations]
- OutputDefault2=0
- OutputType3=ReportHierarchy
- OutputName3=Report Project Hierarchy
- OutputDocumentPath3=
- OutputVariantName3=[No Variations]
- OutputDefault3=0
- OutputType4=Script
- OutputName4=Script Output
- OutputDocumentPath4=
- OutputVariantName4=[No Variations]
- OutputDefault4=0
- OutputType5=SimpleBOM
- OutputName5=Simple BOM
- OutputDocumentPath5=
- OutputVariantName5=[No Variations]
- OutputDefault5=0
- OutputType6=SinglePinNetReporter
- OutputName6=Report Single Pin Nets
- OutputDocumentPath6=
- OutputVariantName6=[No Variations]
- OutputDefault6=0
- OutputType7=Export Comments
- OutputName7=Export Comments
- OutputDocumentPath7=
- OutputVariantName7=[No Variations]
- OutputDefault7=0
- 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
- OutputType8=BOM_ReportCompare
- OutputName8=BOM Compare
- OutputDocumentPath8=
- OutputVariantName8=[No Variations]
- OutputDefault8=0
- 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
- OutputType9=Project History
- OutputName9=Project History
- OutputDocumentPath9=
- OutputVariantName9=[No Variations]
- OutputDefault9=0
- 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
- [OutputGroup7]
- Name=Other Outputs
- Description=
- TargetPrinter=Microsoft Print to PDF
- PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
- OutputType1=Text Print
- OutputName1=Text Print
- OutputDocumentPath1=
- OutputVariantName1=
- OutputDefault1=0
- 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
- OutputType2=Text Print
- OutputName2=Text Print
- OutputDocumentPath2=
- OutputVariantName2=
- OutputDefault2=0
- 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
- OutputType3=Text Print
- OutputName3=Text Print
- OutputDocumentPath3=
- OutputVariantName3=
- OutputDefault3=0
- 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
- OutputType4=Text Print
- OutputName4=Text Print
- OutputDocumentPath4=
- OutputVariantName4=
- OutputDefault4=0
- 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
- OutputType5=Text Print
- OutputName5=Text Print
- OutputDocumentPath5=
- OutputVariantName5=
- OutputDefault5=0
- 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
- OutputType6=Text Print
- OutputName6=Text Print
- OutputDocumentPath6=
- OutputVariantName6=
- OutputDefault6=0
- 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
- OutputType7=Text Print
- OutputName7=Text Print
- OutputDocumentPath7=
- OutputVariantName7=
- OutputDefault7=0
- 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
- OutputType8=Text Print
- OutputName8=Text Print
- OutputDocumentPath8=
- OutputVariantName8=
- OutputDefault8=0
- 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
- OutputType9=Text Print
- OutputName9=Text Print
- OutputDocumentPath9=
- OutputVariantName9=
- OutputDefault9=0
- 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
- OutputType10=Text Print
- OutputName10=Text Print
- OutputDocumentPath10=
- OutputVariantName10=
- OutputDefault10=0
- 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
- OutputType11=Text Print
- OutputName11=Text Print
- OutputDocumentPath11=
- OutputVariantName11=
- OutputDefault11=0
- 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
- OutputType12=Text Print
- OutputName12=Text Print
- OutputDocumentPath12=
- OutputVariantName12=
- OutputDefault12=0
- 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
- OutputType13=Text Print
- OutputName13=Text Print
- OutputDocumentPath13=
- OutputVariantName13=
- OutputDefault13=0
- 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
- OutputType14=Text Print
- OutputName14=Text Print
- OutputDocumentPath14=
- OutputVariantName14=
- OutputDefault14=0
- 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
- OutputType15=Text Print
- OutputName15=Text Print
- OutputDocumentPath15=
- OutputVariantName15=
- OutputDefault15=0
- 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
- OutputType16=Text Print
- OutputName16=Text Print
- OutputDocumentPath16=
- OutputVariantName16=
- OutputDefault16=0
- 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
- OutputType17=Text Print
- OutputName17=Text Print
- OutputDocumentPath17=
- OutputVariantName17=
- OutputDefault17=0
- 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
- [OutputGroup8]
- Name=Validation Outputs
- Description=
- TargetPrinter=Microsoft Print to PDF
- PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
- OutputType1=BOM_Violations
- OutputName1=BOM Checks Report
- OutputDocumentPath1=
- OutputVariantName1=
- OutputDefault1=0
- OutputType2=Component states check
- OutputName2=Server's components states check
- OutputDocumentPath2=
- OutputVariantName2=
- OutputDefault2=0
- OutputType3=Configuration compliance
- OutputName3=Environment configuration compliance check
- OutputDocumentPath3=
- OutputVariantName3=
- OutputDefault3=0
- OutputType4=Design Rules Check
- OutputName4=Design Rules Check
- OutputDocumentPath4=
- OutputVariantName4=
- OutputDefault4=0
- 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
- OutputType5=Differences Report
- OutputName5=Differences Report
- OutputDocumentPath5=
- OutputVariantName5=
- OutputDefault5=0
- 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
- OutputType6=Electrical Rules Check
- OutputName6=Electrical Rules Check
- OutputDocumentPath6=
- OutputVariantName6=
- OutputDefault6=0
- 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
- OutputType7=Footprint Comparison Report
- OutputName7=Footprint Comparison Report
- OutputDocumentPath7=
- OutputVariantName7=
- OutputDefault7=0
- [OutputGroup9]
- Name=Export Outputs
- Description=
- TargetPrinter=Microsoft Print to PDF
- PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
- OutputType1=AutoCAD dwg/dxf PCB
- OutputName1=AutoCAD dwg/dxf File PCB
- OutputDocumentPath1=
- OutputVariantName1=
- OutputDefault1=0
- OutputType2=AutoCAD dwg/dxf Schematic
- OutputName2=AutoCAD dwg/dxf File Schematic
- OutputDocumentPath2=
- OutputVariantName2=
- OutputDefault2=0
- OutputType3=ExportIDF
- OutputName3=Export IDF
- OutputDocumentPath3=
- OutputVariantName3=
- OutputDefault3=0
- OutputType4=ExportPARASOLID
- OutputName4=Export PARASOLID
- OutputDocumentPath4=
- OutputVariantName4=[No Variations]
- OutputDefault4=0
- OutputType5=ExportSTEP
- OutputName5=Export STEP
- OutputDocumentPath5=
- OutputVariantName5=[No Variations]
- OutputDefault5=0
- OutputType6=ExportVRML
- OutputName6=Export VRML
- OutputDocumentPath6=
- OutputVariantName6=[No Variations]
- OutputDefault6=0
- OutputType7=MBAExportPARASOLID
- OutputName7=Export PARASOLID
- OutputDocumentPath7=
- OutputVariantName7=
- OutputDefault7=0
- OutputType8=MBAExportSTEP
- OutputName8=Export STEP
- OutputDocumentPath8=
- OutputVariantName8=
- OutputDefault8=0
- OutputType9=Save As/Export PCB
- OutputName9=Save As/Export PCB
- OutputDocumentPath9=
- OutputVariantName9=
- OutputDefault9=0
- OutputType10=Save As/Export Schematic
- OutputName10=Save As/Export Schematic
- OutputDocumentPath10=
- OutputVariantName10=
- OutputDefault10=0
- OutputType11=Specctra Design PCB
- OutputName11=Specctra Design PCB
- OutputDocumentPath11=
- OutputVariantName11=
- OutputDefault11=0
- OutputType12=Web ReviewOutputName
- OutputName12=Web Review Data
- OutputDocumentPath12=
- OutputVariantName12=
- OutputDefault12=0
- OutputType13=Ansoft Neutral
- OutputName13=Ansoft Neutral (AutoPCB)
- OutputDocumentPath13=
- OutputVariantName13=
- OutputDefault13=0
- OutputType14=HyperLynx
- OutputName14=HyperLynx (AutoPCB)
- OutputDocumentPath14=
- OutputVariantName14=
- OutputDefault14=0
- OutputType15=Orcad v7 Capture Design
- OutputName15=Orcad v7 Capture Design (AutoSCH)
- OutputDocumentPath15=
- OutputVariantName15=
- OutputDefault15=0
- OutputType16=P-CAD ASCII
- OutputName16=P-CAD ASCII (AutoPCB)
- OutputDocumentPath16=
- OutputVariantName16=
- OutputDefault16=0
- OutputType17=P-CAD V16 Schematic Design
- OutputName17=P-CAD V16 Schematic Design (AutoSCH)
- OutputDocumentPath17=
- OutputVariantName17=
- OutputDefault17=0
- OutputType18=SiSoft
- OutputName18=SiSoft (AutoPCB)
- OutputDocumentPath18=
- OutputVariantName18=
- OutputDefault18=0
- [OutputGroup10]
- Name=PostProcess Outputs
- Description=
- TargetPrinter=Microsoft Print to PDF
- PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
- OutputType1=Copy Files
- OutputName1=Copy Files
- OutputDocumentPath1=
- OutputVariantName1=
- OutputDefault1=0
- [Modification Levels]
- Type1=1
- Type2=1
- Type3=1
- Type4=1
- Type5=1
- Type6=1
- Type7=1
- Type8=1
- Type9=1
- Type10=1
- Type11=1
- Type12=1
- Type13=1
- Type14=1
- Type15=1
- Type16=1
- Type17=1
- Type18=1
- Type19=1
- Type20=1
- Type21=1
- Type22=1
- Type23=1
- Type24=1
- Type25=1
- Type26=1
- Type27=1
- Type28=1
- Type29=1
- Type30=1
- Type31=1
- Type32=1
- Type33=1
- Type34=1
- Type35=1
- Type36=1
- Type37=1
- Type38=1
- Type39=1
- Type40=1
- Type41=1
- Type42=1
- Type43=1
- Type44=1
- Type45=1
- Type46=1
- Type47=1
- Type48=1
- Type49=1
- Type50=1
- Type51=1
- Type52=1
- Type53=1
- Type54=1
- Type55=1
- Type56=1
- Type57=1
- Type58=1
- Type59=1
- Type60=1
- Type61=1
- Type62=1
- Type63=1
- Type64=1
- Type65=1
- Type66=1
- Type67=1
- Type68=1
- Type69=1
- Type70=1
- Type71=1
- Type72=1
- Type73=1
- Type74=1
- Type75=1
- Type76=1
- Type77=1
- Type78=1
- Type79=1
- Type80=1
- Type81=1
- Type82=1
- Type83=1
- Type84=1
- Type85=1
- Type86=1
- Type87=1
- Type88=1
- Type89=1
- Type90=1
- Type91=1
- Type92=1
- Type93=1
- Type94=1
- Type95=1
- Type96=1
- Type97=1
- Type98=1
- Type99=1
- Type100=1
- Type101=1
- Type102=1
- Type103=1
- Type104=1
- Type105=1
- Type106=1
- Type107=1
- Type108=1
- Type109=1
- Type110=1
- Type111=1
- Type112=1
- Type113=1
- Type114=1
- Type115=1
- Type116=1
- Type117=1
- Type118=1
- Type119=1
- Type120=1
- [Difference Levels]
- Type1=1
- Type2=1
- Type3=1
- Type4=1
- Type5=1
- Type6=1
- Type7=1
- Type8=1
- Type9=1
- Type10=1
- Type11=1
- Type12=1
- Type13=1
- Type14=1
- Type15=1
- Type16=1
- Type17=1
- Type18=1
- Type19=1
- Type20=1
- Type21=1
- Type22=1
- Type23=1
- Type24=1
- Type25=1
- Type26=1
- Type27=1
- Type28=1
- Type29=1
- Type30=1
- Type31=1
- Type32=1
- Type33=1
- Type34=1
- Type35=1
- Type36=1
- Type37=1
- Type38=1
- Type39=1
- Type40=1
- Type41=1
- Type42=1
- Type43=1
- Type44=1
- Type45=1
- Type46=1
- Type47=1
- Type48=1
- Type49=1
- Type50=1
- Type51=1
- Type52=1
- Type53=1
- Type54=1
- Type55=1
- Type56=1
- Type57=1
- Type58=1
- Type59=1
- Type60=1
- Type61=1
- Type62=1
- Type63=1
- Type64=1
- Type65=1
- Type66=1
- Type67=1
- Type68=1
- [Electrical Rules Check]
- Type1=1
- Type2=1
- Type3=2
- Type4=1
- Type5=2
- Type6=2
- Type7=0
- Type8=1
- Type9=1
- Type10=1
- Type11=2
- Type12=0
- Type13=0
- Type14=1
- Type15=1
- Type16=1
- Type17=1
- Type18=1
- Type19=1
- Type20=0
- Type21=0
- Type22=0
- Type23=0
- Type24=1
- Type25=2
- Type26=0
- Type27=2
- Type28=1
- Type29=1
- Type30=1
- Type31=1
- Type32=2
- Type33=0
- Type34=2
- Type35=1
- Type36=2
- Type37=1
- Type38=2
- Type39=2
- Type40=2
- Type41=0
- Type42=2
- Type43=1
- Type44=0
- Type45=0
- Type46=0
- Type47=0
- Type48=0
- Type49=0
- Type50=2
- Type51=0
- Type52=0
- Type53=1
- Type54=1
- Type55=1
- Type56=2
- Type57=1
- Type58=1
- Type59=2
- Type60=0
- Type61=0
- Type62=0
- Type63=0
- Type64=0
- Type65=2
- Type66=3
- Type67=2
- Type68=2
- Type69=0
- Type70=2
- Type71=2
- Type72=2
- Type73=2
- Type74=1
- Type75=2
- Type76=1
- Type77=1
- Type78=1
- Type79=1
- Type80=2
- Type81=3
- Type82=3
- Type83=3
- Type84=3
- Type85=3
- Type86=2
- Type87=2
- Type88=2
- Type89=1
- Type90=1
- Type91=3
- Type92=3
- Type93=2
- Type94=2
- Type95=2
- Type96=2
- Type97=2
- Type98=0
- Type99=1
- Type100=2
- Type101=0
- Type102=2
- Type103=2
- Type104=1
- Type105=2
- Type106=2
- Type107=2
- Type108=2
- Type109=1
- Type110=1
- Type111=1
- Type112=1
- Type113=1
- Type114=2
- Type115=2
- Type116=2
- Type117=3
- Type118=3
- Type119=3
- AlternateItemFail=3
- Type122=2
- Type123=1
- Type124=1
- Type125=1
- Type126=1
- Type127=1
- [ERC Connection Matrix]
- L1=NNNNNNNNNNNWNNNWW
- L2=NNWNNNNWWWNWNWNWN
- L3=NWEENEEEENEWNEEWN
- L4=NNENNNWEENNWNENWN
- L5=NNNNNNNNNNNNNNNNN
- L6=NNENNNNEENNWNENWN
- L7=NNEWNNWEENNWNENWN
- L8=NWEENEENEEENNEENN
- L9=NWEENEEEENEWNEEWW
- L10=NWNNNNNENNEWNNEWN
- L11=NNENNNNEEENWNENWN
- L12=WWWWNWWNWWWNWWWNN
- L13=NNNNNNNNNNNWNNNWW
- L14=NWEENEEEENEWNEEWW
- L15=NNENNNNEEENWNENWW
- L16=WWWWNWWNWWWNWWWNW
- L17=WNNNNNNNWNNNWWWWN
- [Annotate]
- SortOrder=3
- SortLocation=0
- ReplaceSubparts=0
- MatchParameter1=Comment
- MatchStrictly1=1
- MatchParameter2=Library Reference
- MatchStrictly2=1
- PhysicalNamingFormat=$Component_$RoomName
- GlobalIndexSortOrder=3
- GlobalIndexSortLocation=0
- [PrjClassGen]
- CompClassManualEnabled=0
- CompClassManualRoomEnabled=0
- NetClassAutoBusEnabled=1
- NetClassAutoCompEnabled=0
- NetClassAutoNamedHarnessEnabled=0
- NetClassManualEnabled=1
- NetClassSeparateForBusSections=0
- [LibraryUpdateOptions]
- SelectedOnly=0
- UpdateVariants=1
- UpdateToLatestRevision=1
- PartTypes=0
- ComponentLibIdentifierKind0=Library Name And Type
- ComponentLibraryIdentifier0=CamBox_RV1106.SCHLIB
- ComponentDesignItemID0=AS0BC21-S40BM-7H (RV1106-PCIE)
- ComponentSymbolReference0=AS0BC21-S40BM-7H (RV1106-PCIE)
- ComponentUpdate0=1
- ComponentIsDeviceSheet0=0
- ComponentLibIdentifierKind1=Library Name And Type
- ComponentLibraryIdentifier1=CamBox_RV1106.SCHLIB
- ComponentDesignItemID1=C7802-02
- ComponentSymbolReference1=C7802-02
- ComponentUpdate1=1
- ComponentIsDeviceSheet1=0
- ComponentLibIdentifierKind2=Library Name And Type
- ComponentLibraryIdentifier2=CamBox_RV1106.SCHLIB
- ComponentDesignItemID2=CSD19538Q3A
- ComponentSymbolReference2=CSD19538Q3A
- ComponentUpdate2=1
- ComponentIsDeviceSheet2=0
- ComponentLibIdentifierKind3=Library Name And Type
- ComponentLibraryIdentifier3=CamBox_RV1106.SCHLIB
- ComponentDesignItemID3=ETA3409S2F
- ComponentSymbolReference3=ETA3409S2F
- ComponentUpdate3=1
- ComponentIsDeviceSheet3=0
- ComponentLibIdentifierKind4=Library Name And Type
- ComponentLibraryIdentifier4=CamBox_RV1106.SCHLIB
- ComponentDesignItemID4=ETA6003Q3Q
- ComponentSymbolReference4=ETA6003Q3Q
- ComponentUpdate4=1
- ComponentIsDeviceSheet4=0
- ComponentLibIdentifierKind5=Library Name And Type
- ComponentLibraryIdentifier5=CamBox_RV1106.SCHLIB
- ComponentDesignItemID5=HEATSINK
- ComponentSymbolReference5=HEATSINK
- ComponentUpdate5=1
- ComponentIsDeviceSheet5=0
- ComponentLibIdentifierKind6=Library Name And Type
- ComponentLibraryIdentifier6=CamBox_RV1106.SCHLIB
- ComponentDesignItemID6=M6110-01
- ComponentSymbolReference6=M6110-01
- ComponentUpdate6=1
- ComponentIsDeviceSheet6=0
- ComponentLibIdentifierKind7=Library Name And Type
- ComponentLibraryIdentifier7=CamBox_RV1106.SCHLIB
- ComponentDesignItemID7=NR4030S2R2MT
- ComponentSymbolReference7=NR4030S2R2MT
- ComponentUpdate7=1
- ComponentIsDeviceSheet7=0
- ComponentLibIdentifierKind8=Library Name And Type
- ComponentLibraryIdentifier8=CamBox_RV1106.SCHLIB
- ComponentDesignItemID8=PDS760
- ComponentSymbolReference8=PDS760
- ComponentUpdate8=1
- ComponentIsDeviceSheet8=0
- ComponentLibIdentifierKind9=Library Name And Type
- ComponentLibraryIdentifier9=CamBox_RV1106.SCHLIB
- ComponentDesignItemID9=RC0402FR-070RL
- ComponentSymbolReference9=RC0402FR-070RL
- ComponentUpdate9=1
- ComponentIsDeviceSheet9=0
- ComponentLibIdentifierKind10=Library Name And Type
- ComponentLibraryIdentifier10=CamBox_RV1106.SCHLIB
- ComponentDesignItemID10=RC0402FR-071KL
- ComponentSymbolReference10=RC0402FR-071KL
- ComponentUpdate10=1
- ComponentIsDeviceSheet10=0
- ComponentLibIdentifierKind11=Library Name And Type
- ComponentLibraryIdentifier11=CamBox_RV1106.SCHLIB
- ComponentDesignItemID11=RC0402FR-072K2L
- ComponentSymbolReference11=RC0402FR-072K2L
- ComponentUpdate11=1
- ComponentIsDeviceSheet11=0
- ComponentLibIdentifierKind12=Library Name And Type
- ComponentLibraryIdentifier12=CamBox_RV1106.SCHLIB
- ComponentDesignItemID12=RC0402FR-07470RL
- ComponentSymbolReference12=RC0402FR-07470RL
- ComponentUpdate12=1
- ComponentIsDeviceSheet12=0
- ComponentLibIdentifierKind13=Library Name And Type
- ComponentLibraryIdentifier13=CamBox_RV1106.SCHLIB
- ComponentDesignItemID13=RC0402FR-074K7L
- ComponentSymbolReference13=RC0402FR-074K7L
- ComponentUpdate13=1
- ComponentIsDeviceSheet13=0
- ComponentLibIdentifierKind14=Library Name And Type
- ComponentLibraryIdentifier14=CamBox_RV1106.SCHLIB
- ComponentDesignItemID14=SPACER
- ComponentSymbolReference14=SPACER
- ComponentUpdate14=1
- ComponentIsDeviceSheet14=0
- ComponentLibIdentifierKind15=Library Name And Type
- ComponentLibraryIdentifier15=CamBox_RV1106.SCHLIB
- ComponentDesignItemID15=XL-1608SYGC-04
- ComponentSymbolReference15=XL-1608SYGC-04
- ComponentUpdate15=1
- ComponentIsDeviceSheet15=0
- ComponentLibIdentifierKind16=Library Name And Type
- ComponentLibraryIdentifier16=Camera_Box_RK3562.IntLib
- ComponentDesignItemID16=RC0402FR-0752K3L
- ComponentSymbolReference16=RC0402FR-0752K3L
- ComponentUpdate16=1
- ComponentIsDeviceSheet16=0
- ComponentLibIdentifierKind17=Library Name And Type
- ComponentLibraryIdentifier17=MKP_lib.DbLib/Components
- ComponentDesignItemID17=0402WGF1101TCE
- ComponentSymbolReference17=RES
- ComponentUpdate17=1
- ComponentIsDeviceSheet17=0
- ComponentLibIdentifierKind18=Library Name And Type
- ComponentLibraryIdentifier18=MKP_lib.DbLib/Components
- ComponentDesignItemID18=150060YS75000
- ComponentSymbolReference18=LED
- ComponentUpdate18=1
- ComponentIsDeviceSheet18=0
- ComponentLibIdentifierKind19=Library Name And Type
- ComponentLibraryIdentifier19=MKP_lib.DbLib/Components
- ComponentDesignItemID19=2.D.1.270002002
- ComponentSymbolReference19=XTL-4PIN
- ComponentUpdate19=1
- ComponentIsDeviceSheet19=0
- ComponentLibIdentifierKind20=Library Name And Type
- ComponentLibraryIdentifier20=MKP_lib.DbLib/Components
- ComponentDesignItemID20=2SK3018
- ComponentSymbolReference20=N-Channel
- ComponentUpdate20=1
- ComponentIsDeviceSheet20=0
- ComponentLibIdentifierKind21=Library Name And Type
- ComponentLibraryIdentifier21=MKP_lib.DbLib/Components
- ComponentDesignItemID21=A2541WV-4P
- ComponentSymbolReference21=CON-4PIN
- ComponentUpdate21=1
- ComponentIsDeviceSheet21=0
- ComponentLibIdentifierKind22=Library Name And Type
- ComponentLibraryIdentifier22=MKP_lib.DbLib/Components
- ComponentDesignItemID22=A7600C-L1
- ComponentSymbolReference22=A7600C-L1
- ComponentUpdate22=1
- ComponentIsDeviceSheet22=0
- ComponentLibIdentifierKind23=Library Name And Type
- ComponentLibraryIdentifier23=MKP_lib.DbLib/Components
- ComponentDesignItemID23=AC0402FR-07226KL
- ComponentSymbolReference23=RES
- ComponentUpdate23=1
- ComponentIsDeviceSheet23=0
- ComponentLibIdentifierKind24=Library Name And Type
- ComponentLibraryIdentifier24=MKP_lib.DbLib/Components
- ComponentDesignItemID24=AC0402FR-07590KL
- ComponentSymbolReference24=RES
- ComponentUpdate24=1
- ComponentIsDeviceSheet24=0
- ComponentLibIdentifierKind25=Library Name And Type
- ComponentLibraryIdentifier25=MKP_lib.DbLib/Components
- ComponentDesignItemID25=anchor
- ComponentSymbolReference25=ANCHOR
- ComponentUpdate25=0
- ComponentIsDeviceSheet25=0
- ComponentLibIdentifierKind26=Library Name And Type
- ComponentLibraryIdentifier26=MKP_lib.DbLib/Components
- ComponentDesignItemID26=ASDM3401ZA-R
- ComponentSymbolReference26=P-Channel
- ComponentUpdate26=1
- ComponentIsDeviceSheet26=0
- ComponentLibIdentifierKind27=Library Name And Type
- ComponentLibraryIdentifier27=MKP_lib.DbLib/Components
- ComponentDesignItemID27=B72590D50H160
- ComponentSymbolReference27=B72590D50H160
- ComponentUpdate27=1
- ComponentIsDeviceSheet27=0
- ComponentLibIdentifierKind28=Library Name And Type
- ComponentLibraryIdentifier28=MKP_lib.DbLib/Components
- ComponentDesignItemID28=BZT52C8V2
- ComponentSymbolReference28=TVS
- ComponentUpdate28=1
- ComponentIsDeviceSheet28=0
- ComponentLibIdentifierKind29=Library Name And Type
- ComponentLibraryIdentifier29=MKP_lib.DbLib/Components
- ComponentDesignItemID29=C0603X5R105K500NT
- ComponentSymbolReference29=CAP
- ComponentUpdate29=1
- ComponentIsDeviceSheet29=0
- ComponentLibIdentifierKind30=Library Name And Type
- ComponentLibraryIdentifier30=MKP_lib.DbLib/Components
- ComponentDesignItemID30=C0603X5R475K6R3NT
- ComponentSymbolReference30=CAP
- ComponentUpdate30=1
- ComponentIsDeviceSheet30=0
- ComponentLibIdentifierKind31=Library Name And Type
- ComponentLibraryIdentifier31=MKP_lib.DbLib/Components
- ComponentDesignItemID31=C0603X7R101J500NT
- ComponentSymbolReference31=CAP
- ComponentUpdate31=1
- ComponentIsDeviceSheet31=0
- ComponentLibIdentifierKind32=Library Name And Type
- ComponentLibraryIdentifier32=MKP_lib.DbLib/Components
- ComponentDesignItemID32=C0805X5R106K160NT
- ComponentSymbolReference32=CAP
- ComponentUpdate32=1
- ComponentIsDeviceSheet32=0
- ComponentLibIdentifierKind33=Library Name And Type
- ComponentLibraryIdentifier33=MKP_lib.DbLib/Components
- ComponentDesignItemID33=C1206X5R106K500NT
- ComponentSymbolReference33=CAP
- ComponentUpdate33=1
- ComponentIsDeviceSheet33=0
- ComponentLibIdentifierKind34=Library Name And Type
- ComponentLibraryIdentifier34=MKP_lib.DbLib/Components
- ComponentDesignItemID34=CBW100505U600T
- ComponentSymbolReference34=FB
- ComponentUpdate34=1
- ComponentIsDeviceSheet34=0
- ComponentLibIdentifierKind35=Library Name And Type
- ComponentLibraryIdentifier35=MKP_lib.DbLib/Components
- ComponentDesignItemID35=CC0402FRNPO9BN101
- ComponentSymbolReference35=CAP
- ComponentUpdate35=1
- ComponentIsDeviceSheet35=0
- ComponentLibIdentifierKind36=Library Name And Type
- ComponentLibraryIdentifier36=MKP_lib.DbLib/Components
- ComponentDesignItemID36=CC0402JRNPO9BN220
- ComponentSymbolReference36=CAP
- ComponentUpdate36=1
- ComponentIsDeviceSheet36=0
- ComponentLibIdentifierKind37=Library Name And Type
- ComponentLibraryIdentifier37=MKP_lib.DbLib/Components
- ComponentDesignItemID37=CC0402KRX7R7BB104
- ComponentSymbolReference37=CAP
- ComponentUpdate37=1
- ComponentIsDeviceSheet37=0
- ComponentLibIdentifierKind38=Library Name And Type
- ComponentLibraryIdentifier38=MKP_lib.DbLib/Components
- ComponentDesignItemID38=CC0402KRX7R9BB822
- ComponentSymbolReference38=CAP
- ComponentUpdate38=1
- ComponentIsDeviceSheet38=0
- ComponentLibIdentifierKind39=Library Name And Type
- ComponentLibraryIdentifier39=MKP_lib.DbLib/Components
- ComponentDesignItemID39=CC0603JRNPO9BN150
- ComponentSymbolReference39=CAP
- ComponentUpdate39=1
- ComponentIsDeviceSheet39=0
- ComponentLibIdentifierKind40=Library Name And Type
- ComponentLibraryIdentifier40=MKP_lib.DbLib/Components
- ComponentDesignItemID40=CC0603JRNPO9BN750
- ComponentSymbolReference40=CAP
- ComponentUpdate40=1
- ComponentIsDeviceSheet40=0
- ComponentLibIdentifierKind41=Library Name And Type
- ComponentLibraryIdentifier41=MKP_lib.DbLib/Components
- ComponentDesignItemID41=CC0603KRX7R9BB104
- ComponentSymbolReference41=CAP
- ComponentUpdate41=1
- ComponentIsDeviceSheet41=0
- ComponentLibIdentifierKind42=Library Name And Type
- ComponentLibraryIdentifier42=MKP_lib.DbLib/Components
- ComponentDesignItemID42=CC0603KRX7R9BB474
- ComponentSymbolReference42=CAP
- ComponentUpdate42=1
- ComponentIsDeviceSheet42=0
- ComponentLibIdentifierKind43=Library Name And Type
- ComponentLibraryIdentifier43=MKP_lib.DbLib/Components
- ComponentDesignItemID43=CC0603KRX7R9BB561
- ComponentSymbolReference43=CAP
- ComponentUpdate43=1
- ComponentIsDeviceSheet43=0
- ComponentLibIdentifierKind44=Library Name And Type
- ComponentLibraryIdentifier44=MKP_lib.DbLib/Components
- ComponentDesignItemID44=CC0603KRX7R9BB563
- ComponentSymbolReference44=CAP
- ComponentUpdate44=1
- ComponentIsDeviceSheet44=0
- ComponentLibIdentifierKind45=Library Name And Type
- ComponentLibraryIdentifier45=MKP_lib.DbLib/Components
- ComponentDesignItemID45=CC1206KKX7R0BB104
- ComponentSymbolReference45=CAP
- ComponentUpdate45=1
- ComponentIsDeviceSheet45=0
- ComponentLibIdentifierKind46=Library Name And Type
- ComponentLibraryIdentifier46=MKP_lib.DbLib/Components
- ComponentDesignItemID46=CDRCH12D78BNP-220MC
- ComponentSymbolReference46=DRQ125
- ComponentUpdate46=1
- ComponentIsDeviceSheet46=0
- ComponentLibIdentifierKind47=Library Name And Type
- ComponentLibraryIdentifier47=MKP_lib.DbLib/Components
- ComponentDesignItemID47=CL05C330JB5NNNC
- ComponentSymbolReference47=CAP
- ComponentUpdate47=1
- ComponentIsDeviceSheet47=0
- ComponentLibIdentifierKind48=Library Name And Type
- ComponentLibraryIdentifier48=MKP_lib.DbLib/Components
- ComponentDesignItemID48=CL10A225KQ8NNNC
- ComponentSymbolReference48=CAP
- ComponentUpdate48=1
- ComponentIsDeviceSheet48=0
- ComponentLibIdentifierKind49=Library Name And Type
- ComponentLibraryIdentifier49=MKP_lib.DbLib/Components
- ComponentDesignItemID49=CL10A226MQ8NRNE
- ComponentSymbolReference49=CAP
- ComponentUpdate49=1
- ComponentIsDeviceSheet49=0
- ComponentLibIdentifierKind50=Library Name And Type
- ComponentLibraryIdentifier50=MKP_lib.DbLib/Components
- ComponentDesignItemID50=CMFA 103F3435
- ComponentSymbolReference50=NTC
- ComponentUpdate50=1
- ComponentIsDeviceSheet50=0
- ComponentLibIdentifierKind51=Library Name And Type
- ComponentLibraryIdentifier51=MKP_lib.DbLib/Components
- ComponentDesignItemID51=D-DMR009PM-D002
- ComponentSymbolReference51=D-DMR009PM-D002
- ComponentUpdate51=1
- ComponentIsDeviceSheet51=0
- ComponentLibIdentifierKind52=Library Name And Type
- ComponentLibraryIdentifier52=MKP_lib.DbLib/Components
- ComponentDesignItemID52=DLM0NSN900HY2D
- ComponentSymbolReference52=Common Mode Filters
- ComponentUpdate52=1
- ComponentIsDeviceSheet52=0
- ComponentLibIdentifierKind53=Library Name And Type
- ComponentLibraryIdentifier53=MKP_lib.DbLib/Components
- ComponentDesignItemID53=ESD5Z5V0
- ComponentSymbolReference53=TVS
- ComponentUpdate53=1
- ComponentIsDeviceSheet53=0
- ComponentLibIdentifierKind54=Library Name And Type
- ComponentLibraryIdentifier54=MKP_lib.DbLib/Components
- ComponentDesignItemID54=FCC0402B681K500AT
- ComponentSymbolReference54=CAP
- ComponentUpdate54=1
- ComponentIsDeviceSheet54=0
- ComponentLibIdentifierKind55=Library Name And Type
- ComponentLibraryIdentifier55=MKP_lib.DbLib/Components
- ComponentDesignItemID55=HGC1206R5107M100NSPJ
- ComponentSymbolReference55=CAP
- ComponentUpdate55=1
- ComponentIsDeviceSheet55=0
- ComponentLibIdentifierKind56=Library Name And Type
- ComponentLibraryIdentifier56=MKP_lib.DbLib/Components
- ComponentDesignItemID56=HNB09A05
- ComponentSymbolReference56=BUZZER
- ComponentUpdate56=1
- ComponentIsDeviceSheet56=0
- ComponentLibIdentifierKind57=Library Name And Type
- ComponentLibraryIdentifier57=MKP_lib.DbLib/Components
- ComponentDesignItemID57=HR911105A
- ComponentSymbolReference57=HR911105A
- ComponentUpdate57=1
- ComponentIsDeviceSheet57=0
- ComponentLibIdentifierKind58=Library Name And Type
- ComponentLibraryIdentifier58=MKP_lib.DbLib/Components
- ComponentDesignItemID58=JUMP-2.0-4PIN-FM-TH
- ComponentSymbolReference58=CON-4PIN
- ComponentUpdate58=1
- ComponentIsDeviceSheet58=0
- ComponentLibIdentifierKind59=Library Name And Type
- ComponentLibraryIdentifier59=MKP_lib.DbLib/Components
- ComponentDesignItemID59=KH-IPEX-K501-29
- ComponentSymbolReference59=KH-IPEX-K501-29
- ComponentUpdate59=1
- ComponentIsDeviceSheet59=0
- ComponentLibIdentifierKind60=Library Name And Type
- ComponentLibraryIdentifier60=MKP_lib.DbLib/Components
- ComponentDesignItemID60=LBSS139LT1G
- ComponentSymbolReference60=N-Channel
- ComponentUpdate60=1
- ComponentIsDeviceSheet60=0
- ComponentLibIdentifierKind61=Library Name And Type
- ComponentLibraryIdentifier61=MKP_lib.DbLib/Components
- ComponentDesignItemID61=LM3481MMX/NOPB
- ComponentSymbolReference61=LM3481MMX/NOPB
- ComponentUpdate61=1
- ComponentIsDeviceSheet61=0
- ComponentLibIdentifierKind62=Library Name And Type
- ComponentLibraryIdentifier62=MKP_lib.DbLib/Components
- ComponentDesignItemID62=LM393DR
- ComponentSymbolReference62=LM358
- ComponentUpdate62=1
- ComponentIsDeviceSheet62=0
- ComponentLibIdentifierKind63=Library Name And Type
- ComponentLibraryIdentifier63=MKP_lib.DbLib/Components
- ComponentDesignItemID63=LM-AZ6118-01F
- ComponentSymbolReference63=TVS
- ComponentUpdate63=1
- ComponentIsDeviceSheet63=0
- ComponentLibIdentifierKind64=Library Name And Type
- ComponentLibraryIdentifier64=MKP_lib.DbLib/Components
- ComponentDesignItemID64=LMR14050SDDAR
- ComponentSymbolReference64=LMR14050SDDAR
- ComponentUpdate64=1
- ComponentIsDeviceSheet64=0
- ComponentLibIdentifierKind65=Library Name And Type
- ComponentLibraryIdentifier65=MKP_lib.DbLib/Components
- ComponentDesignItemID65=M7
- ComponentSymbolReference65=Diode
- ComponentUpdate65=1
- ComponentIsDeviceSheet65=0
- ComponentLibIdentifierKind66=Library Name And Type
- ComponentLibraryIdentifier66=MKP_lib.DbLib/Components
- ComponentDesignItemID66=MMBT3904-TP
- ComponentSymbolReference66=NPN
- ComponentUpdate66=1
- ComponentIsDeviceSheet66=0
- ComponentLibIdentifierKind67=Library Name And Type
- ComponentLibraryIdentifier67=MKP_lib.DbLib/Components
- ComponentDesignItemID67=MMSZ5231B-7-F
- ComponentSymbolReference67=ZENER
- ComponentUpdate67=1
- ComponentIsDeviceSheet67=0
- ComponentLibIdentifierKind68=Library Name And Type
- ComponentLibraryIdentifier68=MKP_lib.DbLib/Components
- ComponentDesignItemID68=PE1206DRF7W0R015L
- ComponentSymbolReference68=RES
- ComponentUpdate68=1
- ComponentIsDeviceSheet68=0
- ComponentLibIdentifierKind69=Library Name And Type
- ComponentLibraryIdentifier69=MKP_lib.DbLib/Components
- ComponentDesignItemID69=PM200V-12-12-H43
- ComponentSymbolReference69=CON-2X6PIN
- ComponentUpdate69=1
- ComponentIsDeviceSheet69=0
- ComponentLibIdentifierKind70=Library Name And Type
- ComponentLibraryIdentifier70=MKP_lib.DbLib/Components
- ComponentDesignItemID70=PSPMAA0605H-6R8M-ANP
- ComponentSymbolReference70=IND
- ComponentUpdate70=1
- ComponentIsDeviceSheet70=0
- ComponentLibIdentifierKind71=Library Name And Type
- ComponentLibraryIdentifier71=MKP_lib.DbLib/Components
- ComponentDesignItemID71=R5F51405ADFM#10
- ComponentSymbolReference71=R5F51405ADFM
- ComponentUpdate71=1
- ComponentIsDeviceSheet71=0
- ComponentLibIdentifierKind72=Library Name And Type
- ComponentLibraryIdentifier72=MKP_lib.DbLib/Components
- ComponentDesignItemID72=RC0402FR-070RL
- ComponentSymbolReference72=RES
- ComponentUpdate72=1
- ComponentIsDeviceSheet72=0
- ComponentLibIdentifierKind73=Library Name And Type
- ComponentLibraryIdentifier73=MKP_lib.DbLib/Components
- ComponentDesignItemID73=RC0402FR-07100KL
- ComponentSymbolReference73=RES
- ComponentUpdate73=1
- ComponentIsDeviceSheet73=0
- ComponentLibIdentifierKind74=Library Name And Type
- ComponentLibraryIdentifier74=MKP_lib.DbLib/Components
- ComponentDesignItemID74=RC0402FR-07100RL
- ComponentSymbolReference74=RES
- ComponentUpdate74=1
- ComponentIsDeviceSheet74=0
- ComponentLibIdentifierKind75=Library Name And Type
- ComponentLibraryIdentifier75=MKP_lib.DbLib/Components
- ComponentDesignItemID75=RC0402FR-07105KL
- ComponentSymbolReference75=RES
- ComponentUpdate75=1
- ComponentIsDeviceSheet75=0
- ComponentLibIdentifierKind76=Library Name And Type
- ComponentLibraryIdentifier76=MKP_lib.DbLib/Components
- ComponentDesignItemID76=RC0402FR-0710KL
- ComponentSymbolReference76=RES
- ComponentUpdate76=1
- ComponentIsDeviceSheet76=0
- ComponentLibIdentifierKind77=Library Name And Type
- ComponentLibraryIdentifier77=MKP_lib.DbLib/Components
- ComponentDesignItemID77=RC0402FR-0710RL
- ComponentSymbolReference77=RES
- ComponentUpdate77=1
- ComponentIsDeviceSheet77=0
- ComponentLibIdentifierKind78=Library Name And Type
- ComponentLibraryIdentifier78=MKP_lib.DbLib/Components
- ComponentDesignItemID78=RC0402FR-0712KL
- ComponentSymbolReference78=RES
- ComponentUpdate78=1
- ComponentIsDeviceSheet78=0
- ComponentLibIdentifierKind79=Library Name And Type
- ComponentLibraryIdentifier79=MKP_lib.DbLib/Components
- ComponentDesignItemID79=RC0402FR-0715KL
- ComponentSymbolReference79=RES
- ComponentUpdate79=1
- ComponentIsDeviceSheet79=0
- ComponentLibIdentifierKind80=Library Name And Type
- ComponentLibraryIdentifier80=MKP_lib.DbLib/Components
- ComponentDesignItemID80=RC0402FR-071K2L
- ComponentSymbolReference80=RES
- ComponentUpdate80=1
- ComponentIsDeviceSheet80=0
- ComponentLibIdentifierKind81=Library Name And Type
- ComponentLibraryIdentifier81=MKP_lib.DbLib/Components
- ComponentDesignItemID81=RC0402FR-071K91L
- ComponentSymbolReference81=RES
- ComponentUpdate81=1
- ComponentIsDeviceSheet81=0
- ComponentLibIdentifierKind82=Library Name And Type
- ComponentLibraryIdentifier82=MKP_lib.DbLib/Components
- ComponentDesignItemID82=RC0402FR-071KL
- ComponentSymbolReference82=RES
- ComponentUpdate82=1
- ComponentIsDeviceSheet82=0
- ComponentLibIdentifierKind83=Library Name And Type
- ComponentLibraryIdentifier83=MKP_lib.DbLib/Components
- ComponentDesignItemID83=RC0402FR-071ML
- ComponentSymbolReference83=RES
- ComponentUpdate83=1
- ComponentIsDeviceSheet83=0
- ComponentLibIdentifierKind84=Library Name And Type
- ComponentLibraryIdentifier84=MKP_lib.DbLib/Components
- ComponentDesignItemID84=RC0402FR-0720KL
- ComponentSymbolReference84=RES
- ComponentUpdate84=1
- ComponentIsDeviceSheet84=0
- ComponentLibIdentifierKind85=Library Name And Type
- ComponentLibraryIdentifier85=MKP_lib.DbLib/Components
- ComponentDesignItemID85=RC0402FR-0721K5L
- ComponentSymbolReference85=RES
- ComponentUpdate85=1
- ComponentIsDeviceSheet85=0
- ComponentLibIdentifierKind86=Library Name And Type
- ComponentLibraryIdentifier86=MKP_lib.DbLib/Components
- ComponentDesignItemID86=RC0402FR-07220RL
- ComponentSymbolReference86=RES
- ComponentUpdate86=1
- ComponentIsDeviceSheet86=0
- ComponentLibIdentifierKind87=Library Name And Type
- ComponentLibraryIdentifier87=MKP_lib.DbLib/Components
- ComponentDesignItemID87=RC0402FR-0722RL
- ComponentSymbolReference87=RES
- ComponentUpdate87=1
- ComponentIsDeviceSheet87=0
- ComponentLibIdentifierKind88=Library Name And Type
- ComponentLibraryIdentifier88=MKP_lib.DbLib/Components
- ComponentDesignItemID88=RC0402FR-072K2L
- ComponentSymbolReference88=RES
- ComponentUpdate88=1
- ComponentIsDeviceSheet88=0
- ComponentLibIdentifierKind89=Library Name And Type
- ComponentLibraryIdentifier89=MKP_lib.DbLib/Components
- ComponentDesignItemID89=RC0402FR-0734KL
- ComponentSymbolReference89=RES
- ComponentUpdate89=1
- ComponentIsDeviceSheet89=0
- ComponentLibIdentifierKind90=Library Name And Type
- ComponentLibraryIdentifier90=MKP_lib.DbLib/Components
- ComponentDesignItemID90=RC0402FR-07357KL
- ComponentSymbolReference90=RES
- ComponentUpdate90=1
- ComponentIsDeviceSheet90=0
- ComponentLibIdentifierKind91=Library Name And Type
- ComponentLibraryIdentifier91=MKP_lib.DbLib/Components
- ComponentDesignItemID91=RC0402FR-073K3L
- ComponentSymbolReference91=RES
- ComponentUpdate91=1
- ComponentIsDeviceSheet91=0
- ComponentLibIdentifierKind92=Library Name And Type
- ComponentLibraryIdentifier92=MKP_lib.DbLib/Components
- ComponentDesignItemID92=RC0402FR-0745K3L
- ComponentSymbolReference92=RES
- ComponentUpdate92=1
- ComponentIsDeviceSheet92=0
- ComponentLibIdentifierKind93=Library Name And Type
- ComponentLibraryIdentifier93=MKP_lib.DbLib/Components
- ComponentDesignItemID93=RC0402FR-0747KL
- ComponentSymbolReference93=RES
- ComponentUpdate93=1
- ComponentIsDeviceSheet93=0
- ComponentLibIdentifierKind94=Library Name And Type
- ComponentLibraryIdentifier94=MKP_lib.DbLib/Components
- ComponentDesignItemID94=RC0402FR-07499KL
- ComponentSymbolReference94=RES
- ComponentUpdate94=1
- ComponentIsDeviceSheet94=0
- ComponentLibIdentifierKind95=Library Name And Type
- ComponentLibraryIdentifier95=MKP_lib.DbLib/Components
- ComponentDesignItemID95=RC0402FR-074K7L
- ComponentSymbolReference95=RES
- ComponentUpdate95=1
- ComponentIsDeviceSheet95=0
- ComponentLibIdentifierKind96=Library Name And Type
- ComponentLibraryIdentifier96=MKP_lib.DbLib/Components
- ComponentDesignItemID96=RC0402FR-074R02L
- ComponentSymbolReference96=RES
- ComponentUpdate96=1
- ComponentIsDeviceSheet96=0
- ComponentLibIdentifierKind97=Library Name And Type
- ComponentLibraryIdentifier97=MKP_lib.DbLib/Components
- ComponentDesignItemID97=RC0402FR-0751K1L
- ComponentSymbolReference97=RES
- ComponentUpdate97=1
- ComponentIsDeviceSheet97=0
- ComponentLibIdentifierKind98=Library Name And Type
- ComponentLibraryIdentifier98=MKP_lib.DbLib/Components
- ComponentDesignItemID98=RC0402FR-0768KL
- ComponentSymbolReference98=RES
- ComponentUpdate98=1
- ComponentIsDeviceSheet98=0
- ComponentLibIdentifierKind99=Library Name And Type
- ComponentLibraryIdentifier99=MKP_lib.DbLib/Components
- ComponentDesignItemID99=RC0402FR-0775RL
- ComponentSymbolReference99=RES
- ComponentUpdate99=1
- ComponentIsDeviceSheet99=0
- ComponentLibIdentifierKind100=Library Name And Type
- ComponentLibraryIdentifier100=MKP_lib.DbLib/Components
- ComponentDesignItemID100=RC0402FR-0784K5L
- ComponentSymbolReference100=RES
- ComponentUpdate100=1
- ComponentIsDeviceSheet100=0
- ComponentLibIdentifierKind101=Library Name And Type
- ComponentLibraryIdentifier101=MKP_lib.DbLib/Components
- ComponentDesignItemID101=RC0603JR-070RL
- ComponentSymbolReference101=RES
- ComponentUpdate101=1
- ComponentIsDeviceSheet101=0
- ComponentLibIdentifierKind102=Library Name And Type
- ComponentLibraryIdentifier102=MKP_lib.DbLib/Components
- ComponentDesignItemID102=RI0603L000JT
- ComponentSymbolReference102=RES
- ComponentUpdate102=1
- ComponentIsDeviceSheet102=0
- ComponentLibIdentifierKind103=Library Name And Type
- ComponentLibraryIdentifier103=MKP_lib.DbLib/Components
- ComponentDesignItemID103=RI0603L1R00FT
- ComponentSymbolReference103=RES
- ComponentUpdate103=1
- ComponentIsDeviceSheet103=0
- ComponentLibIdentifierKind104=Library Name And Type
- ComponentLibraryIdentifier104=MKP_lib.DbLib/Components
- ComponentDesignItemID104=RI1206L000JT
- ComponentSymbolReference104=RES
- ComponentUpdate104=1
- ComponentIsDeviceSheet104=0
- ComponentLibIdentifierKind105=Library Name And Type
- ComponentLibraryIdentifier105=MKP_lib.DbLib/Components
- ComponentDesignItemID105=RT1E470M0605
- ComponentSymbolReference105=CAPP
- ComponentUpdate105=1
- ComponentIsDeviceSheet105=0
- ComponentLibIdentifierKind106=Library Name And Type
- ComponentLibraryIdentifier106=MKP_lib.DbLib/Components
- ComponentDesignItemID106=RVT1C471M0810
- ComponentSymbolReference106=CAPP
- ComponentUpdate106=1
- ComponentIsDeviceSheet106=0
- ComponentLibIdentifierKind107=Library Name And Type
- ComponentLibraryIdentifier107=MKP_lib.DbLib/Components
- ComponentDesignItemID107=RVT2A100M0605
- ComponentSymbolReference107=CAPP
- ComponentUpdate107=1
- ComponentIsDeviceSheet107=0
- ComponentLibIdentifierKind108=Library Name And Type
- ComponentLibraryIdentifier108=MKP_lib.DbLib/Components
- ComponentDesignItemID108=S10M
- ComponentSymbolReference108=Diode
- ComponentUpdate108=1
- ComponentIsDeviceSheet108=0
- ComponentLibIdentifierKind109=Library Name And Type
- ComponentLibraryIdentifier109=MKP_lib.DbLib/Components
- ComponentDesignItemID109=SI2333CDS
- ComponentSymbolReference109=P-Channel
- ComponentUpdate109=1
- ComponentIsDeviceSheet109=0
- ComponentLibIdentifierKind110=Library Name And Type
- ComponentLibraryIdentifier110=MKP_lib.DbLib/Components
- ComponentDesignItemID110=SIM65M-C
- ComponentSymbolReference110=SIM65M-C
- ComponentUpdate110=1
- ComponentIsDeviceSheet110=0
- ComponentLibIdentifierKind111=Library Name And Type
- ComponentLibraryIdentifier111=MKP_lib.DbLib/Components
- ComponentDesignItemID111=SMF05CT1G-P
- ComponentSymbolReference111=SMF05CT1G-P
- ComponentUpdate111=1
- ComponentIsDeviceSheet111=0
- ComponentLibIdentifierKind112=Library Name And Type
- ComponentLibraryIdentifier112=MKP_lib.DbLib/Components
- ComponentDesignItemID112=SMF36A
- ComponentSymbolReference112=TVS
- ComponentUpdate112=1
- ComponentIsDeviceSheet112=0
- ComponentLibIdentifierKind113=Library Name And Type
- ComponentLibraryIdentifier113=MKP_lib.DbLib/Components
- ComponentDesignItemID113=SP3232AEIM/TR
- ComponentSymbolReference113=SP3232
- ComponentUpdate113=1
- ComponentIsDeviceSheet113=0
- ComponentLibIdentifierKind114=Library Name And Type
- ComponentLibraryIdentifier114=MKP_lib.DbLib/Components
- ComponentDesignItemID114=SR05-04A
- ComponentSymbolReference114=SR05-04A
- ComponentUpdate114=1
- ComponentIsDeviceSheet114=0
- ComponentLibIdentifierKind115=Library Name And Type
- ComponentLibraryIdentifier115=MKP_lib.DbLib/Components
- ComponentDesignItemID115=SS34A
- ComponentSymbolReference115=SCHOTTKY
- ComponentUpdate115=1
- ComponentIsDeviceSheet115=0
- ComponentLibIdentifierKind116=Library Name And Type
- ComponentLibraryIdentifier116=MKP_lib.DbLib/Components
- ComponentDesignItemID116=SS36F
- ComponentSymbolReference116=SCHOTTKY
- ComponentUpdate116=1
- ComponentIsDeviceSheet116=0
- ComponentLibIdentifierKind117=Library Name And Type
- ComponentLibraryIdentifier117=MKP_lib.DbLib/Components
- ComponentDesignItemID117=T491B107K010AT
- ComponentSymbolReference117=CAPP
- ComponentUpdate117=1
- ComponentIsDeviceSheet117=0
- ComponentLibIdentifierKind118=Library Name And Type
- ComponentLibraryIdentifier118=MKP_lib.DbLib/Components
- ComponentDesignItemID118=TCC1206X5R106K500HT
- ComponentSymbolReference118=CAP
- ComponentUpdate118=1
- ComponentIsDeviceSheet118=0
- ComponentLibIdentifierKind119=Library Name And Type
- ComponentLibraryIdentifier119=MKP_lib.DbLib/Components
- ComponentDesignItemID119=TCC1206X7R225K101HT
- ComponentSymbolReference119=CAP
- ComponentUpdate119=1
- ComponentIsDeviceSheet119=0
- ComponentLibIdentifierKind120=Library Name And Type
- ComponentLibraryIdentifier120=MKP_lib.DbLib/Components
- ComponentDesignItemID120=TLV75801PDBVR
- ComponentSymbolReference120=SGM2028-ADJYN5G/TR
- ComponentUpdate120=1
- ComponentIsDeviceSheet120=0
- ComponentLibIdentifierKind121=Library Name And Type
- ComponentLibraryIdentifier121=MKP_lib.DbLib/Components
- ComponentDesignItemID121=TP
- ComponentSymbolReference121=TP
- ComponentUpdate121=1
- ComponentIsDeviceSheet121=0
- ComponentLibIdentifierKind122=Library Name And Type
- ComponentLibraryIdentifier122=MKP_lib.DbLib/Components
- ComponentDesignItemID122=TS-1090S-AR02026
- ComponentSymbolReference122=SW-4PIN
- ComponentUpdate122=1
- ComponentIsDeviceSheet122=0
- ComponentLibIdentifierKind123=Library Name And Type
- ComponentLibraryIdentifier123=MKP_lib.DbLib/Components
- ComponentDesignItemID123=UMK212B7104KG-T
- ComponentSymbolReference123=CAP
- ComponentUpdate123=1
- ComponentIsDeviceSheet123=0
- ComponentLibIdentifierKind124=Library Name And Type
- ComponentLibraryIdentifier124=MKP_lib.DbLib/Components
- ComponentDesignItemID124=UPZ2012E102-1R5TF
- ComponentSymbolReference124=FB
- ComponentUpdate124=1
- ComponentIsDeviceSheet124=0
- ComponentLibIdentifierKind125=Library Name And Type
- ComponentLibraryIdentifier125=MKP_lib.DbLib/Components
- ComponentDesignItemID125=VHF100505HQ68NJT
- ComponentSymbolReference125=IND
- ComponentUpdate125=1
- ComponentIsDeviceSheet125=0
- ComponentLibIdentifierKind126=Library Name And Type
- ComponentLibraryIdentifier126=MKP_lib.DbLib/Components
- ComponentDesignItemID126=WE05DGCF-B
- ComponentSymbolReference126=TVS-ESD
- ComponentUpdate126=1
- ComponentIsDeviceSheet126=0
- ComponentLibIdentifierKind127=Library Name And Type
- ComponentLibraryIdentifier127=MKP_lib.DbLib/Components
- ComponentDesignItemID127=XH-2A
- ComponentSymbolReference127=CON-2PIN
- ComponentUpdate127=1
- ComponentIsDeviceSheet127=0
- ComponentLibIdentifierKind128=Library Name And Type
- ComponentLibraryIdentifier128=MKP_lib.DbLib/Components
- ComponentDesignItemID128=XH-2AW
- ComponentSymbolReference128=CON-2PIN
- ComponentUpdate128=1
- ComponentIsDeviceSheet128=0
- ComponentLibIdentifierKind129=Library Name And Type
- ComponentLibraryIdentifier129=MKP_lib.DbLib/Components
- ComponentDesignItemID129=XL-1608SURC-06
- ComponentSymbolReference129=LED
- ComponentUpdate129=1
- ComponentIsDeviceSheet129=0
- ComponentLibIdentifierKind130=Library Name And Type
- ComponentLibraryIdentifier130=MKP_lib.DbLib/Components
- ComponentDesignItemID130=XL-1608SYGC-04
- ComponentSymbolReference130=LED
- ComponentUpdate130=1
- ComponentIsDeviceSheet130=0
- ComponentLibIdentifierKind131=Library Name And Type
- ComponentLibraryIdentifier131=MKP_lib.DbLib/Components
- ComponentDesignItemID131=XL-DZ304SURD/3
- ComponentSymbolReference131=LED3
- ComponentUpdate131=1
- ComponentIsDeviceSheet131=0
- ComponentLibIdentifierKind132=Library Name And Type
- ComponentLibraryIdentifier132=MKP_lib.DbLib/Components
- ComponentDesignItemID132=XS9922B
- ComponentSymbolReference132=XS9922B
- ComponentUpdate132=1
- ComponentIsDeviceSheet132=0
- ComponentLibIdentifierKind133=Library Name And Type
- ComponentLibraryIdentifier133=MKP_lib.DbLib/Components
- ComponentDesignItemID133=YAGEO RC0402FR-072R2L
- ComponentSymbolReference133=RES
- ComponentUpdate133=1
- ComponentIsDeviceSheet133=0
- ComponentLibIdentifierKind134=Library Name And Type
- ComponentLibraryIdentifier134=MKP_lib.DbLib/Components
- ComponentDesignItemID134=YI160808U100-5R0T
- ComponentSymbolReference134=FB
- ComponentUpdate134=1
- ComponentIsDeviceSheet134=0
- ComponentLibIdentifierKind135=Library Name And Type
- ComponentLibraryIdentifier135=MKP_lib.DbLib/Components
- ComponentDesignItemID135=ZD0650-2R2M
- ComponentSymbolReference135=IND
- ComponentUpdate135=1
- ComponentIsDeviceSheet135=0
- FullReplace=1
- UpdateDesignatorLock=1
- UpdatePartIDLock=1
- PreserveParameterLocations=1
- PreserveParameterVisibility=1
- DoGraphics=1
- DoParameters=1
- DoModels=1
- AddParameters=0
- RemoveParameters=0
- AddModels=1
- RemoveModels=1
- UpdateCurrentModels=1
- ParameterName0=Category
- ParameterUpdate0=1
- ParameterName1=Catelogy
- ParameterUpdate1=1
- ParameterName2=Comment
- ParameterUpdate2=1
- ParameterName3=Company ID
- ParameterUpdate3=1
- ParameterName4=Component Kind
- ParameterUpdate4=1
- ParameterName5=ComponentLink1Description
- ParameterUpdate5=1
- ParameterName6=ComponentLink1URL
- ParameterUpdate6=1
- ParameterName7=ComponentLink2Description
- ParameterUpdate7=1
- ParameterName8=ComponentLink2URL
- ParameterUpdate8=1
- ParameterName9=ComponentLink3Description
- ParameterUpdate9=1
- ParameterName10=ComponentLink3URL
- ParameterUpdate10=1
- ParameterName11=ComponentLink4Description
- ParameterUpdate11=1
- ParameterName12=ComponentLink4URL
- ParameterUpdate12=1
- ParameterName13=ComponentLink5Description
- ParameterUpdate13=1
- ParameterName14=ComponentLink5URL
- ParameterUpdate14=1
- ParameterName15=ComponentLink6Description
- ParameterUpdate15=1
- ParameterName16=ComponentLink6URL
- ParameterUpdate16=1
- ParameterName17=Contact Plating
- ParameterUpdate17=1
- ParameterName18=Continuous Drain Current (ID)
- ParameterUpdate18=1
- ParameterName19=Creator
- ParameterUpdate19=1
- ParameterName20=Current Rating
- ParameterUpdate20=1
- ParameterName21=Datasheet
- ParameterUpdate21=1
- ParameterName22=Decal
- ParameterUpdate22=1
- ParameterName23=Des
- ParameterUpdate23=1
- ParameterName24=Description
- ParameterUpdate24=1
- ParameterName25=Detailed Value
- ParameterUpdate25=1
- ParameterName26=Drain to Source Breakdown Voltage
- ParameterUpdate26=1
- ParameterName27=Drain to Source Resistance
- ParameterUpdate27=1
- ParameterName28=Drain to Source Voltage (Vdss)
- ParameterUpdate28=1
- ParameterName29=Element Configuration
- ParameterUpdate29=1
- ParameterName30=Fall Time
- ParameterUpdate30=1
- ParameterName31=Gate to Source Voltage (Vgs)
- ParameterUpdate31=1
- ParameterName32=Geometry Height
- ParameterUpdate32=1
- ParameterName33=Height
- ParameterUpdate33=1
- ParameterName34=Input Capacitance
- ParameterUpdate34=1
- ParameterName35=Kieu_Chan
- ParameterUpdate35=1
- ParameterName36=Lead Free
- ParameterUpdate36=1
- ParameterName37=Length
- ParameterUpdate37=1
- ParameterName38=Library Reference
- ParameterUpdate38=1
- ParameterName39=Link sale
- ParameterUpdate39=1
- ParameterName40=MANU 1
- ParameterUpdate40=1
- ParameterName41=MANU 2
- ParameterUpdate41=1
- ParameterName42=Manufacture
- ParameterUpdate42=1
- ParameterName43=Manufacturer
- ParameterUpdate43=1
- ParameterName44=Manufacturer 1
- ParameterUpdate44=1
- ParameterName45=Manufacturer Part Number
- ParameterUpdate45=1
- ParameterName46=Manufacturer Part Number 1
- ParameterUpdate46=1
- ParameterName47=Max Operating Temperature
- ParameterUpdate47=1
- ParameterName48=Max Power Dissipation
- ParameterUpdate48=1
- ParameterName49=MFR
- ParameterUpdate49=1
- ParameterName50=Min Operating Temperature
- ParameterUpdate50=1
- ParameterName51=Mount
- ParameterUpdate51=1
- ParameterName52=Mounting type
- ParameterUpdate52=1
- ParameterName53=MPN
- ParameterUpdate53=1
- ParameterName54=Nominal Vgs
- ParameterUpdate54=1
- ParameterName55=Number of Elements
- ParameterUpdate55=1
- ParameterName56=Number of Pins
- ParameterUpdate56=1
- ParameterName57=Operating Temperature
- ParameterUpdate57=1
- ParameterName58=Package Quantity
- ParameterUpdate58=1
- ParameterName59=Packaging
- ParameterUpdate59=1
- ParameterName60=Parameter 1
- ParameterUpdate60=1
- ParameterName61=Part Num 1
- ParameterUpdate61=1
- ParameterName62=Part Num 2
- ParameterUpdate62=1
- ParameterName63=Part Number
- ParameterUpdate63=1
- ParameterName64=Partnumber
- ParameterUpdate64=1
- ParameterName65=PCB DECAL
- ParameterUpdate65=1
- ParameterName66=Power Dissipation
- ParameterUpdate66=1
- ParameterName67=Pricing (USD)
- ParameterUpdate67=1
- ParameterName68=Pricing 1
- ParameterUpdate68=1
- ParameterName69=PROJECT
- ParameterUpdate69=1
- ParameterName70=Radiation Hardening
- ParameterUpdate70=1
- ParameterName71=Rds On Max
- ParameterUpdate71=1
- ParameterName72=REACH SVHC
- ParameterUpdate72=1
- ParameterName73=Rise Time
- ParameterUpdate73=1
- ParameterName74=RoHS
- ParameterUpdate74=1
- ParameterName75=Solder
- ParameterUpdate75=1
- ParameterName76=Stock 1
- ParameterUpdate76=1
- ParameterName77=Supplier
- ParameterUpdate77=1
- ParameterName78=Supplier 1
- ParameterUpdate78=1
- ParameterName79=Supplier Part Number 1
- ParameterUpdate79=1
- ParameterName80=Tolerance
- ParameterUpdate80=1
- ParameterName81=Turn-Off Delay Time
- ParameterUpdate81=1
- ParameterName82=Turn-On Delay Time
- ParameterUpdate82=1
- ParameterName83=Type
- ParameterUpdate83=1
- ParameterName84=Threshold Voltage
- ParameterUpdate84=1
- ParameterName85=Unit
- ParameterUpdate85=1
- ParameterName86=Value
- ParameterUpdate86=1
- ParameterName87=Vendor 1
- ParameterUpdate87=1
- ParameterName88=Vendor P/N1
- ParameterUpdate88=1
- ParameterName89=Voltage Rated
- ParameterUpdate89=1
- ParameterName90=Width
- ParameterUpdate90=1
- ModelTypeGroup0=PCBLIB
- ModelTypeUpdate0=1
- ModelType0=PCBLIB
- ModelName0=0603
- ModelUpdate0=1
- ModelType1=PCBLIB
- ModelName1=0603-GREEN
- ModelUpdate1=1
- ModelType2=PCBLIB
- ModelName2=0603-RED
- ModelUpdate2=1
- ModelType3=PCBLIB
- ModelName3=0603-YELLOW
- ModelUpdate3=1
- ModelType4=PCBLIB
- ModelName4=0805
- ModelUpdate4=1
- ModelType5=PCBLIB
- ModelName5=10-MSOP
- ModelUpdate5=1
- ModelType6=PCBLIB
- ModelName6=2x6P, 2mm, TH, MALE
- ModelUpdate6=1
- ModelType7=PCBLIB
- ModelName7=8-POWERIC
- ModelUpdate7=1
- ModelType8=PCBLIB
- ModelName8=8-TSON_FIXED
- ModelUpdate8=1
- ModelType9=PCBLIB
- ModelName9=A7600C-L1
- ModelUpdate9=1
- ModelType10=PCBLIB
- ModelName10=A7600C-L1 S2-10DEG
- ModelUpdate10=1
- ModelType11=PCBLIB
- ModelName11=AS0BC21S40BM7H
- ModelUpdate11=1
- ModelType12=PCBLIB
- ModelName12=BZ-9x5.5
- ModelUpdate12=1
- ModelType13=PCBLIB
- ModelName13=C0402
- ModelUpdate13=1
- ModelType14=PCBLIB
- ModelName14=CAPC_0603_N
- ModelUpdate14=1
- ModelType15=PCBLIB
- ModelName15=CAPC_0805_N
- ModelUpdate15=1
- ModelType16=PCBLIB
- ModelName16=CAPC_1206_N
- ModelUpdate16=1
- ModelType17=PCBLIB
- ModelName17=CASE-B-3528-21(mm)
- ModelUpdate17=1
- ModelType18=PCBLIB
- ModelName18=D0402
- ModelUpdate18=1
- ModelType19=PCBLIB
- ModelName19=DFN1006-2L
- ModelUpdate19=1
- ModelType20=PCBLIB
- ModelName20=DFN1006P2X
- ModelUpdate20=1
- ModelType21=PCBLIB
- ModelName21=DIO-SMA
- ModelUpdate21=1
- ModelType22=PCBLIB
- ModelName22=DIP-6-2.54mm
- ModelUpdate22=1
- ModelType23=PCBLIB
- ModelName23=D-Sub-9P-Male
- ModelUpdate23=1
- ModelType24=PCBLIB
- ModelName24=ETA6003Q3Q-QFN16G-0.5-3X3MM
- ModelUpdate24=1
- ModelType25=PCBLIB
- ModelName25=FERRITE_0402
- ModelUpdate25=1
- ModelType26=PCBLIB
- ModelName26=FIL_DLW21SN670SQ2L
- ModelUpdate26=1
- ModelType27=PCBLIB
- ModelName27=HEADER_4PIN_2.54
- ModelUpdate27=1
- ModelType28=PCBLIB
- ModelName28=HEATSINK_40x40x8
- ModelUpdate28=1
- ModelType29=PCBLIB
- ModelName29=IND-12.2x12.2
- ModelUpdate29=1
- ModelType30=PCBLIB
- ModelName30=IND-4x4
- ModelUpdate30=1
- ModelType31=PCBLIB
- ModelName31=IND-7X6.6
- ModelUpdate31=1
- ModelType32=PCBLIB
- ModelName32=IPEX
- ModelUpdate32=1
- ModelType33=PCBLIB
- ModelName33=JUMP_4PIN_2.0
- ModelUpdate33=1
- ModelType34=PCBLIB
- ModelName34=L0402
- ModelUpdate34=1
- ModelType35=PCBLIB
- ModelName35=M2_M_KEY_CONNECT_P
- ModelUpdate35=1
- ModelType36=PCBLIB
- ModelName36=MUP-C7802-02
- ModelUpdate36=1
- ModelType37=PCBLIB
- ModelName37=MUP-M6110-01
- ModelUpdate37=1
- ModelType38=PCBLIB
- ModelName38=QFN-88(10x10mm)
- ModelUpdate38=1
- ModelType39=PCBLIB
- ModelName39=QFP50P1200X1200X170-64N
- ModelUpdate39=1
- ModelType40=PCBLIB
- ModelName40=Quectel L76
- ModelUpdate40=1
- ModelType41=PCBLIB
- ModelName41=R0402
- ModelUpdate41=1
- ModelType42=PCBLIB
- ModelName42=R5F51405ADFM#10
- ModelUpdate42=1
- ModelType43=PCBLIB
- ModelName43=RESC_0603_N
- ModelUpdate43=1
- ModelType44=PCBLIB
- ModelName44=RESC_1206_N
- ModelUpdate44=1
- ModelType45=PCBLIB
- ModelName45=RJ45
- ModelUpdate45=1
- ModelType46=PCBLIB
- ModelName46=RJ45-HR911105A
- ModelUpdate46=1
- ModelType47=PCBLIB
- ModelName47=SIM65M-C
- ModelUpdate47=1
- ModelType48=PCBLIB
- ModelName48=SMC(DO-214AB)
- ModelUpdate48=1
- ModelType49=PCBLIB
- ModelName49=SMD,D6.3xL5.4mm
- ModelUpdate49=1
- ModelType50=PCBLIB
- ModelName50=SMD2016-4P
- ModelUpdate50=1
- ModelType51=PCBLIB
- ModelName51=SMD-ALU-6.3
- ModelUpdate51=1
- ModelType52=PCBLIB
- ModelName52=SMD-ALU-D8xL10.2mm
- ModelUpdate52=1
- ModelType53=PCBLIB
- ModelName53=SMF05C
- ModelUpdate53=1
- ModelType54=PCBLIB
- ModelName54=SOD123
- ModelUpdate54=1
- ModelType55=PCBLIB
- ModelName55=SOD-123
- ModelUpdate55=1
- ModelType56=PCBLIB
- ModelName56=SOD-123FL
- ModelUpdate56=1
- ModelType57=PCBLIB
- ModelName57=SOD-523
- ModelUpdate57=1
- ModelType58=PCBLIB
- ModelName58=SOIC-8
- ModelUpdate58=1
- ModelType59=PCBLIB
- ModelName59=SOP16
- ModelUpdate59=1
- ModelType60=PCBLIB
- ModelName60=SOT-23-132
- ModelUpdate60=1
- ModelType61=PCBLIB
- ModelName61=SOT-23-3
- ModelUpdate61=1
- ModelType62=PCBLIB
- ModelName62=SOT-23-5
- ModelUpdate62=1
- ModelType63=PCBLIB
- ModelName63=SOT-363-6
- ModelUpdate63=1
- ModelType64=PCBLIB
- ModelName64=SW4-SMD
- ModelUpdate64=1
- ModelType65=PCBLIB
- ModelName65=To-277B
- ModelUpdate65=1
- ModelType66=PCBLIB
- ModelName66=TP-ANCHOR
- ModelUpdate66=1
- ModelType67=PCBLIB
- ModelName67=TP-SMD
- ModelUpdate67=1
- ModelType68=PCBLIB
- ModelName68=TSOT-23-6
- ModelUpdate68=1
- ModelType69=PCBLIB
- ModelName69=TH-0.8-0.5-M1.4
- ModelUpdate69=1
- ModelType70=PCBLIB
- ModelName70=VSONP-8(3.1x3.1)
- ModelUpdate70=1
- ModelType71=PCBLIB
- ModelName71=XH2.54-2P-2.54
- ModelUpdate71=1
- ModelType72=PCBLIB
- ModelName72=XH2.54-2P-R
- ModelUpdate72=1
- ModelTypeGroup1=SIM
- ModelTypeUpdate1=1
- ModelType73=SIM
- ModelName73=CSD16323Q3
- ModelUpdate73=1
- [DatabaseUpdateOptions]
- SelectedOnly=0
- UpdateVariants=1
- UpdateToLatestRevision=1
- PartTypes=0
- ComponentLibIdentifierKind0=Library Name And Type
- ComponentLibraryIdentifier0=MKP_lib.DbLib/Components
- ComponentDesignItemID0=0805CG330J500NT
- ComponentSymbolReference0=CAP
- ComponentUpdate0=1
- ComponentIsDeviceSheet0=0
- ComponentLibIdentifierKind1=Library Name And Type
- ComponentLibraryIdentifier1=MKP_lib.DbLib/Components
- ComponentDesignItemID1=150060YS75000
- ComponentSymbolReference1=LED
- ComponentUpdate1=1
- ComponentIsDeviceSheet1=0
- ComponentLibIdentifierKind2=Library Name And Type
- ComponentLibraryIdentifier2=MKP_lib.DbLib/Components
- ComponentDesignItemID2=2.54-2*8P
- ComponentSymbolReference2=CON-8X2PIN
- ComponentUpdate2=1
- ComponentIsDeviceSheet2=0
- ComponentLibIdentifierKind3=Library Name And Type
- ComponentLibraryIdentifier3=MKP_lib.DbLib/Components
- ComponentDesignItemID3=3.0-2*2A
- ComponentSymbolReference3=CON-2X2PIN
- ComponentUpdate3=1
- ComponentIsDeviceSheet3=0
- ComponentLibIdentifierKind4=Library Name And Type
- ComponentLibraryIdentifier4=MKP_lib.DbLib/Components
- ComponentDesignItemID4=3N27000G33YC
- ComponentSymbolReference4=OSCILLATOR
- ComponentUpdate4=1
- ComponentIsDeviceSheet4=0
- ComponentLibIdentifierKind5=Library Name And Type
- ComponentLibraryIdentifier5=MKP_lib.DbLib/Components
- ComponentDesignItemID5=A2541WV-4P
- ComponentSymbolReference5=CON-4PIN
- ComponentUpdate5=1
- ComponentIsDeviceSheet5=0
- ComponentLibIdentifierKind6=Library Name And Type
- ComponentLibraryIdentifier6=MKP_lib.DbLib/Components
- ComponentDesignItemID6=ABS07-32.768KHZ-T
- ComponentSymbolReference6=XTL-2PIN
- ComponentUpdate6=1
- ComponentIsDeviceSheet6=0
- ComponentLibIdentifierKind7=Library Name And Type
- ComponentLibraryIdentifier7=MKP_lib.DbLib/Components
- ComponentDesignItemID7=AC0402FR-07590KL
- ComponentSymbolReference7=RES
- ComponentUpdate7=1
- ComponentIsDeviceSheet7=0
- ComponentLibIdentifierKind8=Library Name And Type
- ComponentLibraryIdentifier8=MKP_lib.DbLib/Components
- ComponentDesignItemID8=AFC07-S20FCC-00
- ComponentSymbolReference8=FFC-20P
- ComponentUpdate8=1
- ComponentIsDeviceSheet8=0
- ComponentLibIdentifierKind9=Library Name And Type
- ComponentLibraryIdentifier9=MKP_lib.DbLib/Components
- ComponentDesignItemID9=APCI0146-P001A
- ComponentSymbolReference9=APCI0146-P001A
- ComponentUpdate9=1
- ComponentIsDeviceSheet9=0
- ComponentLibIdentifierKind10=Library Name And Type
- ComponentLibraryIdentifier10=MKP_lib.DbLib/Components
- ComponentDesignItemID10=APX823-26W5G-7
- ComponentSymbolReference10=APX823-26W5G-7
- ComponentUpdate10=1
- ComponentIsDeviceSheet10=0
- ComponentLibIdentifierKind11=Library Name And Type
- ComponentLibraryIdentifier11=MKP_lib.DbLib/Components
- ComponentDesignItemID11=AZ6118-01F
- ComponentSymbolReference11=TVS
- ComponentUpdate11=1
- ComponentIsDeviceSheet11=0
- ComponentLibIdentifierKind12=Library Name And Type
- ComponentLibraryIdentifier12=MKP_lib.DbLib/Components
- ComponentDesignItemID12=B72590D50H160
- ComponentSymbolReference12=B72590D50H160
- ComponentUpdate12=1
- ComponentIsDeviceSheet12=0
- ComponentLibIdentifierKind13=Library Name And Type
- ComponentLibraryIdentifier13=MKP_lib.DbLib/Components
- ComponentDesignItemID13=BLM18KG221SN1D
- ComponentSymbolReference13=FB
- ComponentUpdate13=1
- ComponentIsDeviceSheet13=0
- ComponentLibIdentifierKind14=Library Name And Type
- ComponentLibraryIdentifier14=MKP_lib.DbLib/Components
- ComponentDesignItemID14=BLM31KN121SN1L
- ComponentSymbolReference14=FB
- ComponentUpdate14=1
- ComponentIsDeviceSheet14=0
- ComponentLibIdentifierKind15=Library Name And Type
- ComponentLibraryIdentifier15=MKP_lib.DbLib/Components
- ComponentDesignItemID15=C0603X5R105K500NT
- ComponentSymbolReference15=CAP
- ComponentUpdate15=1
- ComponentIsDeviceSheet15=0
- ComponentLibIdentifierKind16=Library Name And Type
- ComponentLibraryIdentifier16=MKP_lib.DbLib/Components
- ComponentDesignItemID16=C0603X5R475K350NT
- ComponentSymbolReference16=C0603X5R475K350NT
- ComponentUpdate16=1
- ComponentIsDeviceSheet16=0
- ComponentLibIdentifierKind17=Library Name And Type
- ComponentLibraryIdentifier17=MKP_lib.DbLib/Components
- ComponentDesignItemID17=C0805X5R106K160NT
- ComponentSymbolReference17=CAP
- ComponentUpdate17=1
- ComponentIsDeviceSheet17=0
- ComponentLibIdentifierKind18=Library Name And Type
- ComponentLibraryIdentifier18=MKP_lib.DbLib/Components
- ComponentDesignItemID18=CC0402FRNPO9BN101
- ComponentSymbolReference18=CAP
- ComponentUpdate18=1
- ComponentIsDeviceSheet18=0
- ComponentLibIdentifierKind19=Library Name And Type
- ComponentLibraryIdentifier19=MKP_lib.DbLib/Components
- ComponentDesignItemID19=CC0402FRNPO9BN120
- ComponentSymbolReference19=CAP
- ComponentUpdate19=1
- ComponentIsDeviceSheet19=0
- ComponentLibIdentifierKind20=Library Name And Type
- ComponentLibraryIdentifier20=MKP_lib.DbLib/Components
- ComponentDesignItemID20=CC0402KRX7R7BB104
- ComponentSymbolReference20=CAP
- ComponentUpdate20=1
- ComponentIsDeviceSheet20=0
- ComponentLibIdentifierKind21=Library Name And Type
- ComponentLibraryIdentifier21=MKP_lib.DbLib/Components
- ComponentDesignItemID21=CC0402KRX7R9BB103
- ComponentSymbolReference21=CAP
- ComponentUpdate21=1
- ComponentIsDeviceSheet21=0
- ComponentLibIdentifierKind22=Library Name And Type
- ComponentLibraryIdentifier22=MKP_lib.DbLib/Components
- ComponentDesignItemID22=CC0402KRX7R9BB104
- ComponentSymbolReference22=CAP
- ComponentUpdate22=1
- ComponentIsDeviceSheet22=0
- ComponentLibIdentifierKind23=Library Name And Type
- ComponentLibraryIdentifier23=MKP_lib.DbLib/Components
- ComponentDesignItemID23=CC0603JRNPO9BN750
- ComponentSymbolReference23=CAP
- ComponentUpdate23=1
- ComponentIsDeviceSheet23=0
- ComponentLibIdentifierKind24=Library Name And Type
- ComponentLibraryIdentifier24=MKP_lib.DbLib/Components
- ComponentDesignItemID24=CC0603KRX7R9BB104
- ComponentSymbolReference24=CAP
- ComponentUpdate24=1
- ComponentIsDeviceSheet24=0
- ComponentLibIdentifierKind25=Library Name And Type
- ComponentLibraryIdentifier25=MKP_lib.DbLib/Components
- ComponentDesignItemID25=CC0603KRX7R9BB474
- ComponentSymbolReference25=CAP
- ComponentUpdate25=1
- ComponentIsDeviceSheet25=0
- ComponentLibIdentifierKind26=Library Name And Type
- ComponentLibraryIdentifier26=MKP_lib.DbLib/Components
- ComponentDesignItemID26=CC0603KRX7R9BB561
- ComponentSymbolReference26=CAP
- ComponentUpdate26=1
- ComponentIsDeviceSheet26=0
- ComponentLibIdentifierKind27=Library Name And Type
- ComponentLibraryIdentifier27=MKP_lib.DbLib/Components
- ComponentDesignItemID27=CC0603KRX7R9BB563
- ComponentSymbolReference27=CAP
- ComponentUpdate27=1
- ComponentIsDeviceSheet27=0
- ComponentLibIdentifierKind28=Library Name And Type
- ComponentLibraryIdentifier28=MKP_lib.DbLib/Components
- ComponentDesignItemID28=CC1206KKX7R0BB104
- ComponentSymbolReference28=CAP
- ComponentUpdate28=1
- ComponentIsDeviceSheet28=0
- ComponentLibIdentifierKind29=Library Name And Type
- ComponentLibraryIdentifier29=MKP_lib.DbLib/Components
- ComponentDesignItemID29=CCTC TCC1206X7R225K101HT
- ComponentSymbolReference29=CAP
- ComponentUpdate29=1
- ComponentIsDeviceSheet29=0
- ComponentLibIdentifierKind30=Library Name And Type
- ComponentLibraryIdentifier30=MKP_lib.DbLib/Components
- ComponentDesignItemID30=CL05A105KO5NNNC
- ComponentSymbolReference30=CAP
- ComponentUpdate30=1
- ComponentIsDeviceSheet30=0
- ComponentLibIdentifierKind31=Library Name And Type
- ComponentLibraryIdentifier31=MKP_lib.DbLib/Components
- ComponentDesignItemID31=CL05C330JB5NNNC
- ComponentSymbolReference31=CAP
- ComponentUpdate31=1
- ComponentIsDeviceSheet31=0
- ComponentLibIdentifierKind32=Library Name And Type
- ComponentLibraryIdentifier32=MKP_lib.DbLib/Components
- ComponentDesignItemID32=CL10A226MO7JZNC
- ComponentSymbolReference32=CL10A226MO7JZNC
- ComponentUpdate32=1
- ComponentIsDeviceSheet32=0
- ComponentLibIdentifierKind33=Library Name And Type
- ComponentLibraryIdentifier33=MKP_lib.DbLib/Components
- ComponentDesignItemID33=CL10A226MQ8NRNE
- ComponentSymbolReference33=CAP
- ComponentUpdate33=1
- ComponentIsDeviceSheet33=0
- ComponentLibIdentifierKind34=Library Name And Type
- ComponentLibraryIdentifier34=MKP_lib.DbLib/Components
- ComponentDesignItemID34=CL10A476MQ8QRNC
- ComponentSymbolReference34=CAP
- ComponentUpdate34=1
- ComponentIsDeviceSheet34=0
- ComponentLibIdentifierKind35=Library Name And Type
- ComponentLibraryIdentifier35=MKP_lib.DbLib/Components
- ComponentDesignItemID35=D-DMR009PM-D002
- ComponentSymbolReference35=D-DMR009PM-D002
- ComponentUpdate35=1
- ComponentIsDeviceSheet35=0
- ComponentLibIdentifierKind36=Library Name And Type
- ComponentLibraryIdentifier36=MKP_lib.DbLib/Components
- ComponentDesignItemID36=DLM0NSN900HY2D
- ComponentSymbolReference36=Common Mode Filters
- ComponentUpdate36=1
- ComponentIsDeviceSheet36=0
- ComponentLibIdentifierKind37=Library Name And Type
- ComponentLibraryIdentifier37=MKP_lib.DbLib/Components
- ComponentDesignItemID37=DRQ125-220-R
- ComponentSymbolReference37=DRQ125
- ComponentUpdate37=1
- ComponentIsDeviceSheet37=0
- ComponentLibIdentifierKind38=Library Name And Type
- ComponentLibraryIdentifier38=MKP_lib.DbLib/Components
- ComponentDesignItemID38=EC25EUGA-512-SGNS
- ComponentSymbolReference38=EC25EUGA-512-SGNS
- ComponentUpdate38=1
- ComponentIsDeviceSheet38=0
- ComponentLibIdentifierKind39=Library Name And Type
- ComponentLibraryIdentifier39=MKP_lib.DbLib/Components
- ComponentDesignItemID39=EL3H7(B)(TA)-VG
- ComponentSymbolReference39=PS2801
- ComponentUpdate39=1
- ComponentIsDeviceSheet39=0
- ComponentLibIdentifierKind40=Library Name And Type
- ComponentLibraryIdentifier40=MKP_lib.DbLib/Components
- ComponentDesignItemID40=EMK316BBJ476ML-T
- ComponentSymbolReference40=CAP
- ComponentUpdate40=1
- ComponentIsDeviceSheet40=0
- ComponentLibIdentifierKind41=Library Name And Type
- ComponentLibraryIdentifier41=MKP_lib.DbLib/Components
- ComponentDesignItemID41=ESD5Z5V0
- ComponentSymbolReference41=TVS
- ComponentUpdate41=1
- ComponentIsDeviceSheet41=0
- ComponentLibIdentifierKind42=Library Name And Type
- ComponentLibraryIdentifier42=MKP_lib.DbLib/Components
- ComponentDesignItemID42=EWK1HM101F11OT
- ComponentSymbolReference42=CAPP
- ComponentUpdate42=1
- ComponentIsDeviceSheet42=0
- ComponentLibIdentifierKind43=Library Name And Type
- ComponentLibraryIdentifier43=MKP_lib.DbLib/Components
- ComponentDesignItemID43=FN21N100J500PAG
- ComponentSymbolReference43=CAP
- ComponentUpdate43=1
- ComponentIsDeviceSheet43=0
- ComponentLibIdentifierKind44=Library Name And Type
- ComponentLibraryIdentifier44=MKP_lib.DbLib/Components
- ComponentDesignItemID44=GT-F0502SR20-24SMT01
- ComponentSymbolReference44=CON-24PIN
- ComponentUpdate44=1
- ComponentIsDeviceSheet44=0
- ComponentLibIdentifierKind45=Library Name And Type
- ComponentLibraryIdentifier45=MKP_lib.DbLib/Components
- ComponentDesignItemID45=HNB09A05
- ComponentSymbolReference45=BUZZER
- ComponentUpdate45=1
- ComponentIsDeviceSheet45=0
- ComponentLibIdentifierKind46=Library Name And Type
- ComponentLibraryIdentifier46=MKP_lib.DbLib/Components
- ComponentDesignItemID46=HT66F0021
- ComponentSymbolReference46=HT66F0021
- ComponentUpdate46=1
- ComponentIsDeviceSheet46=0
- ComponentLibIdentifierKind47=Library Name And Type
- ComponentLibraryIdentifier47=MKP_lib.DbLib/Components
- ComponentDesignItemID47=KH-IPEX-K501-29
- ComponentSymbolReference47=KH-IPEX-K501-29
- ComponentUpdate47=1
- ComponentIsDeviceSheet47=0
- ComponentLibIdentifierKind48=Library Name And Type
- ComponentLibraryIdentifier48=MKP_lib.DbLib/Components
- ComponentDesignItemID48=LBAT54CLT1G
- ComponentSymbolReference48=DIODE-3
- ComponentUpdate48=1
- ComponentIsDeviceSheet48=0
- ComponentLibIdentifierKind49=Library Name And Type
- ComponentLibraryIdentifier49=MKP_lib.DbLib/Components
- ComponentDesignItemID49=LBSS139LT1G
- ComponentSymbolReference49=N-Channel
- ComponentUpdate49=1
- ComponentIsDeviceSheet49=0
- ComponentLibIdentifierKind50=Library Name And Type
- ComponentLibraryIdentifier50=MKP_lib.DbLib/Components
- ComponentDesignItemID50=LK8563T
- ComponentSymbolReference50=LK8563T
- ComponentUpdate50=1
- ComponentIsDeviceSheet50=0
- ComponentLibIdentifierKind51=Library Name And Type
- ComponentLibraryIdentifier51=MKP_lib.DbLib/Components
- ComponentDesignItemID51=LM3481MMX/NOPB
- ComponentSymbolReference51=LM3481MMX/NOPB
- ComponentUpdate51=1
- ComponentIsDeviceSheet51=0
- ComponentLibIdentifierKind52=Library Name And Type
- ComponentLibraryIdentifier52=MKP_lib.DbLib/Components
- ComponentDesignItemID52=LM393DR
- ComponentSymbolReference52=LM358
- ComponentUpdate52=1
- ComponentIsDeviceSheet52=0
- ComponentLibIdentifierKind53=Library Name And Type
- ComponentLibraryIdentifier53=MKP_lib.DbLib/Components
- ComponentDesignItemID53=LM-SE05NRE14GA
- ComponentSymbolReference53=LM-SE05NRE14GA
- ComponentUpdate53=1
- ComponentIsDeviceSheet53=0
- ComponentLibIdentifierKind54=Library Name And Type
- ComponentLibraryIdentifier54=MKP_lib.DbLib/Components
- ComponentDesignItemID54=LQG15HS56NJ02D
- ComponentSymbolReference54=IND
- ComponentUpdate54=1
- ComponentIsDeviceSheet54=0
- ComponentLibIdentifierKind55=Library Name And Type
- ComponentLibraryIdentifier55=MKP_lib.DbLib/Components
- ComponentDesignItemID55=LQM2HPN2R2MGHL
- ComponentSymbolReference55=IND
- ComponentUpdate55=1
- ComponentIsDeviceSheet55=0
- ComponentLibIdentifierKind56=Library Name And Type
- ComponentLibraryIdentifier56=MKP_lib.DbLib/Components
- ComponentDesignItemID56=M7
- ComponentSymbolReference56=Diode
- ComponentUpdate56=1
- ComponentIsDeviceSheet56=0
- ComponentLibIdentifierKind57=Library Name And Type
- ComponentLibraryIdentifier57=MKP_lib.DbLib/Components
- ComponentDesignItemID57=MAI4020S-2R2MT
- ComponentSymbolReference57=IND
- ComponentUpdate57=1
- ComponentIsDeviceSheet57=0
- ComponentLibIdentifierKind58=Library Name And Type
- ComponentLibraryIdentifier58=MKP_lib.DbLib/Components
- ComponentDesignItemID58=MAX3232CDR
- ComponentSymbolReference58=Max3232
- ComponentUpdate58=1
- ComponentIsDeviceSheet58=0
- ComponentLibIdentifierKind59=Library Name And Type
- ComponentLibraryIdentifier59=MKP_lib.DbLib/Components
- ComponentDesignItemID59=MF-NSMF110-2
- ComponentSymbolReference59=Fuse
- ComponentUpdate59=1
- ComponentIsDeviceSheet59=0
- ComponentLibIdentifierKind60=Library Name And Type
- ComponentLibraryIdentifier60=MKP_lib.DbLib/Components
- ComponentDesignItemID60=MMBT3904-TP
- ComponentSymbolReference60=NPN
- ComponentUpdate60=1
- ComponentIsDeviceSheet60=0
- ComponentLibIdentifierKind61=Library Name And Type
- ComponentLibraryIdentifier61=MKP_lib.DbLib/Components
- ComponentDesignItemID61=MMBTA05LT1G
- ComponentSymbolReference61=NPN
- ComponentUpdate61=1
- ComponentIsDeviceSheet61=0
- ComponentLibIdentifierKind62=Library Name And Type
- ComponentLibraryIdentifier62=MKP_lib.DbLib/Components
- ComponentDesignItemID62=MR01A-01211
- ComponentSymbolReference62=MicroSDCard
- ComponentUpdate62=1
- ComponentIsDeviceSheet62=0
- ComponentLibIdentifierKind63=Library Name And Type
- ComponentLibraryIdentifier63=MKP_lib.DbLib/Components
- ComponentDesignItemID63=N4
- ComponentSymbolReference63=N4
- ComponentUpdate63=1
- ComponentIsDeviceSheet63=0
- ComponentLibIdentifierKind64=Library Name And Type
- ComponentLibraryIdentifier64=MKP_lib.DbLib/Components
- ComponentDesignItemID64=NDP2435KC
- ComponentSymbolReference64=NDP2435KC
- ComponentUpdate64=1
- ComponentIsDeviceSheet64=0
- ComponentLibIdentifierKind65=Library Name And Type
- ComponentLibraryIdentifier65=MKP_lib.DbLib/Components
- ComponentDesignItemID65=PA4341.103ANLT
- ComponentSymbolReference65=IND
- ComponentUpdate65=1
- ComponentIsDeviceSheet65=0
- ComponentLibIdentifierKind66=Library Name And Type
- ComponentLibraryIdentifier66=MKP_lib.DbLib/Components
- ComponentDesignItemID66=PE1206DRF7W0R015L
- ComponentSymbolReference66=RES
- ComponentUpdate66=1
- ComponentIsDeviceSheet66=0
- ComponentLibIdentifierKind67=Library Name And Type
- ComponentLibraryIdentifier67=MKP_lib.DbLib/Components
- ComponentDesignItemID67=PTVS5V0S1UR,115
- ComponentSymbolReference67=TVS
- ComponentUpdate67=1
- ComponentIsDeviceSheet67=0
- ComponentLibIdentifierKind68=Library Name And Type
- ComponentLibraryIdentifier68=MKP_lib.DbLib/Components
- ComponentDesignItemID68=PZ254R-12-4P
- ComponentSymbolReference68=CON-2X2PIN
- ComponentUpdate68=1
- ComponentIsDeviceSheet68=0
- ComponentLibIdentifierKind69=Library Name And Type
- ComponentLibraryIdentifier69=MKP_lib.DbLib/Components
- ComponentDesignItemID69=RC0402FR-070RL
- ComponentSymbolReference69=RES
- ComponentUpdate69=1
- ComponentIsDeviceSheet69=0
- ComponentLibIdentifierKind70=Library Name And Type
- ComponentLibraryIdentifier70=MKP_lib.DbLib/Components
- ComponentDesignItemID70=RC0402FR-07100KL
- ComponentSymbolReference70=RES
- ComponentUpdate70=1
- ComponentIsDeviceSheet70=0
- ComponentLibIdentifierKind71=Library Name And Type
- ComponentLibraryIdentifier71=MKP_lib.DbLib/Components
- ComponentDesignItemID71=RC0402FR-07100RL
- ComponentSymbolReference71=RES
- ComponentUpdate71=1
- ComponentIsDeviceSheet71=0
- ComponentLibIdentifierKind72=Library Name And Type
- ComponentLibraryIdentifier72=MKP_lib.DbLib/Components
- ComponentDesignItemID72=RC0402FR-07105KL
- ComponentSymbolReference72=RES
- ComponentUpdate72=1
- ComponentIsDeviceSheet72=0
- ComponentLibIdentifierKind73=Library Name And Type
- ComponentLibraryIdentifier73=MKP_lib.DbLib/Components
- ComponentDesignItemID73=RC0402FR-0710KL
- ComponentSymbolReference73=RES
- ComponentUpdate73=1
- ComponentIsDeviceSheet73=0
- ComponentLibIdentifierKind74=Library Name And Type
- ComponentLibraryIdentifier74=MKP_lib.DbLib/Components
- ComponentDesignItemID74=RC0402FR-0710RL
- ComponentSymbolReference74=RES
- ComponentUpdate74=1
- ComponentIsDeviceSheet74=0
- ComponentLibIdentifierKind75=Library Name And Type
- ComponentLibraryIdentifier75=MKP_lib.DbLib/Components
- ComponentDesignItemID75=RC0402FR-0715KL
- ComponentSymbolReference75=RES
- ComponentUpdate75=1
- ComponentIsDeviceSheet75=0
- ComponentLibIdentifierKind76=Library Name And Type
- ComponentLibraryIdentifier76=MKP_lib.DbLib/Components
- ComponentDesignItemID76=RC0402FR-071K91L
- ComponentSymbolReference76=RES
- ComponentUpdate76=1
- ComponentIsDeviceSheet76=0
- ComponentLibIdentifierKind77=Library Name And Type
- ComponentLibraryIdentifier77=MKP_lib.DbLib/Components
- ComponentDesignItemID77=RC0402FR-071KL
- ComponentSymbolReference77=RES
- ComponentUpdate77=1
- ComponentIsDeviceSheet77=0
- ComponentLibIdentifierKind78=Library Name And Type
- ComponentLibraryIdentifier78=MKP_lib.DbLib/Components
- ComponentDesignItemID78=RC0402FR-0720KL
- ComponentSymbolReference78=RES
- ComponentUpdate78=1
- ComponentIsDeviceSheet78=0
- ComponentLibIdentifierKind79=Library Name And Type
- ComponentLibraryIdentifier79=MKP_lib.DbLib/Components
- ComponentDesignItemID79=RC0402FR-0721K5L
- ComponentSymbolReference79=RES
- ComponentUpdate79=1
- ComponentIsDeviceSheet79=0
- ComponentLibIdentifierKind80=Library Name And Type
- ComponentLibraryIdentifier80=MKP_lib.DbLib/Components
- ComponentDesignItemID80=RC0402FR-0722RL
- ComponentSymbolReference80=RES
- ComponentUpdate80=1
- ComponentIsDeviceSheet80=0
- ComponentLibIdentifierKind81=Library Name And Type
- ComponentLibraryIdentifier81=MKP_lib.DbLib/Components
- ComponentDesignItemID81=RC0402FR-0724K9L
- ComponentSymbolReference81=RES
- ComponentUpdate81=1
- ComponentIsDeviceSheet81=0
- ComponentLibIdentifierKind82=Library Name And Type
- ComponentLibraryIdentifier82=MKP_lib.DbLib/Components
- ComponentDesignItemID82=RC0402FR-072K2L
- ComponentSymbolReference82=RES
- ComponentUpdate82=1
- ComponentIsDeviceSheet82=0
- ComponentLibIdentifierKind83=Library Name And Type
- ComponentLibraryIdentifier83=MKP_lib.DbLib/Components
- ComponentDesignItemID83=RC0402FR-072K49L
- ComponentSymbolReference83=RES
- ComponentUpdate83=1
- ComponentIsDeviceSheet83=0
- ComponentLibIdentifierKind84=Library Name And Type
- ComponentLibraryIdentifier84=MKP_lib.DbLib/Components
- ComponentDesignItemID84=RC0402FR-0734KL
- ComponentSymbolReference84=RES
- ComponentUpdate84=1
- ComponentIsDeviceSheet84=0
- ComponentLibIdentifierKind85=Library Name And Type
- ComponentLibraryIdentifier85=MKP_lib.DbLib/Components
- ComponentDesignItemID85=RC0402FR-0739K2L
- ComponentSymbolReference85=RES
- ComponentUpdate85=1
- ComponentIsDeviceSheet85=0
- ComponentLibIdentifierKind86=Library Name And Type
- ComponentLibraryIdentifier86=MKP_lib.DbLib/Components
- ComponentDesignItemID86=RC0402FR-073K3L
- ComponentSymbolReference86=RES
- ComponentUpdate86=1
- ComponentIsDeviceSheet86=0
- ComponentLibIdentifierKind87=Library Name And Type
- ComponentLibraryIdentifier87=MKP_lib.DbLib/Components
- ComponentDesignItemID87=RC0402FR-07470RL
- ComponentSymbolReference87=RES
- ComponentUpdate87=1
- ComponentIsDeviceSheet87=0
- ComponentLibIdentifierKind88=Library Name And Type
- ComponentLibraryIdentifier88=MKP_lib.DbLib/Components
- ComponentDesignItemID88=RC0402FR-0747KL
- ComponentSymbolReference88=RES
- ComponentUpdate88=1
- ComponentIsDeviceSheet88=0
- ComponentLibIdentifierKind89=Library Name And Type
- ComponentLibraryIdentifier89=MKP_lib.DbLib/Components
- ComponentDesignItemID89=RC0402FR-074K7L
- ComponentSymbolReference89=RES
- ComponentUpdate89=1
- ComponentIsDeviceSheet89=0
- ComponentLibIdentifierKind90=Library Name And Type
- ComponentLibraryIdentifier90=MKP_lib.DbLib/Components
- ComponentDesignItemID90=RC0402FR-0757K6P
- ComponentSymbolReference90=RES
- ComponentUpdate90=1
- ComponentIsDeviceSheet90=0
- ComponentLibIdentifierKind91=Library Name And Type
- ComponentLibraryIdentifier91=MKP_lib.DbLib/Components
- ComponentDesignItemID91=RC0402FR-075K6L
- ComponentSymbolReference91=RES
- ComponentUpdate91=1
- ComponentIsDeviceSheet91=0
- ComponentLibIdentifierKind92=Library Name And Type
- ComponentLibraryIdentifier92=MKP_lib.DbLib/Components
- ComponentDesignItemID92=RC0402FR-0768KL
- ComponentSymbolReference92=RES
- ComponentUpdate92=1
- ComponentIsDeviceSheet92=0
- ComponentLibIdentifierKind93=Library Name And Type
- ComponentLibraryIdentifier93=MKP_lib.DbLib/Components
- ComponentDesignItemID93=RC0402FR-0769K8L
- ComponentSymbolReference93=RES
- ComponentUpdate93=1
- ComponentIsDeviceSheet93=0
- ComponentLibIdentifierKind94=Library Name And Type
- ComponentLibraryIdentifier94=MKP_lib.DbLib/Components
- ComponentDesignItemID94=RC0402FR-076K8L
- ComponentSymbolReference94=RES
- ComponentUpdate94=1
- ComponentIsDeviceSheet94=0
- ComponentLibIdentifierKind95=Library Name And Type
- ComponentLibraryIdentifier95=MKP_lib.DbLib/Components
- ComponentDesignItemID95=RC0402FR-0775RL
- ComponentSymbolReference95=RES
- ComponentUpdate95=1
- ComponentIsDeviceSheet95=0
- ComponentLibIdentifierKind96=Library Name And Type
- ComponentLibraryIdentifier96=MKP_lib.DbLib/Components
- ComponentDesignItemID96=RC0402FR-0784K5L
- ComponentSymbolReference96=RES
- ComponentUpdate96=1
- ComponentIsDeviceSheet96=0
- ComponentLibIdentifierKind97=Library Name And Type
- ComponentLibraryIdentifier97=MKP_lib.DbLib/Components
- ComponentDesignItemID97=RI0603L000JT
- ComponentSymbolReference97=RES
- ComponentUpdate97=1
- ComponentIsDeviceSheet97=0
- ComponentLibIdentifierKind98=Library Name And Type
- ComponentLibraryIdentifier98=MKP_lib.DbLib/Components
- ComponentDesignItemID98=RI0603L1R00FT
- ComponentSymbolReference98=RES
- ComponentUpdate98=1
- ComponentIsDeviceSheet98=0
- ComponentLibIdentifierKind99=Library Name And Type
- ComponentLibraryIdentifier99=MKP_lib.DbLib/Components
- ComponentDesignItemID99=RI1206L000JT
- ComponentSymbolReference99=RES
- ComponentUpdate99=1
- ComponentIsDeviceSheet99=0
- ComponentLibIdentifierKind100=Library Name And Type
- ComponentLibraryIdentifier100=MKP_lib.DbLib/Components
- ComponentDesignItemID100=RS1G126XC5
- ComponentSymbolReference100=RS1G126XC5
- ComponentUpdate100=1
- ComponentIsDeviceSheet100=0
- ComponentLibIdentifierKind101=Library Name And Type
- ComponentLibraryIdentifier101=MKP_lib.DbLib/Components
- ComponentDesignItemID101=RT1H101M0810
- ComponentSymbolReference101=CAPP
- ComponentUpdate101=1
- ComponentIsDeviceSheet101=0
- ComponentLibIdentifierKind102=Library Name And Type
- ComponentLibraryIdentifier102=MKP_lib.DbLib/Components
- ComponentDesignItemID102=RT7-174AAM1A
- ComponentSymbolReference102=RT7-174AAM1A
- ComponentUpdate102=1
- ComponentIsDeviceSheet102=0
- ComponentLibIdentifierKind103=Library Name And Type
- ComponentLibraryIdentifier103=MKP_lib.DbLib/Components
- ComponentDesignItemID103=RVT1A331M0607
- ComponentSymbolReference103=CAPP
- ComponentUpdate103=1
- ComponentIsDeviceSheet103=0
- ComponentLibIdentifierKind104=Library Name And Type
- ComponentLibraryIdentifier104=MKP_lib.DbLib/Components
- ComponentDesignItemID104=RVT2A100M0605
- ComponentSymbolReference104=CAPP
- ComponentUpdate104=1
- ComponentIsDeviceSheet104=0
- ComponentLibIdentifierKind105=Library Name And Type
- ComponentLibraryIdentifier105=MKP_lib.DbLib/Components
- ComponentDesignItemID105=RY3408
- ComponentSymbolReference105=RY3408
- ComponentUpdate105=1
- ComponentIsDeviceSheet105=0
- ComponentLibIdentifierKind106=Library Name And Type
- ComponentLibraryIdentifier106=MKP_lib.DbLib/Components
- ComponentDesignItemID106=S10M
- ComponentSymbolReference106=Diode
- ComponentUpdate106=1
- ComponentIsDeviceSheet106=0
- ComponentLibIdentifierKind107=Library Name And Type
- ComponentLibraryIdentifier107=MKP_lib.DbLib/Components
- ComponentDesignItemID107=SGM2028-ADJYN5G/TR
- ComponentSymbolReference107=SGM2028-ADJYN5G/TR
- ComponentUpdate107=1
- ComponentIsDeviceSheet107=0
- ComponentLibIdentifierKind108=Library Name And Type
- ComponentLibraryIdentifier108=MKP_lib.DbLib/Components
- ComponentDesignItemID108=SI2333CDS
- ComponentSymbolReference108=P-Channel
- ComponentUpdate108=1
- ComponentIsDeviceSheet108=0
- ComponentLibIdentifierKind109=Library Name And Type
- ComponentLibraryIdentifier109=MKP_lib.DbLib/Components
- ComponentDesignItemID109=SIM8066-6-1-14-01-A
- ComponentSymbolReference109=SIM8066-6-1-14-01-A
- ComponentUpdate109=1
- ComponentIsDeviceSheet109=0
- ComponentLibIdentifierKind110=Library Name And Type
- ComponentLibraryIdentifier110=MKP_lib.DbLib/Components
- ComponentDesignItemID110=SMF05CT1G-P
- ComponentSymbolReference110=SMF05CT1G-P
- ComponentUpdate110=1
- ComponentIsDeviceSheet110=0
- ComponentLibIdentifierKind111=Library Name And Type
- ComponentLibraryIdentifier111=MKP_lib.DbLib/Components
- ComponentDesignItemID111=SMF54A
- ComponentSymbolReference111=TVS
- ComponentUpdate111=1
- ComponentIsDeviceSheet111=0
- ComponentLibIdentifierKind112=Library Name And Type
- ComponentLibraryIdentifier112=MKP_lib.DbLib/Components
- ComponentDesignItemID112=SR05-04A
- ComponentSymbolReference112=SR05-04A
- ComponentUpdate112=1
- ComponentIsDeviceSheet112=0
- ComponentLibIdentifierKind113=Library Name And Type
- ComponentLibraryIdentifier113=MKP_lib.DbLib/Components
- ComponentDesignItemID113=SRP6540-2R2M
- ComponentSymbolReference113=IND
- ComponentUpdate113=1
- ComponentIsDeviceSheet113=0
- ComponentLibIdentifierKind114=Library Name And Type
- ComponentLibraryIdentifier114=MKP_lib.DbLib/Components
- ComponentDesignItemID114=SS34A
- ComponentSymbolReference114=SCHOTTKY
- ComponentUpdate114=1
- ComponentIsDeviceSheet114=0
- ComponentLibIdentifierKind115=Library Name And Type
- ComponentLibraryIdentifier115=MKP_lib.DbLib/Components
- ComponentDesignItemID115=SS56F
- ComponentSymbolReference115=SCHOTTKY
- ComponentUpdate115=1
- ComponentIsDeviceSheet115=0
- ComponentLibIdentifierKind116=Library Name And Type
- ComponentLibraryIdentifier116=MKP_lib.DbLib/Components
- ComponentDesignItemID116=SX20Y025000B91T002
- ComponentSymbolReference116=Q22FA12800078
- ComponentUpdate116=1
- ComponentIsDeviceSheet116=0
- ComponentLibIdentifierKind117=Library Name And Type
- ComponentLibraryIdentifier117=MKP_lib.DbLib/Components
- ComponentDesignItemID117=TAJB476K010RNJ
- ComponentSymbolReference117=CAPP
- ComponentUpdate117=1
- ComponentIsDeviceSheet117=0
- ComponentLibIdentifierKind118=Library Name And Type
- ComponentLibraryIdentifier118=MKP_lib.DbLib/Components
- ComponentDesignItemID118=TannhietSOM
- ComponentSymbolReference118=Tannhiet
- ComponentUpdate118=1
- ComponentIsDeviceSheet118=0
- ComponentLibIdentifierKind119=Library Name And Type
- ComponentLibraryIdentifier119=MKP_lib.DbLib/Components
- ComponentDesignItemID119=TP
- ComponentSymbolReference119=TP
- ComponentUpdate119=1
- ComponentIsDeviceSheet119=0
- ComponentLibIdentifierKind120=Library Name And Type
- ComponentLibraryIdentifier120=MKP_lib.DbLib/Components
- ComponentDesignItemID120=TS-1090S-AR02026
- ComponentSymbolReference120=SW-4PIN
- ComponentUpdate120=1
- ComponentIsDeviceSheet120=0
- ComponentLibIdentifierKind121=Library Name And Type
- ComponentLibraryIdentifier121=MKP_lib.DbLib/Components
- ComponentDesignItemID121=UMK212B7104KG-T
- ComponentSymbolReference121=CAP
- ComponentUpdate121=1
- ComponentIsDeviceSheet121=0
- ComponentLibIdentifierKind122=Library Name And Type
- ComponentLibraryIdentifier122=MKP_lib.DbLib/Components
- ComponentDesignItemID122=UPZ2012E102-1R5TF
- ComponentSymbolReference122=FB
- ComponentUpdate122=1
- ComponentIsDeviceSheet122=0
- ComponentLibIdentifierKind123=Library Name And Type
- ComponentLibraryIdentifier123=MKP_lib.DbLib/Components
- ComponentDesignItemID123=VH3.96-3A
- ComponentSymbolReference123=CON-3PIN
- ComponentUpdate123=1
- ComponentIsDeviceSheet123=0
- ComponentLibIdentifierKind124=Library Name And Type
- ComponentLibraryIdentifier124=MKP_lib.DbLib/Components
- ComponentDesignItemID124=XL-1608SURC-06
- ComponentSymbolReference124=LED
- ComponentUpdate124=1
- ComponentIsDeviceSheet124=0
- ComponentLibIdentifierKind125=Library Name And Type
- ComponentLibraryIdentifier125=MKP_lib.DbLib/Components
- ComponentDesignItemID125=XL-1608SYGC-04
- ComponentSymbolReference125=LED
- ComponentUpdate125=1
- ComponentIsDeviceSheet125=0
- ComponentLibIdentifierKind126=Library Name And Type
- ComponentLibraryIdentifier126=MKP_lib.DbLib/Components
- ComponentDesignItemID126=XL-DZ304SURD/3
- ComponentSymbolReference126=LED3
- ComponentUpdate126=1
- ComponentIsDeviceSheet126=0
- ComponentLibIdentifierKind127=Library Name And Type
- ComponentLibraryIdentifier127=MKP_lib.DbLib/Components
- ComponentDesignItemID127=YI201209U601-2R5T
- ComponentSymbolReference127=FB
- ComponentUpdate127=1
- ComponentIsDeviceSheet127=0
- ComponentLibIdentifierKind128=Library Name And Type
- ComponentLibraryIdentifier128=MKP_lib.DbLib/Components
- ComponentDesignItemID128=YJL2305A
- ComponentSymbolReference128=P-Channel
- ComponentUpdate128=1
- ComponentIsDeviceSheet128=0
- ComponentLibIdentifierKind129=Library Name And Type
- ComponentLibraryIdentifier129=MKP_lib.DbLib/Components
- ComponentDesignItemID129=YT8531SH-CA
- ComponentSymbolReference129=YT8531SH-CA
- ComponentUpdate129=1
- ComponentIsDeviceSheet129=0
- ComponentLibIdentifierKind130=Library Name And Type
- ComponentLibraryIdentifier130=MKP_lib.DbLib/Components
- ComponentDesignItemID130=ZX-PZ2.54-2-3PZZ
- ComponentSymbolReference130=CON-3x2PIN
- ComponentUpdate130=1
- ComponentIsDeviceSheet130=0
- ComponentLibIdentifierKind131=Library Name And Type
- ComponentLibraryIdentifier131=MKP_lib.DbLib
- ComponentDesignItemID131=CSD19538Q3A
- ComponentSymbolReference131=Mosfet N-Chanel
- ComponentUpdate131=1
- ComponentIsDeviceSheet131=0
- ComponentLibIdentifierKind132=Library Name And Type
- ComponentLibraryIdentifier132=MKP_lib.DbLib
- ComponentDesignItemID132=JUMP-2.54-2PIN-M-TH
- ComponentSymbolReference132=CON-2PIN
- ComponentUpdate132=1
- ComponentIsDeviceSheet132=0
- ComponentLibIdentifierKind133=Library Name And Type
- ComponentLibraryIdentifier133=MKP_lib.DbLib
- ComponentDesignItemID133=PH-2A
- ComponentSymbolReference133=CON-2PIN
- ComponentUpdate133=1
- ComponentIsDeviceSheet133=0
- ComponentLibIdentifierKind134=Library Name And Type
- ComponentLibraryIdentifier134=MYC_LR3568.SchLib
- ComponentDesignItemID134=MYC-LR3568X
- ComponentSymbolReference134=MYC-LR3568X
- ComponentUpdate134=1
- ComponentIsDeviceSheet134=0
- [Comparison Options]
- ComparisonOptions0=Kind=Net|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
- ComparisonOptions1=Kind=Net Class|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
- ComparisonOptions2=Kind=Component Class|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
- ComparisonOptions3=Kind=Rule|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
- ComparisonOptions4=Kind=Differential Pair|MinPercent=50|MinMatch=1|ShowMatch=0|UseName=0|InclAllRules=0
- ComparisonOptions5=Kind=Structure Class|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
- [SmartPDF]
- 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
|