| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550 | {    "m_SGVersion": 3,    "m_Type": "UnityEditor.ShaderGraph.GraphData",    "m_ObjectId": "c2eef8e5f2324276b372f4c3e9aa84a4",    "m_Properties": [        {            "m_Id": "0145a3d4f3d63889a8ec1061330cc045"        },        {            "m_Id": "5330837b31ec6e81bd1399d4005199ef"        },        {            "m_Id": "c46d8e3d69d29083a96f6002dd89e4f9"        },        {            "m_Id": "cd1abbd845e40a8dbadfa753bc5d882a"        },        {            "m_Id": "05c5082e8337eb83a933f80a43d488ec"        },        {            "m_Id": "07f9f64a824da482871b2523c3ad7601"        },        {            "m_Id": "c5f51481ebaea38b9c6ae5183d464ea4"        },        {            "m_Id": "b8984fe0fcde7e828170544b97a9bfae"        },        {            "m_Id": "28ce354e69684780af2ae6f9f539ec6b"        },        {            "m_Id": "250dd4c0046d7b83b0509ef30c343967"        }    ],    "m_Keywords": [],    "m_Dropdowns": [],    "m_CategoryData": [        {            "m_Id": "95896ed63557475a817eb30bb011406e"        }    ],    "m_Nodes": [        {            "m_Id": "74a9e0db68f63c80a94e963c1e32786f"        },        {            "m_Id": "9f86bb961939a48781a21b50d0af7067"        },        {            "m_Id": "b80731f1b22b9980abd19de99c310b25"        },        {            "m_Id": "269848b5e52d4f818974f2ccae03b87a"        },        {            "m_Id": "b0168b8b4763b78db8fbf26a22800b84"        },        {            "m_Id": "eabc691f9e3a488d8b2cdbf3ab55e9c9"        },        {            "m_Id": "02e1ad4e9c768c8dbba4288c7569000b"        },        {            "m_Id": "8b176309b398a982bf3ca3c88b4565cd"        },        {            "m_Id": "f74718f3a982dc8c9b824e2e4aab8f20"        },        {            "m_Id": "ac49a0ddd1bfe18784b327c37494af49"        },        {            "m_Id": "2a8630028f296a81a1fc69c70e228afb"        },        {            "m_Id": "e592fb8b0f47088288343b5a170ce1c0"        },        {            "m_Id": "4105d84d015b748f8dca09a21effa949"        },        {            "m_Id": "5f76946eb29346c9867889bceaa91ae5"        },        {            "m_Id": "66dbd2d0aac94662a70c14e13597e76e"        },        {            "m_Id": "47c2119c85104efaa7c00462370b9d48"        },        {            "m_Id": "978295121d3d4754b82ebee69d170f8f"        },        {            "m_Id": "1b1c8badea3a4d4895f05319b8e60e3f"        },        {            "m_Id": "69c37c4207d94dee95fae359bf653132"        },        {            "m_Id": "3b264145ad5c4e1dbf267143b322fa46"        },        {            "m_Id": "df2a5b42444b41019f62ba20acbd9a7d"        },        {            "m_Id": "f5378d288b5e4307a5f8091a395eb091"        },        {            "m_Id": "525f7efb02f4416bb9fe10f84bfaf0e7"        },        {            "m_Id": "1d3291b1052c482c831bd813f8660b81"        },        {            "m_Id": "193c8768f72146da810c89577ab90e81"        },        {            "m_Id": "59b55acfd7824759b3735f683ea3c80c"        }    ],    "m_GroupDatas": [],    "m_StickyNoteDatas": [],    "m_Edges": [        {            "m_OutputSlot": {                "m_Node": {                    "m_Id": "02e1ad4e9c768c8dbba4288c7569000b"                },                "m_SlotId": 0            },            "m_InputSlot": {                "m_Node": {                    "m_Id": "f5378d288b5e4307a5f8091a395eb091"                },                "m_SlotId": 0            }        },        {            "m_OutputSlot": {                "m_Node": {                    "m_Id": "269848b5e52d4f818974f2ccae03b87a"                },                "m_SlotId": 0            },            "m_InputSlot": {                "m_Node": {                    "m_Id": "1b1c8badea3a4d4895f05319b8e60e3f"                },                "m_SlotId": 0            }        },        {            "m_OutputSlot": {                "m_Node": {                    "m_Id": "2a8630028f296a81a1fc69c70e228afb"                },                "m_SlotId": 0            },            "m_InputSlot": {                "m_Node": {                    "m_Id": "4105d84d015b748f8dca09a21effa949"                },                "m_SlotId": 1            }        },        {            "m_OutputSlot": {                "m_Node": {                    "m_Id": "4105d84d015b748f8dca09a21effa949"                },                "m_SlotId": 4            },            "m_InputSlot": {                "m_Node": {                    "m_Id": "59b55acfd7824759b3735f683ea3c80c"                },                "m_SlotId": 0            }        },        {            "m_OutputSlot": {                "m_Node": {                    "m_Id": "74a9e0db68f63c80a94e963c1e32786f"                },                "m_SlotId": 0            },            "m_InputSlot": {                "m_Node": {                    "m_Id": "f74718f3a982dc8c9b824e2e4aab8f20"                },                "m_SlotId": -886669805            }        },        {            "m_OutputSlot": {                "m_Node": {                    "m_Id": "8b176309b398a982bf3ca3c88b4565cd"                },                "m_SlotId": 0            },            "m_InputSlot": {                "m_Node": {                    "m_Id": "525f7efb02f4416bb9fe10f84bfaf0e7"                },                "m_SlotId": 0            }        },        {            "m_OutputSlot": {                "m_Node": {                    "m_Id": "9f86bb961939a48781a21b50d0af7067"                },                "m_SlotId": 0            },            "m_InputSlot": {                "m_Node": {                    "m_Id": "b80731f1b22b9980abd19de99c310b25"                },                "m_SlotId": 1            }        },        {            "m_OutputSlot": {                "m_Node": {                    "m_Id": "ac49a0ddd1bfe18784b327c37494af49"                },                "m_SlotId": 0            },            "m_InputSlot": {                "m_Node": {                    "m_Id": "193c8768f72146da810c89577ab90e81"                },                "m_SlotId": 0            }        },        {            "m_OutputSlot": {                "m_Node": {                    "m_Id": "b0168b8b4763b78db8fbf26a22800b84"                },                "m_SlotId": 0            },            "m_InputSlot": {                "m_Node": {                    "m_Id": "69c37c4207d94dee95fae359bf653132"                },                "m_SlotId": 0            }        },        {            "m_OutputSlot": {                "m_Node": {                    "m_Id": "b80731f1b22b9980abd19de99c310b25"                },                "m_SlotId": 0            },            "m_InputSlot": {                "m_Node": {                    "m_Id": "df2a5b42444b41019f62ba20acbd9a7d"                },                "m_SlotId": 0            }        },        {            "m_OutputSlot": {                "m_Node": {                    "m_Id": "e592fb8b0f47088288343b5a170ce1c0"                },                "m_SlotId": 0            },            "m_InputSlot": {                "m_Node": {                    "m_Id": "4105d84d015b748f8dca09a21effa949"                },                "m_SlotId": 0            }        },        {            "m_OutputSlot": {                "m_Node": {                    "m_Id": "eabc691f9e3a488d8b2cdbf3ab55e9c9"                },                "m_SlotId": 0            },            "m_InputSlot": {                "m_Node": {                    "m_Id": "3b264145ad5c4e1dbf267143b322fa46"                },                "m_SlotId": 0            }        },        {            "m_OutputSlot": {                "m_Node": {                    "m_Id": "f74718f3a982dc8c9b824e2e4aab8f20"                },                "m_SlotId": 0            },            "m_InputSlot": {                "m_Node": {                    "m_Id": "978295121d3d4754b82ebee69d170f8f"                },                "m_SlotId": 0            }        }    ],    "m_VertexContext": {        "m_Position": {            "x": 458.00006103515627,            "y": 60.00002670288086        },        "m_Blocks": [            {                "m_Id": "5f76946eb29346c9867889bceaa91ae5"            },            {                "m_Id": "66dbd2d0aac94662a70c14e13597e76e"            },            {                "m_Id": "47c2119c85104efaa7c00462370b9d48"            }        ]    },    "m_FragmentContext": {        "m_Position": {            "x": 458.0,            "y": 259.0        },        "m_Blocks": [            {                "m_Id": "978295121d3d4754b82ebee69d170f8f"            },            {                "m_Id": "1b1c8badea3a4d4895f05319b8e60e3f"            },            {                "m_Id": "69c37c4207d94dee95fae359bf653132"            },            {                "m_Id": "3b264145ad5c4e1dbf267143b322fa46"            },            {                "m_Id": "df2a5b42444b41019f62ba20acbd9a7d"            },            {                "m_Id": "f5378d288b5e4307a5f8091a395eb091"            },            {                "m_Id": "525f7efb02f4416bb9fe10f84bfaf0e7"            },            {                "m_Id": "1d3291b1052c482c831bd813f8660b81"            },            {                "m_Id": "193c8768f72146da810c89577ab90e81"            },            {                "m_Id": "59b55acfd7824759b3735f683ea3c80c"            }        ]    },    "m_PreviewData": {        "serializedMesh": {            "m_SerializedMesh": "{\"mesh\":{\"instanceID\":0}}",            "m_Guid": ""        },        "preventRotation": false    },    "m_Path": "Shader Graphs",    "m_GraphPrecision": 0,    "m_PreviewMode": 2,    "m_OutputNode": {        "m_Id": ""    },    "m_SubDatas": [],    "m_ActiveTargets": [        {            "m_Id": "238eacbd0f6f48a29f95d16a5722e040"        }    ]}{    "m_SGVersion": 2,    "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty",    "m_ObjectId": "0145a3d4f3d63889a8ec1061330cc045",    "m_Guid": {        "m_GuidSerialized": "7c116f9f-17c3-4531-a575-f361e616357c"    },    "m_Name": "Albedo",    "m_DefaultRefNameVersion": 0,    "m_RefNameGeneratedByDisplayName": "",    "m_DefaultReferenceName": "Color_175D2849",    "m_OverrideReferenceName": "",    "m_GeneratePropertyBlock": true,    "m_UseCustomSlotLabel": false,    "m_CustomSlotLabel": "",    "m_DismissedVersion": 0,    "m_Precision": 0,    "overrideHLSLDeclaration": false,    "hlslDeclarationOverride": 0,    "m_Hidden": false,    "m_Priority": 10,    "m_Value": {        "r": 0.501960813999176,        "g": 0.6509804129600525,        "b": 1.0,        "a": 0.0    },    "isMainColor": false,    "m_ColorMode": 0}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.PropertyNode",    "m_ObjectId": "02e1ad4e9c768c8dbba4288c7569000b",    "m_Group": {        "m_Id": ""    },    "m_Name": "Property",    "m_DrawState": {        "m_Expanded": true,        "m_Position": {            "serializedVersion": "2",            "x": -440.99993896484377,            "y": 221.99998474121095,            "width": 94.99999237060547,            "height": 77.0        }    },    "m_Slots": [        {            "m_Id": "2354d44fec7ff783b4f700cfe3bbf9ff"        }    ],    "synonyms": [],    "m_Precision": 0,    "m_PreviewExpanded": true,    "m_DismissedVersion": 0,    "m_PreviewMode": 0,    "m_CustomColors": {        "m_SerializableColors": []    },    "m_Property": {        "m_Id": "07f9f64a824da482871b2523c3ad7601"    }}{    "m_SGVersion": 1,    "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty",    "m_ObjectId": "05c5082e8337eb83a933f80a43d488ec",    "m_Guid": {        "m_GuidSerialized": "24adfea4-827a-40b3-96d9-db883f265e4d"    },    "m_Name": "Glossiness",    "m_DefaultRefNameVersion": 0,    "m_RefNameGeneratedByDisplayName": "",    "m_DefaultReferenceName": "Vector1_CBC7229C",    "m_OverrideReferenceName": "",    "m_GeneratePropertyBlock": true,    "m_UseCustomSlotLabel": false,    "m_CustomSlotLabel": "",    "m_DismissedVersion": 0,    "m_Precision": 0,    "overrideHLSLDeclaration": false,    "hlslDeclarationOverride": 0,    "m_Hidden": false,    "m_Priority": 10,    "m_Value": 0.5,    "m_FloatType": 1,    "m_RangeValues": {        "x": 0.0,        "y": 1.0    }}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",    "m_ObjectId": "07a0e7adc62d454f9c6c95ffd9c7f173",    "m_Id": 0,    "m_DisplayName": "Glossiness",    "m_SlotType": 0,    "m_Hidden": false,    "m_ShaderOutputName": "Glossiness",    "m_StageCapability": 2,    "m_Value": 0.5,    "m_DefaultValue": 0.5,    "m_Labels": []}{    "m_SGVersion": 2,    "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty",    "m_ObjectId": "07f9f64a824da482871b2523c3ad7601",    "m_Guid": {        "m_GuidSerialized": "622c20de-3d94-4a03-b3fe-55445ed9f465"    },    "m_Name": "Emission",    "m_DefaultRefNameVersion": 0,    "m_RefNameGeneratedByDisplayName": "",    "m_DefaultReferenceName": "Color_EC47A898",    "m_OverrideReferenceName": "",    "m_GeneratePropertyBlock": true,    "m_UseCustomSlotLabel": false,    "m_CustomSlotLabel": "",    "m_DismissedVersion": 0,    "m_Precision": 0,    "overrideHLSLDeclaration": false,    "hlslDeclarationOverride": 0,    "m_Hidden": false,    "m_Priority": 10,    "m_Value": {        "r": 0.0,        "g": 0.0,        "b": 0.0,        "a": 0.0    },    "isMainColor": false,    "m_ColorMode": 0}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",    "m_ObjectId": "09f86350e2bfa18dab411e3efbf520d3",    "m_Id": 0,    "m_DisplayName": "Rim Color",    "m_SlotType": 1,    "m_Hidden": false,    "m_ShaderOutputName": "Out",    "m_StageCapability": 3,    "m_Value": {        "x": 0.0,        "y": 0.0,        "z": 0.0,        "w": 0.0    },    "m_DefaultValue": {        "x": 0.0,        "y": 0.0,        "z": 0.0,        "w": 0.0    },    "m_Labels": []}{    "m_SGVersion": 2,    "m_Type": "ShaderGraphEssentials.SGEUniversalCustomLitSubTarget",    "m_ObjectId": "17f1554b9049460f88ee45f7afda8229",    "m_NormalDropOffSpace": 0,    "m_BlendModePreserveSpecular": true}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.BlockNode",    "m_ObjectId": "193c8768f72146da810c89577ab90e81",    "m_Group": {        "m_Id": ""    },    "m_Name": "SurfaceDescription.CustomLightingData1",    "m_DrawState": {        "m_Expanded": true,        "m_Position": {            "serializedVersion": "2",            "x": 0.0,            "y": 0.0,            "width": 0.0,            "height": 0.0        }    },    "m_Slots": [        {            "m_Id": "b10e26e409b74134bdafc4b9cdb6d128"        }    ],    "synonyms": [],    "m_Precision": 0,    "m_PreviewExpanded": true,    "m_DismissedVersion": 0,    "m_PreviewMode": 0,    "m_CustomColors": {        "m_SerializableColors": []    },    "m_SerializedDescriptor": "SurfaceDescription.CustomLightingData1"}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.BlockNode",    "m_ObjectId": "1b1c8badea3a4d4895f05319b8e60e3f",    "m_Group": {        "m_Id": ""    },    "m_Name": "SurfaceDescription.Specular",    "m_DrawState": {        "m_Expanded": true,        "m_Position": {            "serializedVersion": "2",            "x": 0.0,            "y": 0.0,            "width": 0.0,            "height": 0.0        }    },    "m_Slots": [        {            "m_Id": "f6d5ee0ead2c452dbcdc2a3f5ae2a631"        }    ],    "synonyms": [],    "m_Precision": 0,    "m_PreviewExpanded": true,    "m_DismissedVersion": 0,    "m_PreviewMode": 0,    "m_CustomColors": {        "m_SerializableColors": []    },    "m_SerializedDescriptor": "SurfaceDescription.Specular"}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.BlockNode",    "m_ObjectId": "1d3291b1052c482c831bd813f8660b81",    "m_Group": {        "m_Id": ""    },    "m_Name": "SurfaceDescription.AlphaClipThreshold",    "m_DrawState": {        "m_Expanded": true,        "m_Position": {            "serializedVersion": "2",            "x": 0.0,            "y": 0.0,            "width": 0.0,            "height": 0.0        }    },    "m_Slots": [        {            "m_Id": "23b632d18926494498fca5de3e9343b4"        }    ],    "synonyms": [],    "m_Precision": 0,    "m_PreviewExpanded": true,    "m_DismissedVersion": 0,    "m_PreviewMode": 0,    "m_CustomColors": {        "m_SerializableColors": []    },    "m_SerializedDescriptor": "SurfaceDescription.AlphaClipThreshold"}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",    "m_ObjectId": "2354d44fec7ff783b4f700cfe3bbf9ff",    "m_Id": 0,    "m_DisplayName": "Emission",    "m_SlotType": 1,    "m_Hidden": false,    "m_ShaderOutputName": "Out",    "m_StageCapability": 3,    "m_Value": {        "x": 0.0,        "y": 0.0,        "z": 0.0,        "w": 0.0    },    "m_DefaultValue": {        "x": 0.0,        "y": 0.0,        "z": 0.0,        "w": 0.0    },    "m_Labels": []}{    "m_SGVersion": 1,    "m_Type": "ShaderGraphEssentials.SGEUniversalTarget",    "m_ObjectId": "238eacbd0f6f48a29f95d16a5722e040",    "m_ActiveSubTarget": {        "m_Id": "17f1554b9049460f88ee45f7afda8229"    },    "m_RenderType": 0,    "m_RenderQueue": 0,    "m_BlendMode": 0,    "m_AlphaClip": true,    "m_CastShadows": true,    "m_ReceiveShadows": true,    "m_SupportsLODCrossFade": false,    "m_CullMode": 2,    "m_ZWrite": 0,    "m_ZTest": 0,    "m_CustomEditorGUI": "",    "m_SupportVFX": false}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",    "m_ObjectId": "23b632d18926494498fca5de3e9343b4",    "m_Id": 0,    "m_DisplayName": "Alpha Clip Threshold",    "m_SlotType": 0,    "m_Hidden": false,    "m_ShaderOutputName": "AlphaClipThreshold",    "m_StageCapability": 2,    "m_Value": 0.5,    "m_DefaultValue": 0.5,    "m_Labels": []}{    "m_SGVersion": 1,    "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty",    "m_ObjectId": "250dd4c0046d7b83b0509ef30c343967",    "m_Guid": {        "m_GuidSerialized": "e183b714-b89a-4f64-b796-ad1025f563ad"    },    "m_Name": "Rim Threshold",    "m_DefaultRefNameVersion": 0,    "m_RefNameGeneratedByDisplayName": "",    "m_DefaultReferenceName": "Vector1_8C3F9606",    "m_OverrideReferenceName": "_RimThreshold",    "m_GeneratePropertyBlock": true,    "m_UseCustomSlotLabel": false,    "m_CustomSlotLabel": "",    "m_DismissedVersion": 0,    "m_Precision": 0,    "overrideHLSLDeclaration": false,    "hlslDeclarationOverride": 0,    "m_Hidden": false,    "m_Priority": 10,    "m_Value": 0.10000000149011612,    "m_FloatType": 1,    "m_RangeValues": {        "x": 0.0,        "y": 1.0    }}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.PropertyNode",    "m_ObjectId": "269848b5e52d4f818974f2ccae03b87a",    "m_Group": {        "m_Id": ""    },    "m_Name": "Property",    "m_DrawState": {        "m_Expanded": true,        "m_Position": {            "serializedVersion": "2",            "x": -420.99993896484377,            "y": -35.99999237060547,            "width": 94.0,            "height": 77.0        }    },    "m_Slots": [        {            "m_Id": "480ee54ebeb0838d9e85ff10df757093"        }    ],    "synonyms": [],    "m_Precision": 0,    "m_PreviewExpanded": true,    "m_DismissedVersion": 0,    "m_PreviewMode": 0,    "m_CustomColors": {        "m_SerializableColors": []    },    "m_Property": {        "m_Id": "c46d8e3d69d29083a96f6002dd89e4f9"    }}{    "m_SGVersion": 1,    "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty",    "m_ObjectId": "28ce354e69684780af2ae6f9f539ec6b",    "m_Guid": {        "m_GuidSerialized": "095d7be3-6669-408b-a8c8-28153cca8ba6"    },    "m_Name": "Rim Amount",    "m_DefaultRefNameVersion": 0,    "m_RefNameGeneratedByDisplayName": "",    "m_DefaultReferenceName": "Vector1_742B85AF",    "m_OverrideReferenceName": "_RimAmount",    "m_GeneratePropertyBlock": true,    "m_UseCustomSlotLabel": false,    "m_CustomSlotLabel": "",    "m_DismissedVersion": 0,    "m_Precision": 0,    "overrideHLSLDeclaration": false,    "hlslDeclarationOverride": 0,    "m_Hidden": false,    "m_Priority": 10,    "m_Value": 0.699999988079071,    "m_FloatType": 1,    "m_RangeValues": {        "x": 0.0,        "y": 1.0    }}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.PropertyNode",    "m_ObjectId": "2a8630028f296a81a1fc69c70e228afb",    "m_Group": {        "m_Id": ""    },    "m_Name": "Property",    "m_DrawState": {        "m_Expanded": true,        "m_Position": {            "serializedVersion": "2",            "x": -464.9999694824219,            "y": 574.0000610351563,            "width": 113.0,            "height": 77.00000762939453        }    },    "m_Slots": [        {            "m_Id": "df17aa8f5d39948db7f985dbdc44f925"        }    ],    "synonyms": [],    "m_Precision": 0,    "m_PreviewExpanded": true,    "m_DismissedVersion": 0,    "m_PreviewMode": 0,    "m_CustomColors": {        "m_SerializableColors": []    },    "m_Property": {        "m_Id": "28ce354e69684780af2ae6f9f539ec6b"    }}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot",    "m_ObjectId": "30c51211b7b14225973d76edb4e691fd",    "m_Id": 0,    "m_DisplayName": "Emission",    "m_SlotType": 0,    "m_Hidden": false,    "m_ShaderOutputName": "Emission",    "m_StageCapability": 2,    "m_Value": {        "x": 0.0,        "y": 0.0,        "z": 0.0    },    "m_DefaultValue": {        "x": 0.0,        "y": 0.0,        "z": 0.0    },    "m_Labels": [],    "m_ColorMode": 1,    "m_DefaultColor": {        "r": 0.0,        "g": 0.0,        "b": 0.0,        "a": 1.0    }}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",    "m_ObjectId": "30e72dcfec1bcb848ab470525c78841c",    "m_Id": 0,    "m_DisplayName": "Albedo",    "m_SlotType": 1,    "m_Hidden": false,    "m_ShaderOutputName": "Out",    "m_StageCapability": 3,    "m_Value": {        "x": 0.0,        "y": 0.0,        "z": 0.0,        "w": 0.0    },    "m_DefaultValue": {        "x": 0.0,        "y": 0.0,        "z": 0.0,        "w": 0.0    },    "m_Labels": []}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",    "m_ObjectId": "32fc938ae6f185828ad77854db671742",    "m_Id": -886669805,    "m_DisplayName": "In",    "m_SlotType": 0,    "m_Hidden": false,    "m_ShaderOutputName": "Color_7F68BF40",    "m_StageCapability": 3,    "m_Value": {        "x": 0.0,        "y": 0.0,        "z": 0.0,        "w": 0.0    },    "m_DefaultValue": {        "x": 0.0,        "y": 0.0,        "z": 0.0,        "w": 0.0    },    "m_Labels": []}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.BlockNode",    "m_ObjectId": "3b264145ad5c4e1dbf267143b322fa46",    "m_Group": {        "m_Id": ""    },    "m_Name": "SurfaceDescription.Glossiness",    "m_DrawState": {        "m_Expanded": true,        "m_Position": {            "serializedVersion": "2",            "x": 0.0,            "y": 0.0,            "width": 0.0,            "height": 0.0        }    },    "m_Slots": [        {            "m_Id": "07a0e7adc62d454f9c6c95ffd9c7f173"        }    ],    "synonyms": [],    "m_Precision": 0,    "m_PreviewExpanded": true,    "m_DismissedVersion": 0,    "m_PreviewMode": 0,    "m_CustomColors": {        "m_SerializableColors": []    },    "m_SerializedDescriptor": "SurfaceDescription.Glossiness"}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",    "m_ObjectId": "3b87d78bb30a278d8576b28bbf3ac984",    "m_Id": 4,    "m_DisplayName": "R",    "m_SlotType": 1,    "m_Hidden": false,    "m_ShaderOutputName": "R",    "m_StageCapability": 2,    "m_Value": 0.0,    "m_DefaultValue": 0.0,    "m_Labels": [        "X"    ]}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",    "m_ObjectId": "3da61725e8f5d38d9e1593f75896666b",    "m_Id": 4,    "m_DisplayName": "RGBA",    "m_SlotType": 1,    "m_Hidden": false,    "m_ShaderOutputName": "RGBA",    "m_StageCapability": 3,    "m_Value": {        "x": 0.0,        "y": 0.0,        "z": 0.0,        "w": 0.0    },    "m_DefaultValue": {        "x": 0.0,        "y": 0.0,        "z": 0.0,        "w": 0.0    },    "m_Labels": []}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",    "m_ObjectId": "40043ffc2efa338bb3557839d9dd8ec0",    "m_Id": 6,    "m_DisplayName": "RG",    "m_SlotType": 1,    "m_Hidden": false,    "m_ShaderOutputName": "RG",    "m_StageCapability": 3,    "m_Value": {        "x": 0.0,        "y": 0.0    },    "m_DefaultValue": {        "x": 0.0,        "y": 0.0    },    "m_Labels": [        "X",        "Y"    ]}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.CombineNode",    "m_ObjectId": "4105d84d015b748f8dca09a21effa949",    "m_Group": {        "m_Id": ""    },    "m_Name": "Combine",    "m_DrawState": {        "m_Expanded": true,        "m_Position": {            "serializedVersion": "2",            "x": -177.99996948242188,            "y": 543.0,            "width": 208.00003051757813,            "height": 350.00006103515627        }    },    "m_Slots": [        {            "m_Id": "6e8d20389857088cae91536f9a6a1af4"        },        {            "m_Id": "c193ee58a42e38869e95c900575fa60f"        },        {            "m_Id": "b2dd819fdf43bd8a8f870a60f63164c7"        },        {            "m_Id": "4a3231101c336089b65918533439cc8c"        },        {            "m_Id": "3da61725e8f5d38d9e1593f75896666b"        },        {            "m_Id": "86ecf0263198ba899cf03209694cc5e3"        },        {            "m_Id": "40043ffc2efa338bb3557839d9dd8ec0"        }    ],    "synonyms": [        "append"    ],    "m_Precision": 0,    "m_PreviewExpanded": true,    "m_DismissedVersion": 0,    "m_PreviewMode": 0,    "m_CustomColors": {        "m_SerializableColors": []    }}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.BlockNode",    "m_ObjectId": "47c2119c85104efaa7c00462370b9d48",    "m_Group": {        "m_Id": ""    },    "m_Name": "VertexDescription.Tangent",    "m_DrawState": {        "m_Expanded": true,        "m_Position": {            "serializedVersion": "2",            "x": 0.0,            "y": 0.0,            "width": 0.0,            "height": 0.0        }    },    "m_Slots": [        {            "m_Id": "b5d563e2788841479570d41b060ef900"        }    ],    "synonyms": [],    "m_Precision": 0,    "m_PreviewExpanded": true,    "m_DismissedVersion": 0,    "m_PreviewMode": 0,    "m_CustomColors": {        "m_SerializableColors": []    },    "m_SerializedDescriptor": "VertexDescription.Tangent"}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",    "m_ObjectId": "480ee54ebeb0838d9e85ff10df757093",    "m_Id": 0,    "m_DisplayName": "Specular",    "m_SlotType": 1,    "m_Hidden": false,    "m_ShaderOutputName": "Out",    "m_StageCapability": 3,    "m_Value": {        "x": 0.0,        "y": 0.0,        "z": 0.0,        "w": 0.0    },    "m_DefaultValue": {        "x": 0.0,        "y": 0.0,        "z": 0.0,        "w": 0.0    },    "m_Labels": []}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",    "m_ObjectId": "4a3231101c336089b65918533439cc8c",    "m_Id": 3,    "m_DisplayName": "A",    "m_SlotType": 0,    "m_Hidden": false,    "m_ShaderOutputName": "A",    "m_StageCapability": 3,    "m_Value": 0.0,    "m_DefaultValue": 0.0,    "m_Labels": [        "X"    ]}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot",    "m_ObjectId": "4a823e3a1181818ca70490a153e8d913",    "m_Id": 1,    "m_DisplayName": "Texture",    "m_SlotType": 0,    "m_Hidden": false,    "m_ShaderOutputName": "Texture",    "m_StageCapability": 3,    "m_BareResource": false,    "m_Texture": {        "m_SerializedTexture": "",        "m_Guid": ""    },    "m_DefaultType": 3}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",    "m_ObjectId": "4eaca25e91dd425babb20d93dd4c2ebb",    "m_Id": 0,    "m_DisplayName": "Shininess",    "m_SlotType": 0,    "m_Hidden": false,    "m_ShaderOutputName": "Shininess",    "m_StageCapability": 2,    "m_Value": 0.5,    "m_DefaultValue": 0.5,    "m_Labels": []}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.BlockNode",    "m_ObjectId": "525f7efb02f4416bb9fe10f84bfaf0e7",    "m_Group": {        "m_Id": ""    },    "m_Name": "SurfaceDescription.Alpha",    "m_DrawState": {        "m_Expanded": true,        "m_Position": {            "serializedVersion": "2",            "x": 0.0,            "y": 0.0,            "width": 0.0,            "height": 0.0        }    },    "m_Slots": [        {            "m_Id": "52d515c7c0b3489da590b89f4ecc74a5"        }    ],    "synonyms": [],    "m_Precision": 0,    "m_PreviewExpanded": true,    "m_DismissedVersion": 0,    "m_PreviewMode": 0,    "m_CustomColors": {        "m_SerializableColors": []    },    "m_SerializedDescriptor": "SurfaceDescription.Alpha"}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",    "m_ObjectId": "52d515c7c0b3489da590b89f4ecc74a5",    "m_Id": 0,    "m_DisplayName": "Alpha",    "m_SlotType": 0,    "m_Hidden": false,    "m_ShaderOutputName": "Alpha",    "m_StageCapability": 2,    "m_Value": 1.0,    "m_DefaultValue": 1.0,    "m_Labels": []}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty",    "m_ObjectId": "5330837b31ec6e81bd1399d4005199ef",    "m_Guid": {        "m_GuidSerialized": "3df785db-277e-4a71-bee3-66bf070f73a8"    },    "m_Name": "NormalMap",    "m_DefaultRefNameVersion": 0,    "m_RefNameGeneratedByDisplayName": "",    "m_DefaultReferenceName": "Texture2D_2DDA21D9",    "m_OverrideReferenceName": "",    "m_GeneratePropertyBlock": true,    "m_UseCustomSlotLabel": false,    "m_CustomSlotLabel": "",    "m_DismissedVersion": 0,    "m_Precision": 0,    "overrideHLSLDeclaration": false,    "hlslDeclarationOverride": 0,    "m_Hidden": false,    "m_Priority": 10,    "m_Value": {        "m_SerializedTexture": "",        "m_Guid": ""    },    "isMainTexture": false,    "useTilingAndOffset": false,    "m_Modifiable": true,    "m_DefaultType": 3}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot",    "m_ObjectId": "57e05e2c82884aa5a62141f66daffa9b",    "m_Id": 0,    "m_DisplayName": "Normal (Tangent Space)",    "m_SlotType": 0,    "m_Hidden": false,    "m_ShaderOutputName": "NormalTS",    "m_StageCapability": 2,    "m_Value": {        "x": 0.0,        "y": 0.0,        "z": 0.0    },    "m_DefaultValue": {        "x": 0.0,        "y": 0.0,        "z": 0.0    },    "m_Labels": [],    "m_Space": 3}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.BlockNode",    "m_ObjectId": "59b55acfd7824759b3735f683ea3c80c",    "m_Group": {        "m_Id": ""    },    "m_Name": "SurfaceDescription.CustomLightingData2",    "m_DrawState": {        "m_Expanded": true,        "m_Position": {            "serializedVersion": "2",            "x": 0.0,            "y": 0.0,            "width": 0.0,            "height": 0.0        }    },    "m_Slots": [        {            "m_Id": "9059aca2e45b4eb988e52cf7d522193a"        }    ],    "synonyms": [],    "m_Precision": 0,    "m_PreviewExpanded": true,    "m_DismissedVersion": 0,    "m_PreviewMode": 0,    "m_CustomColors": {        "m_SerializableColors": []    },    "m_SerializedDescriptor": "SurfaceDescription.CustomLightingData2"}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",    "m_ObjectId": "5dc340df3c12e489a6175c229a6ecc39",    "m_Id": 5,    "m_DisplayName": "G",    "m_SlotType": 1,    "m_Hidden": false,    "m_ShaderOutputName": "G",    "m_StageCapability": 2,    "m_Value": 0.0,    "m_DefaultValue": 0.0,    "m_Labels": [        "X"    ]}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.BlockNode",    "m_ObjectId": "5f76946eb29346c9867889bceaa91ae5",    "m_Group": {        "m_Id": ""    },    "m_Name": "VertexDescription.Position",    "m_DrawState": {        "m_Expanded": true,        "m_Position": {            "serializedVersion": "2",            "x": 0.0,            "y": 0.0,            "width": 0.0,            "height": 0.0        }    },    "m_Slots": [        {            "m_Id": "fa4b78aad3974c2b88b980d4c8a0ebcb"        }    ],    "synonyms": [],    "m_Precision": 0,    "m_PreviewExpanded": true,    "m_DismissedVersion": 0,    "m_PreviewMode": 0,    "m_CustomColors": {        "m_SerializableColors": []    },    "m_SerializedDescriptor": "VertexDescription.Position"}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.BlockNode",    "m_ObjectId": "66dbd2d0aac94662a70c14e13597e76e",    "m_Group": {        "m_Id": ""    },    "m_Name": "VertexDescription.Normal",    "m_DrawState": {        "m_Expanded": true,        "m_Position": {            "serializedVersion": "2",            "x": 0.0,            "y": 0.0,            "width": 0.0,            "height": 0.0        }    },    "m_Slots": [        {            "m_Id": "dbf5986f458a4d129dc829eccf65a770"        }    ],    "synonyms": [],    "m_Precision": 0,    "m_PreviewExpanded": true,    "m_DismissedVersion": 0,    "m_PreviewMode": 0,    "m_CustomColors": {        "m_SerializableColors": []    },    "m_SerializedDescriptor": "VertexDescription.Normal"}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.BlockNode",    "m_ObjectId": "69c37c4207d94dee95fae359bf653132",    "m_Group": {        "m_Id": ""    },    "m_Name": "SurfaceDescription.Shininess",    "m_DrawState": {        "m_Expanded": true,        "m_Position": {            "serializedVersion": "2",            "x": 0.0,            "y": 0.0,            "width": 0.0,            "height": 0.0        }    },    "m_Slots": [        {            "m_Id": "4eaca25e91dd425babb20d93dd4c2ebb"        }    ],    "synonyms": [],    "m_Precision": 0,    "m_PreviewExpanded": true,    "m_DismissedVersion": 0,    "m_PreviewMode": 0,    "m_CustomColors": {        "m_SerializableColors": []    },    "m_SerializedDescriptor": "SurfaceDescription.Shininess"}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",    "m_ObjectId": "6e8d20389857088cae91536f9a6a1af4",    "m_Id": 0,    "m_DisplayName": "R",    "m_SlotType": 0,    "m_Hidden": false,    "m_ShaderOutputName": "R",    "m_StageCapability": 3,    "m_Value": 0.0,    "m_DefaultValue": 0.0,    "m_Labels": [        "X"    ]}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.PropertyNode",    "m_ObjectId": "74a9e0db68f63c80a94e963c1e32786f",    "m_Group": {        "m_Id": ""    },    "m_Name": "Property",    "m_DrawState": {        "m_Expanded": true,        "m_Position": {            "serializedVersion": "2",            "x": -11.999918937683106,            "y": -521.9999389648438,            "width": 91.0,            "height": 77.0        }    },    "m_Slots": [        {            "m_Id": "30e72dcfec1bcb848ab470525c78841c"        }    ],    "synonyms": [],    "m_Precision": 0,    "m_PreviewExpanded": true,    "m_DismissedVersion": 0,    "m_PreviewMode": 0,    "m_CustomColors": {        "m_SerializableColors": []    },    "m_Property": {        "m_Id": "0145a3d4f3d63889a8ec1061330cc045"    }}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot",    "m_ObjectId": "79070e48fe57bc8bbe7b4f23040484f3",    "m_Id": 3,    "m_DisplayName": "Sampler",    "m_SlotType": 0,    "m_Hidden": false,    "m_ShaderOutputName": "Sampler",    "m_StageCapability": 3,    "m_BareResource": false}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",    "m_ObjectId": "7dc1ba801c45c38f9aa0fb36ba977c79",    "m_Id": 0,    "m_DisplayName": "Alpha",    "m_SlotType": 1,    "m_Hidden": false,    "m_ShaderOutputName": "Out",    "m_StageCapability": 3,    "m_Value": 0.0,    "m_DefaultValue": 0.0,    "m_Labels": [        "X"    ]}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot",    "m_ObjectId": "8123422c617e45bebafbf217014a9eb3",    "m_Id": 0,    "m_DisplayName": "Base Color",    "m_SlotType": 0,    "m_Hidden": false,    "m_ShaderOutputName": "BaseColor",    "m_StageCapability": 2,    "m_Value": {        "x": 1.0,        "y": 0.1745283007621765,        "z": 0.1745283007621765    },    "m_DefaultValue": {        "x": 0.0,        "y": 0.0,        "z": 0.0    },    "m_Labels": [],    "m_ColorMode": 0,    "m_DefaultColor": {        "r": 0.5,        "g": 0.5,        "b": 0.5,        "a": 1.0    }}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",    "m_ObjectId": "864e9d08821c018688510ed582137ab1",    "m_Id": 6,    "m_DisplayName": "B",    "m_SlotType": 1,    "m_Hidden": false,    "m_ShaderOutputName": "B",    "m_StageCapability": 2,    "m_Value": 0.0,    "m_DefaultValue": 0.0,    "m_Labels": [        "X"    ]}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",    "m_ObjectId": "86ecf0263198ba899cf03209694cc5e3",    "m_Id": 5,    "m_DisplayName": "RGB",    "m_SlotType": 1,    "m_Hidden": false,    "m_ShaderOutputName": "RGB",    "m_StageCapability": 3,    "m_Value": {        "x": 0.0,        "y": 0.0,        "z": 0.0    },    "m_DefaultValue": {        "x": 0.0,        "y": 0.0,        "z": 0.0    },    "m_Labels": [        "X",        "Y",        "Z"    ]}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.PropertyNode",    "m_ObjectId": "8b176309b398a982bf3ca3c88b4565cd",    "m_Group": {        "m_Id": ""    },    "m_Name": "Property",    "m_DrawState": {        "m_Expanded": true,        "m_Position": {            "serializedVersion": "2",            "x": -457.9999084472656,            "y": 301.0,            "width": 91.0,            "height": 77.0        }    },    "m_Slots": [        {            "m_Id": "7dc1ba801c45c38f9aa0fb36ba977c79"        }    ],    "synonyms": [],    "m_Precision": 0,    "m_PreviewExpanded": true,    "m_DismissedVersion": 0,    "m_PreviewMode": 0,    "m_CustomColors": {        "m_SerializableColors": []    },    "m_Property": {        "m_Id": "c5f51481ebaea38b9c6ae5183d464ea4"    }}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.ColorRGBAMaterialSlot",    "m_ObjectId": "9059aca2e45b4eb988e52cf7d522193a",    "m_Id": 0,    "m_DisplayName": "Custom Lighting Data 2",    "m_SlotType": 0,    "m_Hidden": false,    "m_ShaderOutputName": "CustomLightingData2",    "m_StageCapability": 2,    "m_Value": {        "x": 0.0,        "y": 0.0,        "z": 0.0,        "w": 0.0    },    "m_DefaultValue": {        "x": 0.0,        "y": 0.0,        "z": 0.0,        "w": 0.0    },    "m_Labels": []}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.CategoryData",    "m_ObjectId": "95896ed63557475a817eb30bb011406e",    "m_Name": "",    "m_ChildObjectList": [        {            "m_Id": "0145a3d4f3d63889a8ec1061330cc045"        },        {            "m_Id": "5330837b31ec6e81bd1399d4005199ef"        },        {            "m_Id": "c46d8e3d69d29083a96f6002dd89e4f9"        },        {            "m_Id": "cd1abbd845e40a8dbadfa753bc5d882a"        },        {            "m_Id": "05c5082e8337eb83a933f80a43d488ec"        },        {            "m_Id": "07f9f64a824da482871b2523c3ad7601"        },        {            "m_Id": "c5f51481ebaea38b9c6ae5183d464ea4"        },        {            "m_Id": "b8984fe0fcde7e828170544b97a9bfae"        },        {            "m_Id": "28ce354e69684780af2ae6f9f539ec6b"        },        {            "m_Id": "250dd4c0046d7b83b0509ef30c343967"        }    ]}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.BlockNode",    "m_ObjectId": "978295121d3d4754b82ebee69d170f8f",    "m_Group": {        "m_Id": ""    },    "m_Name": "SurfaceDescription.BaseColor",    "m_DrawState": {        "m_Expanded": true,        "m_Position": {            "serializedVersion": "2",            "x": 406.0,            "y": 262.0,            "width": 200.0,            "height": 40.999969482421878        }    },    "m_Slots": [        {            "m_Id": "8123422c617e45bebafbf217014a9eb3"        }    ],    "synonyms": [],    "m_Precision": 0,    "m_PreviewExpanded": true,    "m_DismissedVersion": 0,    "m_PreviewMode": 0,    "m_CustomColors": {        "m_SerializableColors": []    },    "m_SerializedDescriptor": "SurfaceDescription.BaseColor"}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.PropertyNode",    "m_ObjectId": "9f86bb961939a48781a21b50d0af7067",    "m_Group": {        "m_Id": ""    },    "m_Name": "Property",    "m_DrawState": {        "m_Expanded": true,        "m_Position": {            "serializedVersion": "2",            "x": -683.9999389648438,            "y": -501.9999694824219,            "width": 116.0,            "height": 77.0        }    },    "m_Slots": [        {            "m_Id": "dea86f0cbe483b87935e1643c47c262b"        }    ],    "synonyms": [],    "m_Precision": 0,    "m_PreviewExpanded": true,    "m_DismissedVersion": 0,    "m_PreviewMode": 0,    "m_CustomColors": {        "m_SerializableColors": []    },    "m_Property": {        "m_Id": "5330837b31ec6e81bd1399d4005199ef"    }}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.PropertyNode",    "m_ObjectId": "ac49a0ddd1bfe18784b327c37494af49",    "m_Group": {        "m_Id": ""    },    "m_Name": "Property",    "m_DrawState": {        "m_Expanded": true,        "m_Position": {            "serializedVersion": "2",            "x": -446.9999694824219,            "y": 392.00006103515627,            "width": 101.0,            "height": 77.00000762939453        }    },    "m_Slots": [        {            "m_Id": "09f86350e2bfa18dab411e3efbf520d3"        }    ],    "synonyms": [],    "m_Precision": 0,    "m_PreviewExpanded": true,    "m_DismissedVersion": 0,    "m_PreviewMode": 0,    "m_CustomColors": {        "m_SerializableColors": []    },    "m_Property": {        "m_Id": "b8984fe0fcde7e828170544b97a9bfae"    }}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.PropertyNode",    "m_ObjectId": "b0168b8b4763b78db8fbf26a22800b84",    "m_Group": {        "m_Id": ""    },    "m_Name": "Property",    "m_DrawState": {        "m_Expanded": true,        "m_Position": {            "serializedVersion": "2",            "x": -429.9999084472656,            "y": 54.999996185302737,            "width": 97.99999237060547,            "height": 77.0        }    },    "m_Slots": [        {            "m_Id": "d228e4ef5ae7718d9de1e819cf0517bc"        }    ],    "synonyms": [],    "m_Precision": 0,    "m_PreviewExpanded": true,    "m_DismissedVersion": 0,    "m_PreviewMode": 0,    "m_CustomColors": {        "m_SerializableColors": []    },    "m_Property": {        "m_Id": "cd1abbd845e40a8dbadfa753bc5d882a"    }}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.ColorRGBAMaterialSlot",    "m_ObjectId": "b10e26e409b74134bdafc4b9cdb6d128",    "m_Id": 0,    "m_DisplayName": "Custom Lighting Data 1",    "m_SlotType": 0,    "m_Hidden": false,    "m_ShaderOutputName": "CustomLightingData1",    "m_StageCapability": 2,    "m_Value": {        "x": 0.0,        "y": 0.0,        "z": 0.0,        "w": 0.0    },    "m_DefaultValue": {        "x": 0.0,        "y": 0.0,        "z": 0.0,        "w": 0.0    },    "m_Labels": []}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",    "m_ObjectId": "b2dd819fdf43bd8a8f870a60f63164c7",    "m_Id": 2,    "m_DisplayName": "B",    "m_SlotType": 0,    "m_Hidden": false,    "m_ShaderOutputName": "B",    "m_StageCapability": 3,    "m_Value": 0.0,    "m_DefaultValue": 0.0,    "m_Labels": [        "X"    ]}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.TangentMaterialSlot",    "m_ObjectId": "b5d563e2788841479570d41b060ef900",    "m_Id": 0,    "m_DisplayName": "Tangent",    "m_SlotType": 0,    "m_Hidden": false,    "m_ShaderOutputName": "Tangent",    "m_StageCapability": 1,    "m_Value": {        "x": 0.0,        "y": 0.0,        "z": 0.0    },    "m_DefaultValue": {        "x": 0.0,        "y": 0.0,        "z": 0.0    },    "m_Labels": [],    "m_Space": 0}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode",    "m_ObjectId": "b80731f1b22b9980abd19de99c310b25",    "m_Group": {        "m_Id": ""    },    "m_Name": "Sample Texture 2D",    "m_DrawState": {        "m_Expanded": true,        "m_Position": {            "serializedVersion": "2",            "x": -453.99993896484377,            "y": -490.9999694824219,            "width": 208.0,            "height": 436.9999694824219        }    },    "m_Slots": [        {            "m_Id": "f2690382a7eccd80a4b677d90260209e"        },        {            "m_Id": "3b87d78bb30a278d8576b28bbf3ac984"        },        {            "m_Id": "5dc340df3c12e489a6175c229a6ecc39"        },        {            "m_Id": "864e9d08821c018688510ed582137ab1"        },        {            "m_Id": "e93a9b7fbf91c786ba5cd1bf0673806d"        },        {            "m_Id": "4a823e3a1181818ca70490a153e8d913"        },        {            "m_Id": "caebf1b8efceb28c8fb8becda82fc7db"        },        {            "m_Id": "79070e48fe57bc8bbe7b4f23040484f3"        }    ],    "synonyms": [        "tex2d"    ],    "m_Precision": 0,    "m_PreviewExpanded": true,    "m_DismissedVersion": 0,    "m_PreviewMode": 0,    "m_CustomColors": {        "m_SerializableColors": []    },    "m_TextureType": 1,    "m_NormalMapSpace": 0,    "m_EnableGlobalMipBias": true,    "m_MipSamplingMode": 0}{    "m_SGVersion": 2,    "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty",    "m_ObjectId": "b8984fe0fcde7e828170544b97a9bfae",    "m_Guid": {        "m_GuidSerialized": "13abbbda-9ca7-4b9f-95fe-17299d3e068a"    },    "m_Name": "Rim Color",    "m_DefaultRefNameVersion": 0,    "m_RefNameGeneratedByDisplayName": "",    "m_DefaultReferenceName": "Color_52EB46DE",    "m_OverrideReferenceName": "_RimColor",    "m_GeneratePropertyBlock": true,    "m_UseCustomSlotLabel": false,    "m_CustomSlotLabel": "",    "m_DismissedVersion": 0,    "m_Precision": 0,    "overrideHLSLDeclaration": false,    "hlslDeclarationOverride": 0,    "m_Hidden": false,    "m_Priority": 10,    "m_Value": {        "r": 0.501960813999176,        "g": 0.6509804129600525,        "b": 1.0,        "a": 0.0    },    "isMainColor": false,    "m_ColorMode": 0}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",    "m_ObjectId": "b9335093b8604b829397c22a66d79890",    "m_Id": 0,    "m_DisplayName": "Glossiness",    "m_SlotType": 1,    "m_Hidden": false,    "m_ShaderOutputName": "Out",    "m_StageCapability": 3,    "m_Value": 0.0,    "m_DefaultValue": 0.0,    "m_Labels": [        "X"    ]}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",    "m_ObjectId": "c193ee58a42e38869e95c900575fa60f",    "m_Id": 1,    "m_DisplayName": "G",    "m_SlotType": 0,    "m_Hidden": false,    "m_ShaderOutputName": "G",    "m_StageCapability": 3,    "m_Value": 0.0,    "m_DefaultValue": 0.0,    "m_Labels": [        "X"    ]}{    "m_SGVersion": 2,    "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty",    "m_ObjectId": "c46d8e3d69d29083a96f6002dd89e4f9",    "m_Guid": {        "m_GuidSerialized": "028dd8e0-f21c-4e8b-9a54-2a3e7a777a6c"    },    "m_Name": "Specular",    "m_DefaultRefNameVersion": 0,    "m_RefNameGeneratedByDisplayName": "",    "m_DefaultReferenceName": "Color_FE945288",    "m_OverrideReferenceName": "",    "m_GeneratePropertyBlock": true,    "m_UseCustomSlotLabel": false,    "m_CustomSlotLabel": "",    "m_DismissedVersion": 0,    "m_Precision": 0,    "overrideHLSLDeclaration": false,    "hlslDeclarationOverride": 0,    "m_Hidden": false,    "m_Priority": 10,    "m_Value": {        "r": 0.501960813999176,        "g": 0.6509804129600525,        "b": 1.0,        "a": 0.0    },    "isMainColor": false,    "m_ColorMode": 0}{    "m_SGVersion": 1,    "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty",    "m_ObjectId": "c5f51481ebaea38b9c6ae5183d464ea4",    "m_Guid": {        "m_GuidSerialized": "98d47365-2482-413b-83d0-d1c760398b61"    },    "m_Name": "Alpha",    "m_DefaultRefNameVersion": 0,    "m_RefNameGeneratedByDisplayName": "",    "m_DefaultReferenceName": "Vector1_F49494B7",    "m_OverrideReferenceName": "",    "m_GeneratePropertyBlock": true,    "m_UseCustomSlotLabel": false,    "m_CustomSlotLabel": "",    "m_DismissedVersion": 0,    "m_Precision": 0,    "overrideHLSLDeclaration": false,    "hlslDeclarationOverride": 0,    "m_Hidden": false,    "m_Priority": 10,    "m_Value": 1.0,    "m_FloatType": 0,    "m_RangeValues": {        "x": 0.0,        "y": 1.0    }}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot",    "m_ObjectId": "caebf1b8efceb28c8fb8becda82fc7db",    "m_Id": 2,    "m_DisplayName": "UV",    "m_SlotType": 0,    "m_Hidden": false,    "m_ShaderOutputName": "UV",    "m_StageCapability": 3,    "m_Value": {        "x": 0.0,        "y": 0.0    },    "m_DefaultValue": {        "x": 0.0,        "y": 0.0    },    "m_Labels": [        "X",        "Y"    ],    "m_Channel": 0}{    "m_SGVersion": 1,    "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty",    "m_ObjectId": "cd1abbd845e40a8dbadfa753bc5d882a",    "m_Guid": {        "m_GuidSerialized": "cc1c2d4e-30b4-45f7-af6f-168ce5b99a5e"    },    "m_Name": "Shininess",    "m_DefaultRefNameVersion": 0,    "m_RefNameGeneratedByDisplayName": "",    "m_DefaultReferenceName": "Vector1_36C2D970",    "m_OverrideReferenceName": "",    "m_GeneratePropertyBlock": true,    "m_UseCustomSlotLabel": false,    "m_CustomSlotLabel": "",    "m_DismissedVersion": 0,    "m_Precision": 0,    "overrideHLSLDeclaration": false,    "hlslDeclarationOverride": 0,    "m_Hidden": false,    "m_Priority": 10,    "m_Value": 1.0,    "m_FloatType": 0,    "m_RangeValues": {        "x": 0.0,        "y": 1.0    }}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",    "m_ObjectId": "d228e4ef5ae7718d9de1e819cf0517bc",    "m_Id": 0,    "m_DisplayName": "Shininess",    "m_SlotType": 1,    "m_Hidden": false,    "m_ShaderOutputName": "Out",    "m_StageCapability": 3,    "m_Value": 0.0,    "m_DefaultValue": 0.0,    "m_Labels": [        "X"    ]}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",    "m_ObjectId": "dad0015409eee88d830936d1c3e610bc",    "m_Id": 0,    "m_DisplayName": "Rim Threshold",    "m_SlotType": 1,    "m_Hidden": false,    "m_ShaderOutputName": "Out",    "m_StageCapability": 3,    "m_Value": 0.0,    "m_DefaultValue": 0.0,    "m_Labels": [        "X"    ]}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot",    "m_ObjectId": "dbf5986f458a4d129dc829eccf65a770",    "m_Id": 0,    "m_DisplayName": "Normal",    "m_SlotType": 0,    "m_Hidden": false,    "m_ShaderOutputName": "Normal",    "m_StageCapability": 1,    "m_Value": {        "x": 0.0,        "y": 0.0,        "z": 0.0    },    "m_DefaultValue": {        "x": 0.0,        "y": 0.0,        "z": 0.0    },    "m_Labels": [],    "m_Space": 0}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot",    "m_ObjectId": "dea86f0cbe483b87935e1643c47c262b",    "m_Id": 0,    "m_DisplayName": "NormalMap",    "m_SlotType": 1,    "m_Hidden": false,    "m_ShaderOutputName": "Out",    "m_StageCapability": 3,    "m_BareResource": false}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",    "m_ObjectId": "df17aa8f5d39948db7f985dbdc44f925",    "m_Id": 0,    "m_DisplayName": "Rim Amount",    "m_SlotType": 1,    "m_Hidden": false,    "m_ShaderOutputName": "Out",    "m_StageCapability": 3,    "m_Value": 0.0,    "m_DefaultValue": 0.0,    "m_Labels": [        "X"    ]}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.BlockNode",    "m_ObjectId": "df2a5b42444b41019f62ba20acbd9a7d",    "m_Group": {        "m_Id": ""    },    "m_Name": "SurfaceDescription.NormalTS",    "m_DrawState": {        "m_Expanded": true,        "m_Position": {            "serializedVersion": "2",            "x": 0.0,            "y": 0.0,            "width": 0.0,            "height": 0.0        }    },    "m_Slots": [        {            "m_Id": "57e05e2c82884aa5a62141f66daffa9b"        }    ],    "synonyms": [],    "m_Precision": 0,    "m_PreviewExpanded": true,    "m_DismissedVersion": 0,    "m_PreviewMode": 0,    "m_CustomColors": {        "m_SerializableColors": []    },    "m_SerializedDescriptor": "SurfaceDescription.NormalTS"}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.PropertyNode",    "m_ObjectId": "e592fb8b0f47088288343b5a170ce1c0",    "m_Group": {        "m_Id": ""    },    "m_Name": "Property",    "m_DrawState": {        "m_Expanded": true,        "m_Position": {            "serializedVersion": "2",            "x": -463.9999694824219,            "y": 489.00006103515627,            "width": 122.00000762939453,            "height": 77.00000762939453        }    },    "m_Slots": [        {            "m_Id": "dad0015409eee88d830936d1c3e610bc"        }    ],    "synonyms": [],    "m_Precision": 0,    "m_PreviewExpanded": true,    "m_DismissedVersion": 0,    "m_PreviewMode": 0,    "m_CustomColors": {        "m_SerializableColors": []    },    "m_Property": {        "m_Id": "250dd4c0046d7b83b0509ef30c343967"    }}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",    "m_ObjectId": "e93a9b7fbf91c786ba5cd1bf0673806d",    "m_Id": 7,    "m_DisplayName": "A",    "m_SlotType": 1,    "m_Hidden": false,    "m_ShaderOutputName": "A",    "m_StageCapability": 2,    "m_Value": 0.0,    "m_DefaultValue": 0.0,    "m_Labels": [        "X"    ]}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",    "m_ObjectId": "ea1e726dfbe2598ab964fc9ef241b230",    "m_Id": 0,    "m_DisplayName": "Out",    "m_SlotType": 1,    "m_Hidden": false,    "m_ShaderOutputName": "Out",    "m_StageCapability": 3,    "m_Value": {        "x": 0.0,        "y": 0.0,        "z": 0.0,        "w": 0.0    },    "m_DefaultValue": {        "x": 0.0,        "y": 0.0,        "z": 0.0,        "w": 0.0    },    "m_Labels": []}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.PropertyNode",    "m_ObjectId": "eabc691f9e3a488d8b2cdbf3ab55e9c9",    "m_Group": {        "m_Id": ""    },    "m_Name": "Property",    "m_DrawState": {        "m_Expanded": true,        "m_Position": {            "serializedVersion": "2",            "x": -440.99993896484377,            "y": 142.00003051757813,            "width": 104.0,            "height": 77.0        }    },    "m_Slots": [        {            "m_Id": "b9335093b8604b829397c22a66d79890"        }    ],    "synonyms": [],    "m_Precision": 0,    "m_PreviewExpanded": true,    "m_DismissedVersion": 0,    "m_PreviewMode": 0,    "m_CustomColors": {        "m_SerializableColors": []    },    "m_Property": {        "m_Id": "05c5082e8337eb83a933f80a43d488ec"    }}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",    "m_ObjectId": "f2690382a7eccd80a4b677d90260209e",    "m_Id": 0,    "m_DisplayName": "RGBA",    "m_SlotType": 1,    "m_Hidden": false,    "m_ShaderOutputName": "RGBA",    "m_StageCapability": 2,    "m_Value": {        "x": 0.0,        "y": 0.0,        "z": 0.0,        "w": 0.0    },    "m_DefaultValue": {        "x": 0.0,        "y": 0.0,        "z": 0.0,        "w": 0.0    },    "m_Labels": []}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.BlockNode",    "m_ObjectId": "f5378d288b5e4307a5f8091a395eb091",    "m_Group": {        "m_Id": ""    },    "m_Name": "SurfaceDescription.Emission",    "m_DrawState": {        "m_Expanded": true,        "m_Position": {            "serializedVersion": "2",            "x": 0.0,            "y": 0.0,            "width": 0.0,            "height": 0.0        }    },    "m_Slots": [        {            "m_Id": "30c51211b7b14225973d76edb4e691fd"        }    ],    "synonyms": [],    "m_Precision": 0,    "m_PreviewExpanded": true,    "m_DismissedVersion": 0,    "m_PreviewMode": 0,    "m_CustomColors": {        "m_SerializableColors": []    },    "m_SerializedDescriptor": "SurfaceDescription.Emission"}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot",    "m_ObjectId": "f6d5ee0ead2c452dbcdc2a3f5ae2a631",    "m_Id": 0,    "m_DisplayName": "Specular Color",    "m_SlotType": 0,    "m_Hidden": false,    "m_ShaderOutputName": "Specular",    "m_StageCapability": 2,    "m_Value": {        "x": 0.5,        "y": 0.5,        "z": 0.5    },    "m_DefaultValue": {        "x": 0.0,        "y": 0.0,        "z": 0.0    },    "m_Labels": [],    "m_ColorMode": 0,    "m_DefaultColor": {        "r": 0.5,        "g": 0.5,        "b": 0.5,        "a": 1.0    }}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.SubGraphNode",    "m_ObjectId": "f74718f3a982dc8c9b824e2e4aab8f20",    "m_Group": {        "m_Id": ""    },    "m_Name": "SGE_ToonLightingGraph",    "m_DrawState": {        "m_Expanded": true,        "m_Position": {            "serializedVersion": "2",            "x": 157.0,            "y": -458.0000305175781,            "width": 208.00003051757813,            "height": 279.00006103515627        }    },    "m_Slots": [        {            "m_Id": "32fc938ae6f185828ad77854db671742"        },        {            "m_Id": "ea1e726dfbe2598ab964fc9ef241b230"        }    ],    "synonyms": [],    "m_Precision": 0,    "m_PreviewExpanded": true,    "m_DismissedVersion": 0,    "m_PreviewMode": 0,    "m_CustomColors": {        "m_SerializableColors": []    },    "m_SerializedSubGraph": "{\n    \"subGraph\": {\n        \"fileID\": -5475051401550479605,\n        \"guid\": \"6337eca519414104d9d986295bab4f23\",\n        \"type\": 3\n    }\n}",    "m_PropertyGuids": [        "538a3f01-d4ac-417b-8e27-4c20f20af569"    ],    "m_PropertyIds": [        -886669805    ],    "m_Dropdowns": [],    "m_DropdownSelectedEntries": []}{    "m_SGVersion": 0,    "m_Type": "UnityEditor.ShaderGraph.PositionMaterialSlot",    "m_ObjectId": "fa4b78aad3974c2b88b980d4c8a0ebcb",    "m_Id": 0,    "m_DisplayName": "Position",    "m_SlotType": 0,    "m_Hidden": false,    "m_ShaderOutputName": "Position",    "m_StageCapability": 1,    "m_Value": {        "x": 0.0,        "y": 0.0,        "z": 0.0    },    "m_DefaultValue": {        "x": 0.0,        "y": 0.0,        "z": 0.0    },    "m_Labels": [],    "m_Space": 0}
 |