| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603 |
- [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=1
- AutoCrossReferences=1
- NewIndexingOfSheetSymbols=1
- PushECOToAnnotationFile=1
- DItemRevisionGUID=
- ReportSuppressedErrorsInMessages=0
- FSMCodingStyle=eFMSDropDownList_OneProcess
- FSMEncodingStyle=eFMSDropDownList_OneHot
- IsProjectConflictPreventionWarningsEnabled=0
- IsVirtualBomDocumentRemoved=1
- OutputPath=
- LogFolderPath=
- ManagedProjectGUID=
- IncludeDesignInRelease=0
- CrossRefSheetStyle=1
- CrossRefLocationStyle=1
- CrossRefPorts=3
- CrossRefCrossSheets=1
- CrossRefSheetEntries=0
- CrossRefFollowFromMainSettings=1
- CurrentVariant=CameraBox
- [Preferences]
- PrefsVaultGUID=
- PrefsRevisionGUID=
- [Document1]
- DocumentPath=Output.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=
- [Document2]
- DocumentPath=POWER.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=0
- DoLibraryUpdate=1
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=1
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=YZVKBUMY
- [Document3]
- DocumentPath=CORE.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=1
- DoLibraryUpdate=1
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=WDBSUUQY
- [Document4]
- DocumentPath=AUDIO.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=2
- DoLibraryUpdate=1
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=FQUWCDSP
- [Document5]
- DocumentPath=CAMERA.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=3
- DoLibraryUpdate=1
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=CPLWNQMC
- [Document6]
- DocumentPath=UART.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=4
- DoLibraryUpdate=1
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=IBCFWMTB
- [Document7]
- DocumentPath=Function.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=5
- DoLibraryUpdate=1
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=XTFNUDHB
- [Document8]
- DocumentPath=4G.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=7
- DoLibraryUpdate=1
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=HBTPIULA
- [Document9]
- DocumentPath=TF.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=6
- DoLibraryUpdate=1
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=HTPWMWOC
- [Document10]
- DocumentPath=GPS.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=8
- DoLibraryUpdate=1
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=XBHZKGQY
- [Document11]
- DocumentPath=ETH.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=9
- DoLibraryUpdate=1
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=PURCMWXV
- [Document12]
- DocumentPath=INPUT.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=10
- DoLibraryUpdate=1
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=BCQXQIZB
- [Document13]
- DocumentPath=OUTPUT.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=11
- DoLibraryUpdate=1
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=QOXORCSF
- [Document14]
- DocumentPath=PCIE.SchDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=12
- DoLibraryUpdate=1
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=SSNTSUBY
- [Document15]
- DocumentPath=Camera_Box_RK3562_lot_500.PcbDoc
- AnnotationEnabled=1
- AnnotateStartValue=1
- AnnotationIndexControlEnabled=0
- AnnotateSuffix=
- AnnotateScope=All
- AnnotateOrder=-1
- DoLibraryUpdate=1
- DoDatabaseUpdate=1
- ClassGenCCAutoEnabled=1
- ClassGenCCAutoRoomEnabled=0
- ClassGenNCAutoScope=None
- DItemRevisionGUID=
- GenerateClassCluster=0
- DocumentUniqueId=DNIDONKW
- [Document16]
- 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
- [Document17]
- DocumentPath=Camera_Box_RK3562_Lot_500.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=
- [Document18]
- DocumentPath=Project Outputs for Camera_Box_RK3562_Lot_500\Gerber_Camera_Box_RK3562_lot_500.Cam
- 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=Project Outputs for Camera_Box_RK3562_Lot_500\NC_Drills_Camera_Box_RK3562_lot_500.Cam
- 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=62
- Variation1=Designator=C109|UniqueId=\HMEZJDJO|Kind=1|AlternatePart=
- Variation2=Designator=C114|UniqueId=\RSCQUYGB|Kind=1|AlternatePart=
- Variation3=Designator=C187|UniqueId=\WUOFJAQV|Kind=1|AlternatePart=
- Variation4=Designator=R117|UniqueId=\YWMIUTDW|Kind=1|AlternatePart=
- Variation5=Designator=R118|UniqueId=\OYEEWPHO|Kind=1|AlternatePart=
- Variation6=Designator=D34|UniqueId=\EERUBFXG|Kind=1|AlternatePart=
- Variation7=Designator=C147|UniqueId=\RFOGRZUK|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=R157|UniqueId=\QANRYPXB|Kind=0|AlternatePart=
- Variation21=Designator=R10|UniqueId=\SPANNMOC|Kind=1|AlternatePart=
- Variation22=Designator=R13|UniqueId=\KYLEGNQD|Kind=1|AlternatePart=
- Variation23=Designator=C144|UniqueId=\VDFWEHVH|Kind=0|AlternatePart=
- Variation24=Designator=C29|UniqueId=\NIXDXGKW|Kind=1|AlternatePart=
- Variation25=Designator=R?|UniqueId=\VJGJVAGL|Kind=1|AlternatePart=
- Variation26=Designator=R?|UniqueId=\LMCCFRLB|Kind=1|AlternatePart=
- Variation27=Designator=R?|UniqueId=\EOPDXSKW|Kind=1|AlternatePart=
- Variation28=Designator=R?|UniqueId=\IDLCRQQM|Kind=1|AlternatePart=
- Variation29=Designator=R?|UniqueId=\BDYQMBYI|Kind=1|AlternatePart=
- Variation30=Designator=R?|UniqueId=\ZPPESHQP|Kind=1|AlternatePart=
- Variation31=Designator=R?|UniqueId=\XNUDFIAF|Kind=1|AlternatePart=
- Variation32=Designator=R?|UniqueId=\EDZYXTHN|Kind=1|AlternatePart=
- Variation33=Designator=R?|UniqueId=\PGHDXTAN|Kind=1|AlternatePart=
- Variation34=Designator=R?|UniqueId=\UEQPPSHZ|Kind=1|AlternatePart=
- Variation35=Designator=R?|UniqueId=\TJIQFWJV|Kind=1|AlternatePart=
- Variation36=Designator=R?|UniqueId=\KGVAZAKV|Kind=1|AlternatePart=
- Variation37=Designator=R?|UniqueId=\YWOJANZT|Kind=1|AlternatePart=
- Variation38=Designator=R?|UniqueId=\UOTNYSLI|Kind=1|AlternatePart=
- Variation39=Designator=R?|UniqueId=\WMDWDUNZ|Kind=1|AlternatePart=
- Variation40=Designator=R?|UniqueId=\UZFOHUTG|Kind=1|AlternatePart=
- Variation41=Designator=R?|UniqueId=\TENVMPGU|Kind=1|AlternatePart=
- Variation42=Designator=R?|UniqueId=\ULEDXQNJ|Kind=1|AlternatePart=
- Variation43=Designator=R?|UniqueId=\FEVUJMBY|Kind=1|AlternatePart=
- Variation44=Designator=R?|UniqueId=\BBBWQATF|Kind=1|AlternatePart=
- Variation45=Designator=R?|UniqueId=\XFTSTRDL|Kind=1|AlternatePart=
- Variation46=Designator=R?|UniqueId=\CHQWZTTV|Kind=1|AlternatePart=
- Variation47=Designator=R?|UniqueId=\CVQDIHEI|Kind=1|AlternatePart=
- Variation48=Designator=R?|UniqueId=\DCAYRFUW|Kind=1|AlternatePart=
- Variation49=Designator=R28|UniqueId=\UXWLIIHN|Kind=1|AlternatePart=
- Variation50=Designator=R32|UniqueId=\ODUXSZZD|Kind=1|AlternatePart=
- Variation51=Designator=R?|UniqueId=\CNTZARML|Kind=1|AlternatePart=
- Variation52=Designator=R17|UniqueId=\LKSANDTX|Kind=1|AlternatePart=
- Variation53=Designator=R23|UniqueId=\GATFRVQW|Kind=1|AlternatePart=
- Variation54=Designator=C20|UniqueId=\EQBGEFBQ|Kind=1|AlternatePart=
- Variation55=Designator=C33|UniqueId=\JDJLLEYG|Kind=1|AlternatePart=
- Variation56=Designator=J46|UniqueId=\CUHJZHFZ|Kind=1|AlternatePart=
- Variation57=Designator=J26|UniqueId=\WKCXNRUO|Kind=1|AlternatePart=
- Variation58=Designator=C194|UniqueId=\VCUVAGCG|Kind=1|AlternatePart=
- Variation59=Designator=R277|UniqueId=\DZGYUWPC|Kind=1|AlternatePart=
- Variation60=Designator=R278|UniqueId=\FHQLRWEV|Kind=1|AlternatePart=
- Variation61=Designator=R117|UniqueId=\HBWPIICU|Kind=1|AlternatePart=
- Variation62=Designator=R118|UniqueId=\ELUDOITO|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 Camera_Box_RK3562_Lot_500\Camera_Box_RK3562_lot_500-RoundHoles.TXT
- DItemRevisionGUID=
- [GeneratedDocument2]
- DocumentPath=Project Outputs for Camera_Box_RK3562_Lot_500\Camera_Box_RK3562_lot_500-SlotHoles.TXT
- DItemRevisionGUID=
- [GeneratedDocument3]
- DocumentPath=Project Outputs for Camera_Box_RK3562_Lot_500\Camera_Box_RK3562_lot_500.DRR
- DItemRevisionGUID=
- [GeneratedDocument4]
- DocumentPath=Project Outputs for Camera_Box_RK3562_Lot_500\Camera_Box_RK3562_lot_500.EXTREP
- DItemRevisionGUID=
- [GeneratedDocument5]
- DocumentPath=Project Outputs for Camera_Box_RK3562_Lot_500\Camera_Box_RK3562_lot_500.G1
- DItemRevisionGUID=
- [GeneratedDocument6]
- DocumentPath=Project Outputs for Camera_Box_RK3562_Lot_500\Camera_Box_RK3562_lot_500.GBL
- DItemRevisionGUID=
- [GeneratedDocument7]
- DocumentPath=Project Outputs for Camera_Box_RK3562_Lot_500\Camera_Box_RK3562_lot_500.GBO
- DItemRevisionGUID=
- [GeneratedDocument8]
- DocumentPath=Project Outputs for Camera_Box_RK3562_Lot_500\Camera_Box_RK3562_lot_500.GBP
- DItemRevisionGUID=
- [GeneratedDocument9]
- DocumentPath=Project Outputs for Camera_Box_RK3562_Lot_500\Camera_Box_RK3562_lot_500.GBS
- DItemRevisionGUID=
- [GeneratedDocument10]
- DocumentPath=Project Outputs for Camera_Box_RK3562_Lot_500\Camera_Box_RK3562_lot_500.GD1
- DItemRevisionGUID=
- [GeneratedDocument11]
- DocumentPath=Project Outputs for Camera_Box_RK3562_Lot_500\Camera_Box_RK3562_lot_500.GG1
- DItemRevisionGUID=
- [GeneratedDocument12]
- DocumentPath=Project Outputs for Camera_Box_RK3562_Lot_500\Camera_Box_RK3562_lot_500.GKO
- DItemRevisionGUID=
- [GeneratedDocument13]
- DocumentPath=Project Outputs for Camera_Box_RK3562_Lot_500\Camera_Box_RK3562_lot_500.GM
- DItemRevisionGUID=
- [GeneratedDocument14]
- DocumentPath=Project Outputs for Camera_Box_RK3562_Lot_500\Camera_Box_RK3562_lot_500.GP1
- DItemRevisionGUID=
- [GeneratedDocument15]
- DocumentPath=Project Outputs for Camera_Box_RK3562_Lot_500\Camera_Box_RK3562_lot_500.GP2
- DItemRevisionGUID=
- [GeneratedDocument16]
- DocumentPath=Project Outputs for Camera_Box_RK3562_Lot_500\Camera_Box_RK3562_lot_500.GP3
- DItemRevisionGUID=
- [GeneratedDocument17]
- DocumentPath=Project Outputs for Camera_Box_RK3562_Lot_500\Camera_Box_RK3562_lot_500.GPB
- DItemRevisionGUID=
- [GeneratedDocument18]
- DocumentPath=Project Outputs for Camera_Box_RK3562_Lot_500\Camera_Box_RK3562_lot_500.GPT
- DItemRevisionGUID=
- [GeneratedDocument19]
- DocumentPath=Project Outputs for Camera_Box_RK3562_Lot_500\Camera_Box_RK3562_lot_500.GTL
- DItemRevisionGUID=
- [GeneratedDocument20]
- DocumentPath=Project Outputs for Camera_Box_RK3562_Lot_500\Camera_Box_RK3562_lot_500.GTO
- DItemRevisionGUID=
- [GeneratedDocument21]
- DocumentPath=Project Outputs for Camera_Box_RK3562_Lot_500\Camera_Box_RK3562_lot_500.GTP
- DItemRevisionGUID=
- [GeneratedDocument22]
- DocumentPath=Project Outputs for Camera_Box_RK3562_Lot_500\Camera_Box_RK3562_lot_500.GTS
- DItemRevisionGUID=
- [GeneratedDocument23]
- DocumentPath=Project Outputs for Camera_Box_RK3562_Lot_500\Camera_Box_RK3562_lot_500.LDP
- DItemRevisionGUID=
- [GeneratedDocument24]
- DocumentPath=Project Outputs for Camera_Box_RK3562_Lot_500\Camera_Box_RK3562_lot_500.REP
- DItemRevisionGUID=
- [GeneratedDocument25]
- DocumentPath=Project Outputs for Camera_Box_RK3562_Lot_500\Design Rule Check - Camera_Box_RK3562_lot_500.html
- DItemRevisionGUID=
- [Configuration1]
- Name=Sources
- ParameterCount=0
- ConstraintFileCount=0
- ReleaseItemId=
- Variant=[No Variations]
- OutputJobsCount=0
- ContentTypeGUID=CB6F2064-E317-11DF-B822-12313F0024A2
- ConfigurationType=Source
- [Generic_EDE]
- OutputDir=
- [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=
- TemplateStoreRelative=-1
- PCB_PrintColor=0
- 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=0
- SCH_ExpandPorts=0
- SCH_ExpandSheetNumber=0
- SCH_ExpandDocumentNumber=0
- SCH_HasExpandLogicalToPhysicalSheets=-1
- SaveSettingsToOutJob=-1
- [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
- OutputType22=SIMetrixNetlist
- OutputName22=SIMetrix
- OutputDocumentPath22=
- OutputVariantName22=
- OutputDefault22=0
- OutputType23=SIMPLISNetlist
- OutputName23=SIMPLIS
- OutputDocumentPath23=
- OutputVariantName23=
- OutputDefault23=0
- [OutputGroup2]
- Name=Simulator Outputs
- Description=
- TargetPrinter=MF230 Series
- PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
- OutputType1=AdvSimNetlist
- OutputName1=Mixed Sim
- OutputDocumentPath1=
- OutputVariantName1=
- OutputDefault1=0
- OutputType2=SIMetrixSimulation
- OutputName2=SIMetrix
- OutputDocumentPath2=
- OutputVariantName2=
- OutputDefault2=0
- OutputType3=SIMPLISSimulation
- OutputName3=SIMPLIS
- OutputDocumentPath3=
- OutputVariantName3=
- OutputDefault3=0
- [OutputGroup3]
- Name=Documentation Outputs
- Description=
- TargetPrinter=Adobe 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=0|PaperKind=Letter|PaperIndex=1
- Configuration1_Name1=OutputConfigurationParameter1
- Configuration1_Item1=DesignatorDisplayMode=Physical|PrintArea=DesignExtent|PrintAreaLowerLeftCornerX=0|PrintAreaLowerLeftCornerY=0|PrintAreaUpperRightCornerX=0|PrintAreaUpperRightCornerY=0|Record=PcbPrintView|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
- Configuration1_Name2=OutputConfigurationParameter2
- Configuration1_Item2=IncludeBoardCutouts=False|IncludeBottomLayerComponents=True|IncludeMultiLayerComponents=True|IncludeTopLayerComponents=True|IncludeViewports=True|Index=0|Mirror=False|Name=Multilayer Composite Print|PadNumberFontSize=14|Record=PcbPrintOut|ShowHoles=False|ShowPadNets=False|ShowPadNumbers=False|SubstituteFonts=False|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
- Configuration1_Name3=OutputConfigurationParameter3
- Configuration1_Item3=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
- Configuration1_Name4=OutputConfigurationParameter4
- Configuration1_Item4=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
- Configuration1_Name5=OutputConfigurationParameter5
- Configuration1_Item5=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MidLayer1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
- Configuration1_Name6=OutputConfigurationParameter6
- Configuration1_Item6=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
- Configuration1_Name7=OutputConfigurationParameter7
- Configuration1_Item7=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MultiLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
- Configuration1_Name8=OutputConfigurationParameter8
- Configuration1_Item8=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
- Configuration1_Name9=OutputConfigurationParameter9
- Configuration1_Item9=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=KeepOutLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
- Configuration1_Name10=OutputConfigurationParameter10
- Configuration1_Item10=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
- Configuration1_Name11=OutputConfigurationParameter11
- Configuration1_Item11=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical2|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
- Configuration1_Name12=OutputConfigurationParameter12
- Configuration1_Item12=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical3|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
- Configuration1_Name13=OutputConfigurationParameter13
- Configuration1_Item13=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical4|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
- Configuration1_Name14=OutputConfigurationParameter14
- Configuration1_Item14=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical5|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
- Configuration1_Name15=OutputConfigurationParameter15
- Configuration1_Item15=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical6|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
- Configuration1_Name16=OutputConfigurationParameter16
- Configuration1_Item16=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical7|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
- Configuration1_Name17=OutputConfigurationParameter17
- Configuration1_Item17=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical8|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
- Configuration1_Name18=OutputConfigurationParameter18
- Configuration1_Item18=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical12|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
- Configuration1_Name19=OutputConfigurationParameter19
- Configuration1_Item19=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical13|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
- Configuration1_Name20=OutputConfigurationParameter20
- Configuration1_Item20=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical14|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
- Configuration1_Name21=OutputConfigurationParameter21
- Configuration1_Item21=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical15|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=E:\HARDWARE\GitDVD\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562.PcbDoc
- 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=1.12|XCorrection=1.00|YCorrection=1.00|PrintKind=0|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PrintScaleName=PrintFitPageWidth|PaperKind=A3|PaperIndex=8
- 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_RK3562_A7677S_AITHINGS\CORE.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=Letter|PaperIndex=1
- 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=Letter|PaperIndex=1
- [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
- 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=CompositeDrill
- OutputName1=Composite Drill 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=Drill
- OutputName2=Drill Drawing/Guides
- 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=Board Stack Report
- OutputName3=Report Board Stack
- 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=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 X2
- OutputName5=Gerber X2 Files
- OutputDocumentPath5=
- OutputVariantName5=[No Variations]
- OutputDefault5=0
- OutputType6=ODB
- OutputName6=ODB++ Files
- OutputDocumentPath6=
- OutputVariantName6=[No Variations]
- OutputDefault6=0
- OutputType7=Mask
- OutputName7=Solder/Paste Mask Prints
- 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=NC Drill
- OutputName8=NC Drill Files
- OutputDocumentPath8=
- OutputVariantName8=
- OutputDefault8=0
- Configuration8_Name1=ForceUpdateSettings
- Configuration8_Item1=False
- Configuration8_Name2=OutputConfigurationParameter1
- Configuration8_Item2=BoardEdgeRoutToolDia=2000000|GenerateBoardEdgeRout=False|GenerateDrilledSlotsG85=False|GenerateEIADrillFile=False|GenerateSeparatePlatedNonPlatedFiles=False|GenerateSeparateViaTypeFiles=False|GenerateToolsByDrillSymbols=False|NumberOfDecimals=4|NumberOfUnits=4|OptimizeChangeLocationCommands=True|OriginPosition=Absolute|Record=DrillView|Units=Metric|ZeroesMode=KeepLeadingAndTrailingZeroes|DocumentPath=D:\SourceTree_Aithings\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562_lot_500.PcbDoc
- OutputType9=IPC2581
- OutputName9=IPC-2581 Files
- OutputDocumentPath9=
- OutputVariantName9=[No Variations]
- OutputDefault9=0
- OutputType10=Plane
- OutputName10=Power-Plane Prints
- OutputDocumentPath10=
- OutputVariantName10=[No Variations]
- 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=Letter|PaperIndex=1
- OutputType11=Test Points
- OutputName11=Test Point Report
- OutputDocumentPath11=
- OutputVariantName11=
- OutputDefault11=0
- OutputType12=Gerber
- OutputName12=Gerber Files
- OutputDocumentPath12=
- OutputVariantName12=[No Variations]
- OutputDefault12=0
- Configuration12_Name1=ForceUpdateSettings
- Configuration12_Item1=False
- Configuration12_Name2=OutputConfigurationParameter1
- Configuration12_Item2=AddToAllLayerClasses.Set= |AddToAllPlots.Set=SerializeLayerHash.Version~2,ClassName~TPlotLayerStateArray|BoardID=DNIDONKW|CentrePlots=False|DrillDrawingSymbol=GraphicsSymbol|DrillDrawingSymbolSize=500000|EmbeddedApertures=True|FilmBorderSize=10000000|FilmXSize=200000000|FilmYSize=160000000|FlashAllFills=False|FlashPadShapes=True|G54OnApertureChange=False|GenerateDRCRulesFile=False|GenerateDRCRulesFile=False|GenerateReliefShapes=True|GenerateReports=True|GerberUnit=Metric|GerberUnit=Metric|IncludeUnconnectedMidLayerPads=True|LayerClassesMirror.Set= |LayerClassesPlot.Set= |LeadingAndTrailingZeroesMode=KeepLeadingAndTrailingZeroes|MaxApertureSize=2500000|MergePadAndRegion=False|MinusApertureTolerance=50|MinusApertureTolerance=50|Mirror.Set=SerializeLayerHash.Version~2,ClassName~TPlotLayerStateArray|MirrorDrillDrawingPlots=False|MirrorDrillGuidePlots=False|NoRegularPolygons=False|NumberOfDecimals=4|NumberOfDecimals=4|OptimizeChangeLocationCommands=True|OptimizeChangeLocationCommands=True|OriginPosition=Relative|Panelize=False|Plot.Set=SerializeLayerHash.Version~2,ClassName~TPlotLayerStateArray,16777217~1,16842753~1,16777218~1,16842754~1,16842756~1,16842751~1,16973830~1,16973831~1,16973834~1,16973835~1,16973832~1,16973833~1,16973837~1,16973848~1,16973849~1|PlotBoardProfile=True|PlotBoardProfileFileName=Camera_Box_RK3562_lot_500.GM|PlotDrillDrawingLayerPair0_Backdrill=False|PlotDrillDrawingLayerPair0_Checked=True|PlotDrillDrawingLayerPair0_DrillType=Regular|PlotDrillDrawingLayerPair0_FileName=Camera_Box_RK3562_lot_500.GD1|PlotDrillDrawingLayerPair0_HighLayer=Bottom Layer|PlotDrillDrawingLayerPair0_LowLayer=Top Layer|PlotDrillGuideLayerPair0_Backdrill=False|PlotDrillGuideLayerPair0_Checked=True|PlotDrillGuideLayerPair0_DrillType=Regular|PlotDrillGuideLayerPair0_FileName=Camera_Box_RK3562_lot_500.GG1|PlotDrillGuideLayerPair0_HighLayer=Bottom Layer|PlotDrillGuideLayerPair0_LowLayer=Top Layer|PlotPositivePlaneLayers=False|PlotUsedDrillDrawingLayerPairs=False|PlotUsedDrillGuideLayerPairs=False|PlusApertureTolerance=50|PlusApertureTolerance=50|Record=GerberView|SoftwareArcs=False|Sorted=False|Sorted=False|UserLayerName.Caption0=Camera_Box_RK3562_lot_500.GKO|UserLayerName.Caption1=Camera_Box_RK3562_lot_500.GTP|UserLayerName.Caption10=Camera_Box_RK3562_lot_500.GBS|UserLayerName.Caption11=Camera_Box_RK3562_lot_500.GP2|UserLayerName.Caption12=Camera_Box_RK3562_lot_500.GM6|UserLayerName.Caption13=Camera_Box_RK3562_lot_500.GM7|UserLayerName.Caption14=Camera_Box_RK3562_lot_500.GBL|UserLayerName.Caption15=Camera_Box_RK3562_lot_500.GM5|UserLayerName.Caption16=Camera_Box_RK3562_lot_500.GM15|UserLayerName.Caption17=Camera_Box_RK3562_lot_500.GM14|UserLayerName.Caption18=Camera_Box_RK3562_lot_500.GTL|UserLayerName.Caption19=Camera_Box_RK3562_lot_500.GBO|UserLayerName.Caption2=Camera_Box_RK3562_lot_500.GTO|UserLayerName.Caption20=Camera_Box_RK3562_lot_500.GPT|UserLayerName.Caption21=Camera_Box_RK3562_lot_500.GM13|UserLayerName.Caption22=Camera_Box_RK3562_lot_500.GP1|UserLayerName.Caption23=Camera_Box_RK3562_lot_500.GM9|UserLayerName.Caption24=Camera_Box_RK3562_lot_500.GM1|UserLayerName.Caption25=Camera_Box_RK3562_lot_500.GM8|UserLayerName.Caption26=Camera_Box_RK3562_lot_500.GM3|UserLayerName.Caption27=Camera_Box_RK3562_lot_500.GBP|UserLayerName.Caption3=Camera_Box_RK3562_lot_500.GTS|UserLayerName.Caption4=Camera_Box_RK3562_lot_500.GM4|UserLayerName.Caption5=Camera_Box_RK3562_lot_500.GM2|UserLayerName.Caption6=Camera_Box_RK3562_lot_500.GM12|UserLayerName.Caption7=Camera_Box_RK3562_lot_500.GP3|UserLayerName.Caption8=Camera_Box_RK3562_lot_500.GPB|UserLayerName.Caption9=Camera_Box_RK3562_lot_500.G1|UserLayerName.Count=28|UserLayerName.Layer0=16973837|UserLayerName.Layer1=16973832|UserLayerName.Layer10=16973835|UserLayerName.Layer11=16842754|UserLayerName.Layer12=16908294|UserLayerName.Layer13=16908295|UserLayerName.Layer14=16842751|UserLayerName.Layer15=16908293|UserLayerName.Layer16=16908303|UserLayerName.Layer17=16908302|UserLayerName.Layer18=16777217|UserLayerName.Layer19=16973831|UserLayerName.Layer2=16973830|UserLayerName.Layer20=16973848|UserLayerName.Layer21=16908301|UserLayerName.Layer22=16842753|UserLayerName.Layer23=16908297|UserLayerName.Layer24=16908289|UserLayerName.Layer25=16908296|UserLayerName.Layer26=16908291|UserLayerName.Layer27=16973833|UserLayerName.Layer3=16973834|UserLayerName.Layer4=16908292|UserLayerName.Layer5=16908290|UserLayerName.Layer6=16908300|UserLayerName.Layer7=16842756|UserLayerName.Layer8=16973849|UserLayerName.Layer9=16777218|DocumentPath=D:\SourceTree_Aithings\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562_lot_500.PcbDoc
- [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=Letter|PaperIndex=1
- 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=Letter|PaperIndex=1
- [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=Letter|PaperIndex=1
- 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=Letter|PaperIndex=1
- 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=Letter|PaperIndex=1
- 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=Letter|PaperIndex=1
- 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=Letter|PaperIndex=1
- 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=Letter|PaperIndex=1
- 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=Letter|PaperIndex=1
- 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=Letter|PaperIndex=1
- 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=Letter|PaperIndex=1
- 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=Letter|PaperIndex=1
- 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=Letter|PaperIndex=1
- 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=Letter|PaperIndex=1
- 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=Letter|PaperIndex=1
- 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=Letter|PaperIndex=1
- 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=Letter|PaperIndex=1
- 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=Letter|PaperIndex=1
- [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
- [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=Camera_Box_RK3562.IntLib
- ComponentDesignItemID0=2SK3018
- ComponentSymbolReference0=2SK3018
- ComponentUpdate0=1
- ComponentIsDeviceSheet0=0
- ComponentLibIdentifierKind1=Library Name And Type
- ComponentLibraryIdentifier1=Camera_Box_RK3562.IntLib
- ComponentDesignItemID1=RK3562
- ComponentSymbolReference1=RK3562
- ComponentUpdate1=1
- ComponentIsDeviceSheet1=0
- ComponentLibIdentifierKind2=Library Name And Type
- ComponentLibraryIdentifier2=MKP_lib.DbLib/Components
- ComponentDesignItemID2=0805CG330J500NT
- ComponentSymbolReference2=CAP
- ComponentUpdate2=1
- ComponentIsDeviceSheet2=0
- ComponentLibIdentifierKind3=Library Name And Type
- ComponentLibraryIdentifier3=MKP_lib.DbLib/Components
- ComponentDesignItemID3=150060YS75000
- ComponentSymbolReference3=LED
- ComponentUpdate3=1
- ComponentIsDeviceSheet3=0
- ComponentLibIdentifierKind4=Library Name And Type
- ComponentLibraryIdentifier4=MKP_lib.DbLib/Components
- ComponentDesignItemID4=2.D.1.270002002
- ComponentSymbolReference4=XTL-4PIN
- ComponentUpdate4=1
- ComponentIsDeviceSheet4=0
- ComponentLibIdentifierKind5=Library Name And Type
- ComponentLibraryIdentifier5=MKP_lib.DbLib/Components
- ComponentDesignItemID5=2SK3018
- ComponentSymbolReference5=N-Channel
- ComponentUpdate5=1
- ComponentIsDeviceSheet5=0
- ComponentLibIdentifierKind6=Library Name And Type
- ComponentLibraryIdentifier6=MKP_lib.DbLib/Components
- ComponentDesignItemID6=A7677S
- ComponentSymbolReference6=A7677S
- ComponentUpdate6=1
- ComponentIsDeviceSheet6=0
- ComponentLibIdentifierKind7=Library Name And Type
- ComponentLibraryIdentifier7=MKP_lib.DbLib/Components
- ComponentDesignItemID7=ABS07-32.768KHZ-T
- ComponentSymbolReference7=XTL-2PIN
- ComponentUpdate7=1
- ComponentIsDeviceSheet7=0
- ComponentLibIdentifierKind8=Library Name And Type
- ComponentLibraryIdentifier8=MKP_lib.DbLib/Components
- ComponentDesignItemID8=AC0402FR-07226KL
- ComponentSymbolReference8=RES
- ComponentUpdate8=1
- ComponentIsDeviceSheet8=0
- ComponentLibIdentifierKind9=Library Name And Type
- ComponentLibraryIdentifier9=MKP_lib.DbLib/Components
- ComponentDesignItemID9=AC0402FR-0725K5L
- ComponentSymbolReference9=RES
- ComponentUpdate9=1
- ComponentIsDeviceSheet9=0
- ComponentLibIdentifierKind10=Library Name And Type
- ComponentLibraryIdentifier10=MKP_lib.DbLib/Components
- ComponentDesignItemID10=AC0402FR-07590KL
- ComponentSymbolReference10=RES
- ComponentUpdate10=1
- ComponentIsDeviceSheet10=0
- ComponentLibIdentifierKind11=Library Name And Type
- ComponentLibraryIdentifier11=MKP_lib.DbLib/Components
- ComponentDesignItemID11=APCI0146-P001A
- ComponentSymbolReference11=APCI0146-P001A
- 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=C0603X5R105K500NT
- ComponentSymbolReference13=CAP
- ComponentUpdate13=1
- ComponentIsDeviceSheet13=0
- ComponentLibIdentifierKind14=Library Name And Type
- ComponentLibraryIdentifier14=MKP_lib.DbLib/Components
- ComponentDesignItemID14=C0603X5R475K350NT
- ComponentSymbolReference14=C0603X5R475K350NT
- ComponentUpdate14=1
- ComponentIsDeviceSheet14=0
- ComponentLibIdentifierKind15=Library Name And Type
- ComponentLibraryIdentifier15=MKP_lib.DbLib/Components
- ComponentDesignItemID15=C0603X7R104K500NT
- ComponentSymbolReference15=CAP
- ComponentUpdate15=1
- ComponentIsDeviceSheet15=0
- ComponentLibIdentifierKind16=Library Name And Type
- ComponentLibraryIdentifier16=MKP_lib.DbLib/Components
- ComponentDesignItemID16=C0805X5R106K160NT
- ComponentSymbolReference16=CAP
- ComponentUpdate16=1
- ComponentIsDeviceSheet16=0
- ComponentLibIdentifierKind17=Library Name And Type
- ComponentLibraryIdentifier17=MKP_lib.DbLib/Components
- ComponentDesignItemID17=C1206X5R106K500NT
- ComponentSymbolReference17=CAP
- ComponentUpdate17=1
- ComponentIsDeviceSheet17=0
- ComponentLibIdentifierKind18=Library Name And Type
- ComponentLibraryIdentifier18=MKP_lib.DbLib/Components
- ComponentDesignItemID18=C7802-02
- ComponentSymbolReference18=C7802-02
- ComponentUpdate18=1
- ComponentIsDeviceSheet18=0
- ComponentLibIdentifierKind19=Library Name And Type
- ComponentLibraryIdentifier19=MKP_lib.DbLib/Components
- ComponentDesignItemID19=CBG160808U100T
- ComponentSymbolReference19=FB
- ComponentUpdate19=1
- ComponentIsDeviceSheet19=0
- ComponentLibIdentifierKind20=Library Name And Type
- ComponentLibraryIdentifier20=MKP_lib.DbLib/Components
- ComponentDesignItemID20=CBW100505U600T
- ComponentSymbolReference20=FB
- ComponentUpdate20=1
- ComponentIsDeviceSheet20=0
- ComponentLibIdentifierKind21=Library Name And Type
- ComponentLibraryIdentifier21=MKP_lib.DbLib/Components
- ComponentDesignItemID21=CC0402FRNPO9BN101
- ComponentSymbolReference21=CAP
- ComponentUpdate21=1
- ComponentIsDeviceSheet21=0
- ComponentLibIdentifierKind22=Library Name And Type
- ComponentLibraryIdentifier22=MKP_lib.DbLib/Components
- ComponentDesignItemID22=CC0402FRNPO9BN120
- ComponentSymbolReference22=CAP
- ComponentUpdate22=1
- ComponentIsDeviceSheet22=0
- ComponentLibIdentifierKind23=Library Name And Type
- ComponentLibraryIdentifier23=MKP_lib.DbLib/Components
- ComponentDesignItemID23=CC0402JRNPO9BN220
- ComponentSymbolReference23=CAP
- ComponentUpdate23=1
- ComponentIsDeviceSheet23=0
- ComponentLibIdentifierKind24=Library Name And Type
- ComponentLibraryIdentifier24=MKP_lib.DbLib/Components
- ComponentDesignItemID24=CC0402KRX7R7BB104
- ComponentSymbolReference24=CAP
- ComponentUpdate24=1
- ComponentIsDeviceSheet24=0
- ComponentLibIdentifierKind25=Library Name And Type
- ComponentLibraryIdentifier25=MKP_lib.DbLib/Components
- ComponentDesignItemID25=CC0402KRX7R9BB822
- ComponentSymbolReference25=CAP
- ComponentUpdate25=1
- ComponentIsDeviceSheet25=0
- ComponentLibIdentifierKind26=Library Name And Type
- ComponentLibraryIdentifier26=MKP_lib.DbLib/Components
- ComponentDesignItemID26=CC0603JRNPO9BN750
- ComponentSymbolReference26=CAP
- ComponentUpdate26=1
- ComponentIsDeviceSheet26=0
- ComponentLibIdentifierKind27=Library Name And Type
- ComponentLibraryIdentifier27=MKP_lib.DbLib/Components
- ComponentDesignItemID27=CC0603KRX7R9BB104
- ComponentSymbolReference27=CAP
- ComponentUpdate27=1
- ComponentIsDeviceSheet27=0
- ComponentLibIdentifierKind28=Library Name And Type
- ComponentLibraryIdentifier28=MKP_lib.DbLib/Components
- ComponentDesignItemID28=CC0603KRX7R9BB474
- ComponentSymbolReference28=CAP
- ComponentUpdate28=1
- ComponentIsDeviceSheet28=0
- ComponentLibIdentifierKind29=Library Name And Type
- ComponentLibraryIdentifier29=MKP_lib.DbLib/Components
- ComponentDesignItemID29=CC0603KRX7R9BB561
- ComponentSymbolReference29=CAP
- ComponentUpdate29=1
- ComponentIsDeviceSheet29=0
- ComponentLibIdentifierKind30=Library Name And Type
- ComponentLibraryIdentifier30=MKP_lib.DbLib/Components
- ComponentDesignItemID30=CC0603KRX7R9BB563
- ComponentSymbolReference30=CAP
- ComponentUpdate30=1
- ComponentIsDeviceSheet30=0
- ComponentLibIdentifierKind31=Library Name And Type
- ComponentLibraryIdentifier31=MKP_lib.DbLib/Components
- ComponentDesignItemID31=CC1206KKX7R0BB104
- ComponentSymbolReference31=CAP
- ComponentUpdate31=1
- ComponentIsDeviceSheet31=0
- ComponentLibIdentifierKind32=Library Name And Type
- ComponentLibraryIdentifier32=MKP_lib.DbLib/Components
- ComponentDesignItemID32=CCTC TCC1206X7R225K101HT
- ComponentSymbolReference32=CAP
- ComponentUpdate32=1
- ComponentIsDeviceSheet32=0
- ComponentLibIdentifierKind33=Library Name And Type
- ComponentLibraryIdentifier33=MKP_lib.DbLib/Components
- ComponentDesignItemID33=CDRCH12D78BNP-220MC
- ComponentSymbolReference33=DRQ125
- ComponentUpdate33=1
- ComponentIsDeviceSheet33=0
- ComponentLibIdentifierKind34=Library Name And Type
- ComponentLibraryIdentifier34=MKP_lib.DbLib/Components
- ComponentDesignItemID34=CL05A105KO5NNNC
- ComponentSymbolReference34=CAP
- ComponentUpdate34=1
- ComponentIsDeviceSheet34=0
- ComponentLibIdentifierKind35=Library Name And Type
- ComponentLibraryIdentifier35=MKP_lib.DbLib/Components
- ComponentDesignItemID35=CL05C330JB5NNNC
- ComponentSymbolReference35=CAP
- ComponentUpdate35=1
- ComponentIsDeviceSheet35=0
- ComponentLibIdentifierKind36=Library Name And Type
- ComponentLibraryIdentifier36=MKP_lib.DbLib/Components
- ComponentDesignItemID36=CL10A225KQ8NNNC
- ComponentSymbolReference36=CAP
- ComponentUpdate36=1
- ComponentIsDeviceSheet36=0
- ComponentLibIdentifierKind37=Library Name And Type
- ComponentLibraryIdentifier37=MKP_lib.DbLib/Components
- ComponentDesignItemID37=CL10A226MQ8NRNE
- ComponentSymbolReference37=CAP
- ComponentUpdate37=1
- ComponentIsDeviceSheet37=0
- ComponentLibIdentifierKind38=Library Name And Type
- ComponentLibraryIdentifier38=MKP_lib.DbLib/Components
- ComponentDesignItemID38=CMFA 103F3435
- ComponentSymbolReference38=NTC
- ComponentUpdate38=1
- ComponentIsDeviceSheet38=0
- ComponentLibIdentifierKind39=Library Name And Type
- ComponentLibraryIdentifier39=MKP_lib.DbLib/Components
- ComponentDesignItemID39=CS3225X7R106K500NRL
- ComponentSymbolReference39=CAP
- ComponentUpdate39=1
- ComponentIsDeviceSheet39=0
- ComponentLibIdentifierKind40=Library Name And Type
- ComponentLibraryIdentifier40=MKP_lib.DbLib/Components
- ComponentDesignItemID40=CSD19538Q3A
- ComponentSymbolReference40=Mosfet N-Chanel
- ComponentUpdate40=1
- ComponentIsDeviceSheet40=0
- ComponentLibIdentifierKind41=Library Name And Type
- ComponentLibraryIdentifier41=MKP_lib.DbLib/Components
- ComponentDesignItemID41=D-DMR009PM-D002
- ComponentSymbolReference41=D-DMR009PM-D002
- ComponentUpdate41=1
- ComponentIsDeviceSheet41=0
- ComponentLibIdentifierKind42=Library Name And Type
- ComponentLibraryIdentifier42=MKP_lib.DbLib/Components
- ComponentDesignItemID42=DLW21SN670SQ2L
- ComponentSymbolReference42=Common Mode Filters
- ComponentUpdate42=1
- ComponentIsDeviceSheet42=0
- ComponentLibIdentifierKind43=Library Name And Type
- ComponentLibraryIdentifier43=MKP_lib.DbLib/Components
- ComponentDesignItemID43=EMK316BBJ476ML-T
- ComponentSymbolReference43=CAP
- ComponentUpdate43=1
- ComponentIsDeviceSheet43=0
- ComponentLibIdentifierKind44=Library Name And Type
- ComponentLibraryIdentifier44=MKP_lib.DbLib/Components
- ComponentDesignItemID44=EMK325ABJ107MM-T
- ComponentSymbolReference44=CAP
- ComponentUpdate44=1
- ComponentIsDeviceSheet44=0
- ComponentLibIdentifierKind45=Library Name And Type
- ComponentLibraryIdentifier45=MKP_lib.DbLib/Components
- ComponentDesignItemID45=ESD5Z5V0
- ComponentSymbolReference45=TVS
- ComponentUpdate45=1
- ComponentIsDeviceSheet45=0
- ComponentLibIdentifierKind46=Library Name And Type
- ComponentLibraryIdentifier46=MKP_lib.DbLib/Components
- ComponentDesignItemID46=ETA3409S2F
- ComponentSymbolReference46=ETA3409S2F
- ComponentUpdate46=1
- ComponentIsDeviceSheet46=0
- ComponentLibIdentifierKind47=Library Name And Type
- ComponentLibraryIdentifier47=MKP_lib.DbLib/Components
- ComponentDesignItemID47=FCC0402B681K500AT
- ComponentSymbolReference47=CAP
- ComponentUpdate47=1
- ComponentIsDeviceSheet47=0
- ComponentLibIdentifierKind48=Library Name And Type
- ComponentLibraryIdentifier48=MKP_lib.DbLib/Components
- ComponentDesignItemID48=FN21N100J500PAG
- ComponentSymbolReference48=CAP
- ComponentUpdate48=1
- ComponentIsDeviceSheet48=0
- ComponentLibIdentifierKind49=Library Name And Type
- ComponentLibraryIdentifier49=MKP_lib.DbLib/Components
- ComponentDesignItemID49=GRM31CR61E476ME44L
- ComponentSymbolReference49=CAP
- ComponentUpdate49=1
- ComponentIsDeviceSheet49=0
- ComponentLibIdentifierKind50=Library Name And Type
- ComponentLibraryIdentifier50=MKP_lib.DbLib/Components
- ComponentDesignItemID50=HNB09A05
- ComponentSymbolReference50=BUZZER
- ComponentUpdate50=1
- ComponentIsDeviceSheet50=0
- ComponentLibIdentifierKind51=Library Name And Type
- ComponentLibraryIdentifier51=MKP_lib.DbLib/Components
- ComponentDesignItemID51=HR911105A
- ComponentSymbolReference51=HR911105A
- ComponentUpdate51=1
- ComponentIsDeviceSheet51=0
- ComponentLibIdentifierKind52=Library Name And Type
- ComponentLibraryIdentifier52=MKP_lib.DbLib/Components
- ComponentDesignItemID52=KH-IPEX-K501-29
- ComponentSymbolReference52=KH-IPEX-K501-29
- ComponentUpdate52=1
- ComponentIsDeviceSheet52=0
- ComponentLibIdentifierKind53=Library Name And Type
- ComponentLibraryIdentifier53=MKP_lib.DbLib/Components
- ComponentDesignItemID53=LBAT54CLT1G
- ComponentSymbolReference53=DIODE-3
- ComponentUpdate53=1
- ComponentIsDeviceSheet53=0
- ComponentLibIdentifierKind54=Library Name And Type
- ComponentLibraryIdentifier54=MKP_lib.DbLib/Components
- ComponentDesignItemID54=LBSS139LT1G
- ComponentSymbolReference54=N-Channel
- ComponentUpdate54=1
- ComponentIsDeviceSheet54=0
- ComponentLibIdentifierKind55=Library Name And Type
- ComponentLibraryIdentifier55=MKP_lib.DbLib/Components
- ComponentDesignItemID55=LK8563T
- ComponentSymbolReference55=LK8563T
- ComponentUpdate55=1
- ComponentIsDeviceSheet55=0
- ComponentLibIdentifierKind56=Library Name And Type
- ComponentLibraryIdentifier56=MKP_lib.DbLib/Components
- ComponentDesignItemID56=LM3481MMX/NOPB
- ComponentSymbolReference56=LM3481MMX/NOPB
- ComponentUpdate56=1
- ComponentIsDeviceSheet56=0
- ComponentLibIdentifierKind57=Library Name And Type
- ComponentLibraryIdentifier57=MKP_lib.DbLib/Components
- ComponentDesignItemID57=LM393DR
- ComponentSymbolReference57=LM358
- ComponentUpdate57=1
- ComponentIsDeviceSheet57=0
- ComponentLibIdentifierKind58=Library Name And Type
- ComponentLibraryIdentifier58=MKP_lib.DbLib/Components
- ComponentDesignItemID58=LM-AZ6118-01F
- ComponentSymbolReference58=TVS
- ComponentUpdate58=1
- ComponentIsDeviceSheet58=0
- ComponentLibIdentifierKind59=Library Name And Type
- ComponentLibraryIdentifier59=MKP_lib.DbLib/Components
- ComponentDesignItemID59=LMR14050SDDAR
- ComponentSymbolReference59=LMR14050SDDAR
- ComponentUpdate59=1
- ComponentIsDeviceSheet59=0
- ComponentLibIdentifierKind60=Library Name And Type
- ComponentLibraryIdentifier60=MKP_lib.DbLib/Components
- ComponentDesignItemID60=M6110-01
- ComponentSymbolReference60=M6110-01
- ComponentUpdate60=1
- ComponentIsDeviceSheet60=0
- ComponentLibIdentifierKind61=Library Name And Type
- ComponentLibraryIdentifier61=MKP_lib.DbLib/Components
- ComponentDesignItemID61=M7
- ComponentSymbolReference61=Diode
- ComponentUpdate61=1
- ComponentIsDeviceSheet61=0
- ComponentLibIdentifierKind62=Library Name And Type
- ComponentLibraryIdentifier62=MKP_lib.DbLib/Components
- ComponentDesignItemID62=MAX3232CDR
- ComponentSymbolReference62=Max3232
- ComponentUpdate62=1
- ComponentIsDeviceSheet62=0
- ComponentLibIdentifierKind63=Library Name And Type
- ComponentLibraryIdentifier63=MKP_lib.DbLib/Components
- ComponentDesignItemID63=MMBT3904-TP
- ComponentSymbolReference63=NPN
- ComponentUpdate63=1
- ComponentIsDeviceSheet63=0
- ComponentLibIdentifierKind64=Library Name And Type
- ComponentLibraryIdentifier64=MKP_lib.DbLib/Components
- ComponentDesignItemID64=MY-2016-02
- ComponentSymbolReference64=CON-PIN-AA
- ComponentUpdate64=1
- ComponentIsDeviceSheet64=0
- ComponentLibIdentifierKind65=Library Name And Type
- ComponentLibraryIdentifier65=MKP_lib.DbLib/Components
- ComponentDesignItemID65=NCA9555
- ComponentSymbolReference65=NCA9555
- ComponentUpdate65=1
- ComponentIsDeviceSheet65=0
- ComponentLibIdentifierKind66=Library Name And Type
- ComponentLibraryIdentifier66=MKP_lib.DbLib/Components
- ComponentDesignItemID66=PDS760-13
- ComponentSymbolReference66=Diode_SCHOTTKY_3_pins
- ComponentUpdate66=1
- ComponentIsDeviceSheet66=0
- ComponentLibIdentifierKind67=Library Name And Type
- ComponentLibraryIdentifier67=MKP_lib.DbLib/Components
- ComponentDesignItemID67=PE1206DRF7W0R015L
- ComponentSymbolReference67=RES
- ComponentUpdate67=1
- ComponentIsDeviceSheet67=0
- ComponentLibIdentifierKind68=Library Name And Type
- ComponentLibraryIdentifier68=MKP_lib.DbLib/Components
- ComponentDesignItemID68=PM200V-12-12-H43
- ComponentSymbolReference68=CON-2X6PIN
- ComponentUpdate68=1
- ComponentIsDeviceSheet68=0
- ComponentLibIdentifierKind69=Library Name And Type
- ComponentLibraryIdentifier69=MKP_lib.DbLib/Components
- ComponentDesignItemID69=PSPMAA0605H-6R8M-ANP
- ComponentSymbolReference69=IND
- ComponentUpdate69=1
- ComponentIsDeviceSheet69=0
- ComponentLibIdentifierKind70=Library Name And Type
- ComponentLibraryIdentifier70=MKP_lib.DbLib/Components
- ComponentDesignItemID70=PTVS5V0S1UR
- ComponentSymbolReference70=TVS
- ComponentUpdate70=1
- ComponentIsDeviceSheet70=0
- ComponentLibIdentifierKind71=Library Name And Type
- ComponentLibraryIdentifier71=MKP_lib.DbLib/Components
- ComponentDesignItemID71=RC0402DR-07118KL
- ComponentSymbolReference71=RES
- 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-071K5L
- ComponentSymbolReference81=RES
- ComponentUpdate81=1
- ComponentIsDeviceSheet81=0
- ComponentLibIdentifierKind82=Library Name And Type
- ComponentLibraryIdentifier82=MKP_lib.DbLib/Components
- ComponentDesignItemID82=RC0402FR-071K91L
- ComponentSymbolReference82=RES
- ComponentUpdate82=1
- ComponentIsDeviceSheet82=0
- ComponentLibIdentifierKind83=Library Name And Type
- ComponentLibraryIdentifier83=MKP_lib.DbLib/Components
- ComponentDesignItemID83=RC0402FR-071KL
- ComponentSymbolReference83=RES
- ComponentUpdate83=1
- ComponentIsDeviceSheet83=0
- ComponentLibIdentifierKind84=Library Name And Type
- ComponentLibraryIdentifier84=MKP_lib.DbLib/Components
- ComponentDesignItemID84=RC0402FR-071ML
- ComponentSymbolReference84=RES
- ComponentUpdate84=1
- ComponentIsDeviceSheet84=0
- ComponentLibIdentifierKind85=Library Name And Type
- ComponentLibraryIdentifier85=MKP_lib.DbLib/Components
- ComponentDesignItemID85=RC0402FR-07220RL
- ComponentSymbolReference85=RES
- ComponentUpdate85=1
- ComponentIsDeviceSheet85=0
- ComponentLibIdentifierKind86=Library Name And Type
- ComponentLibraryIdentifier86=MKP_lib.DbLib/Components
- ComponentDesignItemID86=RC0402FR-0722RL
- ComponentSymbolReference86=RES
- ComponentUpdate86=1
- ComponentIsDeviceSheet86=0
- ComponentLibIdentifierKind87=Library Name And Type
- ComponentLibraryIdentifier87=MKP_lib.DbLib/Components
- ComponentDesignItemID87=RC0402FR-072K2L
- ComponentSymbolReference87=RES
- ComponentUpdate87=1
- ComponentIsDeviceSheet87=0
- ComponentLibIdentifierKind88=Library Name And Type
- ComponentLibraryIdentifier88=MKP_lib.DbLib/Components
- ComponentDesignItemID88=RC0402FR-072K49L
- 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-07470RL
- 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-0752K3L
- ComponentSymbolReference98=RES
- ComponentUpdate98=1
- ComponentIsDeviceSheet98=0
- ComponentLibIdentifierKind99=Library Name And Type
- ComponentLibraryIdentifier99=MKP_lib.DbLib/Components
- ComponentDesignItemID99=RC0402FR-075K6L
- ComponentSymbolReference99=RES
- ComponentUpdate99=1
- ComponentIsDeviceSheet99=0
- ComponentLibIdentifierKind100=Library Name And Type
- ComponentLibraryIdentifier100=MKP_lib.DbLib/Components
- ComponentDesignItemID100=RC0402FR-0768KL
- ComponentSymbolReference100=RES
- ComponentUpdate100=1
- ComponentIsDeviceSheet100=0
- ComponentLibIdentifierKind101=Library Name And Type
- ComponentLibraryIdentifier101=MKP_lib.DbLib/Components
- ComponentDesignItemID101=RC0402FR-0775RL
- ComponentSymbolReference101=RES
- ComponentUpdate101=1
- ComponentIsDeviceSheet101=0
- ComponentLibIdentifierKind102=Library Name And Type
- ComponentLibraryIdentifier102=MKP_lib.DbLib/Components
- ComponentDesignItemID102=RC0402FR-0784K5L
- ComponentSymbolReference102=RES
- ComponentUpdate102=1
- ComponentIsDeviceSheet102=0
- ComponentLibIdentifierKind103=Library Name And Type
- ComponentLibraryIdentifier103=MKP_lib.DbLib/Components
- ComponentDesignItemID103=RC0402FR-078K45L
- ComponentSymbolReference103=RES
- ComponentUpdate103=1
- ComponentIsDeviceSheet103=0
- ComponentLibIdentifierKind104=Library Name And Type
- ComponentLibraryIdentifier104=MKP_lib.DbLib/Components
- ComponentDesignItemID104=RI0603L000JT
- ComponentSymbolReference104=RES
- ComponentUpdate104=1
- ComponentIsDeviceSheet104=0
- ComponentLibIdentifierKind105=Library Name And Type
- ComponentLibraryIdentifier105=MKP_lib.DbLib/Components
- ComponentDesignItemID105=RI0603L1002FT
- ComponentSymbolReference105=RES
- ComponentUpdate105=1
- ComponentIsDeviceSheet105=0
- ComponentLibIdentifierKind106=Library Name And Type
- ComponentLibraryIdentifier106=MKP_lib.DbLib/Components
- ComponentDesignItemID106=RI0603L1R00FT
- ComponentSymbolReference106=RES
- ComponentUpdate106=1
- ComponentIsDeviceSheet106=0
- ComponentLibIdentifierKind107=Library Name And Type
- ComponentLibraryIdentifier107=MKP_lib.DbLib/Components
- ComponentDesignItemID107=RI1206L000JT
- ComponentSymbolReference107=RES
- ComponentUpdate107=1
- ComponentIsDeviceSheet107=0
- ComponentLibIdentifierKind108=Library Name And Type
- ComponentLibraryIdentifier108=MKP_lib.DbLib/Components
- ComponentDesignItemID108=RT1E470M0605
- ComponentSymbolReference108=CAPP
- ComponentUpdate108=1
- ComponentIsDeviceSheet108=0
- ComponentLibIdentifierKind109=Library Name And Type
- ComponentLibraryIdentifier109=MKP_lib.DbLib/Components
- ComponentDesignItemID109=RT1H101M0810
- ComponentSymbolReference109=CAPP
- ComponentUpdate109=1
- ComponentIsDeviceSheet109=0
- ComponentLibIdentifierKind110=Library Name And Type
- ComponentLibraryIdentifier110=MKP_lib.DbLib/Components
- ComponentDesignItemID110=RVT1C471M0810
- ComponentSymbolReference110=CAPP
- ComponentUpdate110=1
- ComponentIsDeviceSheet110=0
- ComponentLibIdentifierKind111=Library Name And Type
- ComponentLibraryIdentifier111=MKP_lib.DbLib/Components
- ComponentDesignItemID111=RVT2A100M0605
- ComponentSymbolReference111=CAPP
- ComponentUpdate111=1
- ComponentIsDeviceSheet111=0
- ComponentLibIdentifierKind112=Library Name And Type
- ComponentLibraryIdentifier112=MKP_lib.DbLib/Components
- ComponentDesignItemID112=S10M
- ComponentSymbolReference112=Diode
- ComponentUpdate112=1
- ComponentIsDeviceSheet112=0
- ComponentLibIdentifierKind113=Library Name And Type
- ComponentLibraryIdentifier113=MKP_lib.DbLib/Components
- ComponentDesignItemID113=SI2333CDS
- ComponentSymbolReference113=P-Channel
- ComponentUpdate113=1
- ComponentIsDeviceSheet113=0
- ComponentLibIdentifierKind114=Library Name And Type
- ComponentLibraryIdentifier114=MKP_lib.DbLib/Components
- ComponentDesignItemID114=SIM65M-C
- ComponentSymbolReference114=SIM65M-C
- ComponentUpdate114=1
- ComponentIsDeviceSheet114=0
- ComponentLibIdentifierKind115=Library Name And Type
- ComponentLibraryIdentifier115=MKP_lib.DbLib/Components
- ComponentDesignItemID115=SMF05CT1G-P
- ComponentSymbolReference115=SMF05CT1G-P
- ComponentUpdate115=1
- ComponentIsDeviceSheet115=0
- ComponentLibIdentifierKind116=Library Name And Type
- ComponentLibraryIdentifier116=MKP_lib.DbLib/Components
- ComponentDesignItemID116=SMF36A
- ComponentSymbolReference116=TVS
- ComponentUpdate116=1
- ComponentIsDeviceSheet116=0
- ComponentLibIdentifierKind117=Library Name And Type
- ComponentLibraryIdentifier117=MKP_lib.DbLib/Components
- ComponentDesignItemID117=SR05-04A
- ComponentSymbolReference117=SR05-04A
- ComponentUpdate117=1
- ComponentIsDeviceSheet117=0
- ComponentLibIdentifierKind118=Library Name And Type
- ComponentLibraryIdentifier118=MKP_lib.DbLib/Components
- ComponentDesignItemID118=SS34A
- ComponentSymbolReference118=SCHOTTKY
- ComponentUpdate118=1
- ComponentIsDeviceSheet118=0
- ComponentLibIdentifierKind119=Library Name And Type
- ComponentLibraryIdentifier119=MKP_lib.DbLib/Components
- ComponentDesignItemID119=SS36F
- ComponentSymbolReference119=SCHOTTKY
- ComponentUpdate119=1
- ComponentIsDeviceSheet119=0
- ComponentLibIdentifierKind120=Library Name And Type
- ComponentLibraryIdentifier120=MKP_lib.DbLib/Components
- ComponentDesignItemID120=SX20Y025000B91T002
- ComponentSymbolReference120=Q22FA12800078
- ComponentUpdate120=1
- ComponentIsDeviceSheet120=0
- ComponentLibIdentifierKind121=Library Name And Type
- ComponentLibraryIdentifier121=MKP_lib.DbLib/Components
- ComponentDesignItemID121=TAJB476K010RNJ
- ComponentSymbolReference121=CAPP
- ComponentUpdate121=1
- ComponentIsDeviceSheet121=0
- ComponentLibIdentifierKind122=Library Name And Type
- ComponentLibraryIdentifier122=MKP_lib.DbLib/Components
- ComponentDesignItemID122=TannhietSOM
- ComponentSymbolReference122=Tannhiet
- ComponentUpdate122=1
- ComponentIsDeviceSheet122=0
- ComponentLibIdentifierKind123=Library Name And Type
- ComponentLibraryIdentifier123=MKP_lib.DbLib/Components
- ComponentDesignItemID123=TLV75801PDBVR
- ComponentSymbolReference123=SGM2028-ADJYN5G/TR
- ComponentUpdate123=1
- ComponentIsDeviceSheet123=0
- ComponentLibIdentifierKind124=Library Name And Type
- ComponentLibraryIdentifier124=MKP_lib.DbLib/Components
- ComponentDesignItemID124=TP
- ComponentSymbolReference124=TP
- ComponentUpdate124=1
- ComponentIsDeviceSheet124=0
- ComponentLibIdentifierKind125=Library Name And Type
- ComponentLibraryIdentifier125=MKP_lib.DbLib/Components
- ComponentDesignItemID125=TP-0.6
- ComponentSymbolReference125=TP
- ComponentUpdate125=1
- ComponentIsDeviceSheet125=0
- ComponentLibIdentifierKind126=Library Name And Type
- ComponentLibraryIdentifier126=MKP_lib.DbLib/Components
- ComponentDesignItemID126=TS-1090S-AR02026
- ComponentSymbolReference126=SW-4PIN
- ComponentUpdate126=1
- ComponentIsDeviceSheet126=0
- ComponentLibIdentifierKind127=Library Name And Type
- ComponentLibraryIdentifier127=MKP_lib.DbLib/Components
- ComponentDesignItemID127=TSB001A3518A
- ComponentSymbolReference127=TS-1001V-AR05016
- ComponentUpdate127=1
- ComponentIsDeviceSheet127=0
- ComponentLibIdentifierKind128=Library Name And Type
- ComponentLibraryIdentifier128=MKP_lib.DbLib/Components
- ComponentDesignItemID128=UPZ2012E102-1R5TF
- ComponentSymbolReference128=FB
- ComponentUpdate128=1
- ComponentIsDeviceSheet128=0
- ComponentLibIdentifierKind129=Library Name And Type
- ComponentLibraryIdentifier129=MKP_lib.DbLib/Components
- ComponentDesignItemID129=VHF100505HQ47NJT
- ComponentSymbolReference129=IND
- ComponentUpdate129=1
- ComponentIsDeviceSheet129=0
- ComponentLibIdentifierKind130=Library Name And Type
- ComponentLibraryIdentifier130=MKP_lib.DbLib/Components
- ComponentDesignItemID130=VHF100505HQ68NJT
- ComponentSymbolReference130=IND
- ComponentUpdate130=1
- ComponentIsDeviceSheet130=0
- ComponentLibIdentifierKind131=Library Name And Type
- ComponentLibraryIdentifier131=MKP_lib.DbLib/Components
- ComponentDesignItemID131=WE05DGCF-B
- ComponentSymbolReference131=TVS-ESD
- ComponentUpdate131=1
- ComponentIsDeviceSheet131=0
- ComponentLibIdentifierKind132=Library Name And Type
- ComponentLibraryIdentifier132=MKP_lib.DbLib/Components
- ComponentDesignItemID132=XH-2A
- ComponentSymbolReference132=CON-2PIN
- ComponentUpdate132=1
- ComponentIsDeviceSheet132=0
- ComponentLibIdentifierKind133=Library Name And Type
- ComponentLibraryIdentifier133=MKP_lib.DbLib/Components
- ComponentDesignItemID133=XH-2AW
- ComponentSymbolReference133=CON-2PIN
- ComponentUpdate133=1
- ComponentIsDeviceSheet133=0
- ComponentLibIdentifierKind134=Library Name And Type
- ComponentLibraryIdentifier134=MKP_lib.DbLib/Components
- ComponentDesignItemID134=XH-4A
- ComponentSymbolReference134=CON-4PIN
- ComponentUpdate134=1
- ComponentIsDeviceSheet134=0
- ComponentLibIdentifierKind135=Library Name And Type
- ComponentLibraryIdentifier135=MKP_lib.DbLib/Components
- ComponentDesignItemID135=XL-1608SURC-06
- ComponentSymbolReference135=LED
- ComponentUpdate135=1
- ComponentIsDeviceSheet135=0
- ComponentLibIdentifierKind136=Library Name And Type
- ComponentLibraryIdentifier136=MKP_lib.DbLib/Components
- ComponentDesignItemID136=XL-1608SYGC-04
- ComponentSymbolReference136=LED
- ComponentUpdate136=1
- ComponentIsDeviceSheet136=0
- ComponentLibIdentifierKind137=Library Name And Type
- ComponentLibraryIdentifier137=MKP_lib.DbLib/Components
- ComponentDesignItemID137=XL-DZ304SURD/3
- ComponentSymbolReference137=LED3
- ComponentUpdate137=1
- ComponentIsDeviceSheet137=0
- ComponentLibIdentifierKind138=Library Name And Type
- ComponentLibraryIdentifier138=MKP_lib.DbLib/Components
- ComponentDesignItemID138=XS9922B
- ComponentSymbolReference138=XS9922B
- ComponentUpdate138=1
- ComponentIsDeviceSheet138=0
- ComponentLibIdentifierKind139=Library Name And Type
- ComponentLibraryIdentifier139=MKP_lib.DbLib/Components
- ComponentDesignItemID139=YAGEO RC0402FR-072R2L
- ComponentSymbolReference139=RES
- ComponentUpdate139=1
- ComponentIsDeviceSheet139=0
- ComponentLibIdentifierKind140=Library Name And Type
- ComponentLibraryIdentifier140=MKP_lib.DbLib/Components
- ComponentDesignItemID140=YI160808U100-5R0T
- ComponentSymbolReference140=FB
- ComponentUpdate140=1
- ComponentIsDeviceSheet140=0
- ComponentLibIdentifierKind141=Library Name And Type
- ComponentLibraryIdentifier141=MKP_lib.DbLib/Components
- ComponentDesignItemID141=YT8512H
- ComponentSymbolReference141=YT8512H
- ComponentUpdate141=1
- ComponentIsDeviceSheet141=0
- ComponentLibIdentifierKind142=Library Name And Type
- ComponentLibraryIdentifier142=MKP_lib.DbLib/Components
- ComponentDesignItemID142=ZD0650-2R2M
- ComponentSymbolReference142=IND
- ComponentUpdate142=1
- ComponentIsDeviceSheet142=0
- ComponentLibIdentifierKind143=Library Name And Type
- ComponentLibraryIdentifier143=MKP_lib.DbLib/Components
- ComponentDesignItemID143=ZNR3015ST2R2M
- ComponentSymbolReference143=IND
- ComponentUpdate143=1
- ComponentIsDeviceSheet143=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=Actuator Style
- ParameterUpdate0=1
- ParameterName1=Actuator/Cap Color
- ParameterUpdate1=1
- ParameterName2=Add into BOM
- ParameterUpdate2=1
- ParameterName3=Category
- ParameterUpdate3=1
- ParameterName4=Catelogy
- ParameterUpdate4=1
- ParameterName5=Channel ID
- ParameterUpdate5=1
- ParameterName6=Circuit
- ParameterUpdate6=1
- ParameterName7=Comment
- ParameterUpdate7=1
- ParameterName8=Company ID
- ParameterUpdate8=1
- ParameterName9=Component Kind
- ParameterUpdate9=1
- ParameterName10=ComponentLink1Description
- ParameterUpdate10=1
- ParameterName11=ComponentLink1URL
- ParameterUpdate11=1
- ParameterName12=ComponentLink2Description
- ParameterUpdate12=1
- ParameterName13=ComponentLink2URL
- ParameterUpdate13=1
- ParameterName14=ComponentLink3Description
- ParameterUpdate14=1
- ParameterName15=ComponentLink3URL
- ParameterUpdate15=1
- ParameterName16=ComponentLink4Description
- ParameterUpdate16=1
- ParameterName17=ComponentLink4URL
- ParameterUpdate17=1
- ParameterName18=ComponentLink5Description
- ParameterUpdate18=1
- ParameterName19=ComponentLink5URL
- ParameterUpdate19=1
- ParameterName20=ComponentLink6Description
- ParameterUpdate20=1
- ParameterName21=ComponentLink6URL
- ParameterUpdate21=1
- ParameterName22=Contact Current
- ParameterUpdate22=1
- ParameterName23=Contact Plating
- ParameterUpdate23=1
- ParameterName24=Continuous Drain Current (ID)
- ParameterUpdate24=1
- ParameterName25=Convert to PCB
- ParameterUpdate25=1
- ParameterName26=Creator
- ParameterUpdate26=1
- ParameterName27=Current Rating
- ParameterUpdate27=1
- ParameterName28=Datasheet
- ParameterUpdate28=1
- ParameterName29=Des
- ParameterUpdate29=1
- ParameterName30=Description
- ParameterUpdate30=1
- ParameterName31=Detailed Value
- ParameterUpdate31=1
- ParameterName32=Device
- ParameterUpdate32=1
- ParameterName33=Drain to Source Breakdown Voltage
- ParameterUpdate33=1
- ParameterName34=Drain to Source Resistance
- ParameterUpdate34=1
- ParameterName35=Drain to Source Voltage (Vdss)
- ParameterUpdate35=1
- ParameterName36=Element Configuration
- ParameterUpdate36=1
- ParameterName37=Fall Time
- ParameterUpdate37=1
- ParameterName38=Gate to Source Voltage (Vgs)
- ParameterUpdate38=1
- ParameterName39=Group ID
- ParameterUpdate39=1
- ParameterName40=Height
- ParameterUpdate40=1
- ParameterName41=Input Capacitance
- ParameterUpdate41=1
- ParameterName42=Insulation Resistance
- ParameterUpdate42=1
- ParameterName43=JLCPCB Part Class
- ParameterUpdate43=1
- ParameterName44=Kieu_Chan
- ParameterUpdate44=1
- ParameterName45=LCSC Part Name
- ParameterUpdate45=1
- ParameterName46=Lead Free
- ParameterUpdate46=1
- ParameterName47=Length
- ParameterUpdate47=1
- ParameterName48=Library Reference
- ParameterUpdate48=1
- ParameterName49=Link sale
- ParameterUpdate49=1
- ParameterName50=MANU 1
- ParameterUpdate50=1
- ParameterName51=MANU 2
- ParameterUpdate51=1
- ParameterName52=Manufacture
- ParameterUpdate52=1
- ParameterName53=Manufacturer
- ParameterUpdate53=1
- ParameterName54=Manufacturer 1
- ParameterUpdate54=1
- ParameterName55=Manufacturer Part
- ParameterUpdate55=1
- ParameterName56=Manufacturer Part Number 1
- ParameterUpdate56=1
- ParameterName57=Max Operating Temperature
- ParameterUpdate57=1
- ParameterName58=Max Power Dissipation
- ParameterUpdate58=1
- ParameterName59=Mechanical Life
- ParameterUpdate59=1
- ParameterName60=Mfr
- ParameterUpdate60=1
- ParameterName61=Min Operating Temperature
- ParameterUpdate61=1
- ParameterName62=Mount
- ParameterUpdate62=1
- ParameterName63=Mounting Style
- ParameterUpdate63=1
- ParameterName64=Mounting type
- ParameterUpdate64=1
- ParameterName65=Mpn
- ParameterUpdate65=1
- ParameterName66=Name
- ParameterUpdate66=1
- ParameterName67=Nominal Vgs
- ParameterUpdate67=1
- ParameterName68=Number of Elements
- ParameterUpdate68=1
- ParameterName69=Number of Pins
- ParameterUpdate69=1
- ParameterName70=Operating Force
- ParameterUpdate70=1
- ParameterName71=Operating Temperature
- ParameterUpdate71=1
- ParameterName72=Package Quantity
- ParameterUpdate72=1
- ParameterName73=Packaging
- ParameterUpdate73=1
- ParameterName74=Part Num 1
- ParameterUpdate74=1
- ParameterName75=Part Num 2
- ParameterUpdate75=1
- ParameterName76=Partnumber
- ParameterUpdate76=1
- ParameterName77=Pin Style
- ParameterUpdate77=1
- ParameterName78=Power Dissipation
- ParameterUpdate78=1
- ParameterName79=Pricing (USD)
- ParameterUpdate79=1
- ParameterName80=Pricing 1
- ParameterUpdate80=1
- ParameterName81=PROJECT
- ParameterUpdate81=1
- ParameterName82=Radiation Hardening
- ParameterUpdate82=1
- ParameterName83=Rds On Max
- ParameterUpdate83=1
- ParameterName84=REACH SVHC
- ParameterUpdate84=1
- ParameterName85=Reuse Block
- ParameterUpdate85=1
- ParameterName86=Rise Time
- ParameterUpdate86=1
- ParameterName87=RoHS
- ParameterUpdate87=1
- ParameterName88=Stock 1
- ParameterUpdate88=1
- ParameterName89=Strike Gundam
- ParameterUpdate89=1
- ParameterName90=Supplier
- ParameterUpdate90=1
- ParameterName91=Supplier 1
- ParameterUpdate91=1
- ParameterName92=Supplier Footprint
- ParameterUpdate92=1
- ParameterName93=Supplier Part
- ParameterUpdate93=1
- ParameterName94=Supplier Part Number 1
- ParameterUpdate94=1
- ParameterName95=Switch Height
- ParameterUpdate95=1
- ParameterName96=Switch Length
- ParameterUpdate96=1
- ParameterName97=Switch Width
- ParameterUpdate97=1
- ParameterName98=Symbol
- ParameterUpdate98=1
- ParameterName99=Threshold Voltage
- ParameterUpdate99=1
- ParameterName100=Tolerance
- ParameterUpdate100=1
- ParameterName101=Turn-Off Delay Time
- ParameterUpdate101=1
- ParameterName102=Turn-On Delay Time
- ParameterUpdate102=1
- ParameterName103=Type
- ParameterUpdate103=1
- ParameterName104=Unit
- ParameterUpdate104=1
- ParameterName105=Value
- ParameterUpdate105=1
- ParameterName106=Voltage Rated
- ParameterUpdate106=1
- ParameterName107=Voltage Rating (DC)
- ParameterUpdate107=1
- ParameterName108=Width
- ParameterUpdate108=1
- ModelTypeGroup0=PCB3DLib
- ModelTypeUpdate0=1
- ModelTypeGroup1=PCBLIB
- ModelTypeUpdate1=1
- ModelTypeGroup2=SIM
- ModelTypeUpdate2=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
- Configuration_Name1=OutputConfigurationParameter1
- Configuration_Item1=DesignatorDisplayMode=Physical|PrintArea=DesignExtent|PrintAreaLowerLeftCornerX=0|PrintAreaLowerLeftCornerY=0|PrintAreaUpperRightCornerX=0|PrintAreaUpperRightCornerY=0|Record=PcbPrintView|DocumentPath=D:\SourceTree_Aithings\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562_lot_500.PcbDoc
- Configuration_Name2=OutputConfigurationParameter2
- Configuration_Item2=IncludeBoardCutouts=False|IncludeBottomLayerComponents=True|IncludeMultiLayerComponents=True|IncludeTopLayerComponents=True|IncludeViewports=True|Index=0|Mirror=False|Name=Multilayer Composite Print|PadNumberFontSize=14|Record=PcbPrintOut|ShowHoles=False|ShowPadNets=False|ShowPadNumbers=False|SubstituteFonts=False|DocumentPath=D:\SourceTree_Aithings\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562_lot_500.PcbDoc
- Configuration_Name3=OutputConfigurationParameter3
- Configuration_Item3=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=D:\SourceTree_Aithings\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562_lot_500.PcbDoc
- Configuration_Name4=OutputConfigurationParameter4
- Configuration_Item4=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=D:\SourceTree_Aithings\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562_lot_500.PcbDoc
- Configuration_Name5=OutputConfigurationParameter5
- Configuration_Item5=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MidLayer1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=D:\SourceTree_Aithings\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562_lot_500.PcbDoc
- Configuration_Name6=OutputConfigurationParameter6
- Configuration_Item6=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=D:\SourceTree_Aithings\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562_lot_500.PcbDoc
- Configuration_Name7=OutputConfigurationParameter7
- Configuration_Item7=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MultiLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=D:\SourceTree_Aithings\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562_lot_500.PcbDoc
- Configuration_Name8=OutputConfigurationParameter8
- Configuration_Item8=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=D:\SourceTree_Aithings\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562_lot_500.PcbDoc
- Configuration_Name9=OutputConfigurationParameter9
- Configuration_Item9=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=KeepOutLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=D:\SourceTree_Aithings\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562_lot_500.PcbDoc
- Configuration_Name10=OutputConfigurationParameter10
- Configuration_Item10=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=D:\SourceTree_Aithings\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562_lot_500.PcbDoc
- Configuration_Name11=OutputConfigurationParameter11
- Configuration_Item11=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical2|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=D:\SourceTree_Aithings\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562_lot_500.PcbDoc
- Configuration_Name12=OutputConfigurationParameter12
- Configuration_Item12=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical3|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=D:\SourceTree_Aithings\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562_lot_500.PcbDoc
- Configuration_Name13=OutputConfigurationParameter13
- Configuration_Item13=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical4|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=D:\SourceTree_Aithings\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562_lot_500.PcbDoc
- Configuration_Name14=OutputConfigurationParameter14
- Configuration_Item14=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical5|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=D:\SourceTree_Aithings\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562_lot_500.PcbDoc
- Configuration_Name15=OutputConfigurationParameter15
- Configuration_Item15=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical6|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=D:\SourceTree_Aithings\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562_lot_500.PcbDoc
- Configuration_Name16=OutputConfigurationParameter16
- Configuration_Item16=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical7|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=D:\SourceTree_Aithings\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562_lot_500.PcbDoc
- Configuration_Name17=OutputConfigurationParameter17
- Configuration_Item17=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical8|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=D:\SourceTree_Aithings\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562_lot_500.PcbDoc
- Configuration_Name18=OutputConfigurationParameter18
- Configuration_Item18=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical12|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=D:\SourceTree_Aithings\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562_lot_500.PcbDoc
- Configuration_Name19=OutputConfigurationParameter19
- Configuration_Item19=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical13|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=D:\SourceTree_Aithings\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562_lot_500.PcbDoc
- Configuration_Name20=OutputConfigurationParameter20
- Configuration_Item20=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical14|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=D:\SourceTree_Aithings\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562_lot_500.PcbDoc
- Configuration_Name21=OutputConfigurationParameter21
- Configuration_Item21=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical15|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=D:\SourceTree_Aithings\Cambox_RK3562_A7677S_AITHINGS\Camera_Box_RK3562_lot_500.PcbDoc
|