3
0

LY_SC_UnitTest_AutoGenFunctions.scriptcanvas 345 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 85006624485983
  9. },
  10. "Name": "Script Canvas Graph",
  11. "Components": {
  12. "Component_[4425348433275922371]": {
  13. "$type": "EditorGraph",
  14. "Id": 4425348433275922371,
  15. "m_graphData": {
  16. "m_nodes": [
  17. {
  18. "Id": {
  19. "id": 85118293635679
  20. },
  21. "Name": "SC-Node(ScriptCanvasTesting_TestAutoGenFunctions_MaxReturnByValueInteger)",
  22. "Components": {
  23. "Component_[10075410572428028441]": {
  24. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  25. "Id": 10075410572428028441,
  26. "Slots": [
  27. {
  28. "id": {
  29. "m_id": "{E3160FF1-4BC9-475A-9F08-1BBF9A230FB9}"
  30. },
  31. "contracts": [
  32. {
  33. "$type": "SlotTypeContract"
  34. }
  35. ],
  36. "slotName": "Number: 0",
  37. "Descriptor": {
  38. "ConnectionType": 1,
  39. "SlotType": 2
  40. },
  41. "DataType": 1
  42. },
  43. {
  44. "id": {
  45. "m_id": "{7A987111-8A5E-43EF-86BC-E071821CF3C0}"
  46. },
  47. "contracts": [
  48. {
  49. "$type": "SlotTypeContract"
  50. }
  51. ],
  52. "slotName": "Number: 1",
  53. "Descriptor": {
  54. "ConnectionType": 1,
  55. "SlotType": 2
  56. },
  57. "DataType": 1
  58. },
  59. {
  60. "id": {
  61. "m_id": "{A70ADE20-79B1-46BD-93F5-5497F135BB57}"
  62. },
  63. "contracts": [
  64. {
  65. "$type": "SlotTypeContract"
  66. }
  67. ],
  68. "slotName": "In",
  69. "Descriptor": {
  70. "ConnectionType": 1,
  71. "SlotType": 1
  72. }
  73. },
  74. {
  75. "id": {
  76. "m_id": "{21E5CEA4-BB89-400C-A261-EAF9A8005314}"
  77. },
  78. "contracts": [
  79. {
  80. "$type": "SlotTypeContract"
  81. }
  82. ],
  83. "slotName": "Out",
  84. "Descriptor": {
  85. "ConnectionType": 2,
  86. "SlotType": 1
  87. }
  88. },
  89. {
  90. "id": {
  91. "m_id": "{7301B2D5-9565-4781-86EC-BD95AA7258AB}"
  92. },
  93. "contracts": [
  94. {
  95. "$type": "SlotTypeContract"
  96. }
  97. ],
  98. "slotName": "Number",
  99. "DisplayDataType": {
  100. "m_type": 3
  101. },
  102. "Descriptor": {
  103. "ConnectionType": 2,
  104. "SlotType": 2
  105. },
  106. "DataType": 1
  107. }
  108. ],
  109. "Datums": [
  110. {
  111. "scriptCanvasType": {
  112. "m_type": 3
  113. },
  114. "isNullPointer": false,
  115. "$type": "double",
  116. "value": 1.0,
  117. "label": "Number: 0"
  118. },
  119. {
  120. "scriptCanvasType": {
  121. "m_type": 3
  122. },
  123. "isNullPointer": false,
  124. "$type": "double",
  125. "value": 2.0,
  126. "label": "Number: 1"
  127. }
  128. ],
  129. "methodType": 1,
  130. "methodName": "ScriptCanvasTesting_TestAutoGenFunctions_MaxReturnByValueInteger",
  131. "resultSlotIDs": [
  132. {}
  133. ],
  134. "inputSlots": [
  135. {
  136. "m_id": "{E3160FF1-4BC9-475A-9F08-1BBF9A230FB9}"
  137. },
  138. {
  139. "m_id": "{7A987111-8A5E-43EF-86BC-E071821CF3C0}"
  140. }
  141. ],
  142. "prettyClassName": "ScriptCanvasTesting_TestAutoGenFunctions_MaxReturnByValueInteger"
  143. }
  144. }
  145. },
  146. {
  147. "Id": {
  148. "id": 85096818799199
  149. },
  150. "Name": "SC-Node(ScriptCanvasTesting_TestAutoGenFunctions_MaxReturnByReferenceInteger)",
  151. "Components": {
  152. "Component_[11433436477746545101]": {
  153. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  154. "Id": 11433436477746545101,
  155. "Slots": [
  156. {
  157. "id": {
  158. "m_id": "{0E5A5ABB-7B07-4220-9310-A05CC4DC3220}"
  159. },
  160. "contracts": [
  161. {
  162. "$type": "SlotTypeContract"
  163. }
  164. ],
  165. "slotName": "Number: 0",
  166. "Descriptor": {
  167. "ConnectionType": 1,
  168. "SlotType": 2
  169. },
  170. "DataType": 1
  171. },
  172. {
  173. "id": {
  174. "m_id": "{AE5B3DBA-AA16-4058-A608-F3679B783DCB}"
  175. },
  176. "contracts": [
  177. {
  178. "$type": "SlotTypeContract"
  179. }
  180. ],
  181. "slotName": "Number: 1",
  182. "Descriptor": {
  183. "ConnectionType": 1,
  184. "SlotType": 2
  185. },
  186. "DataType": 1
  187. },
  188. {
  189. "id": {
  190. "m_id": "{B7A76594-6883-44CE-A74A-E81ECD2B98A6}"
  191. },
  192. "contracts": [
  193. {
  194. "$type": "SlotTypeContract"
  195. }
  196. ],
  197. "slotName": "In",
  198. "Descriptor": {
  199. "ConnectionType": 1,
  200. "SlotType": 1
  201. }
  202. },
  203. {
  204. "id": {
  205. "m_id": "{9D991281-0DC2-4CEF-A4DC-AA3E11D85450}"
  206. },
  207. "contracts": [
  208. {
  209. "$type": "SlotTypeContract"
  210. }
  211. ],
  212. "slotName": "Out",
  213. "Descriptor": {
  214. "ConnectionType": 2,
  215. "SlotType": 1
  216. }
  217. },
  218. {
  219. "id": {
  220. "m_id": "{D9384462-FFDD-4769-B7EA-368303A0D8C7}"
  221. },
  222. "contracts": [
  223. {
  224. "$type": "SlotTypeContract"
  225. }
  226. ],
  227. "slotName": "Number",
  228. "DisplayDataType": {
  229. "m_type": 3
  230. },
  231. "Descriptor": {
  232. "ConnectionType": 2,
  233. "SlotType": 2
  234. },
  235. "DataType": 1
  236. }
  237. ],
  238. "Datums": [
  239. {
  240. "scriptCanvasType": {
  241. "m_type": 3
  242. },
  243. "isNullPointer": false,
  244. "$type": "double",
  245. "value": 1.0,
  246. "label": "Number: 0"
  247. },
  248. {
  249. "scriptCanvasType": {
  250. "m_type": 3
  251. },
  252. "isNullPointer": false,
  253. "$type": "double",
  254. "value": 2.0,
  255. "label": "Number: 1"
  256. }
  257. ],
  258. "methodType": 1,
  259. "methodName": "ScriptCanvasTesting_TestAutoGenFunctions_MaxReturnByReferenceInteger",
  260. "resultSlotIDs": [
  261. {}
  262. ],
  263. "inputSlots": [
  264. {
  265. "m_id": "{0E5A5ABB-7B07-4220-9310-A05CC4DC3220}"
  266. },
  267. {
  268. "m_id": "{AE5B3DBA-AA16-4058-A608-F3679B783DCB}"
  269. }
  270. ],
  271. "prettyClassName": "ScriptCanvasTesting_TestAutoGenFunctions_MaxReturnByReferenceInteger"
  272. }
  273. }
  274. },
  275. {
  276. "Id": {
  277. "id": 85079638930015
  278. },
  279. "Name": "SC-Node(Expect Equal)",
  280. "Components": {
  281. "Component_[11886689195975182663]": {
  282. "$type": "MethodOverloaded",
  283. "Id": 11886689195975182663,
  284. "Slots": [
  285. {
  286. "isVisibile": false,
  287. "id": {
  288. "m_id": "{99D4F5EC-AA9A-4D70-B402-9B99049E1A45}"
  289. },
  290. "contracts": [
  291. {
  292. "$type": "SlotTypeContract"
  293. }
  294. ],
  295. "slotName": "EntityId: 0",
  296. "DisplayDataType": {
  297. "m_type": 1
  298. },
  299. "Descriptor": {
  300. "ConnectionType": 1,
  301. "SlotType": 2
  302. },
  303. "DataType": 1
  304. },
  305. {
  306. "id": {
  307. "m_id": "{341FE18F-A872-4C4E-9891-0276788A72E6}"
  308. },
  309. "DynamicTypeOverride": 1,
  310. "contracts": [
  311. {
  312. "$type": "SlotTypeContract"
  313. },
  314. {
  315. "$type": "OverloadContract"
  316. }
  317. ],
  318. "slotName": "Candidate",
  319. "toolTip": "left of ==",
  320. "DisplayDataType": {
  321. "m_type": 3
  322. },
  323. "Descriptor": {
  324. "ConnectionType": 1,
  325. "SlotType": 2
  326. },
  327. "DataType": 1
  328. },
  329. {
  330. "id": {
  331. "m_id": "{B24B254B-E0E0-40CD-9412-C0731858234C}"
  332. },
  333. "DynamicTypeOverride": 1,
  334. "contracts": [
  335. {
  336. "$type": "SlotTypeContract"
  337. },
  338. {
  339. "$type": "OverloadContract"
  340. }
  341. ],
  342. "slotName": "Reference",
  343. "toolTip": "right of ==",
  344. "DisplayDataType": {
  345. "m_type": 3
  346. },
  347. "Descriptor": {
  348. "ConnectionType": 1,
  349. "SlotType": 2
  350. },
  351. "DataType": 1
  352. },
  353. {
  354. "id": {
  355. "m_id": "{5881252D-3121-4171-B334-0403977D2747}"
  356. },
  357. "contracts": [
  358. {
  359. "$type": "SlotTypeContract"
  360. }
  361. ],
  362. "slotName": "Report",
  363. "toolTip": "additional notes for the test report",
  364. "DisplayDataType": {
  365. "m_type": 5
  366. },
  367. "Descriptor": {
  368. "ConnectionType": 1,
  369. "SlotType": 2
  370. },
  371. "DataType": 1
  372. },
  373. {
  374. "id": {
  375. "m_id": "{B72A3E9E-7BB6-47DD-A5C9-46F9CFAC04DB}"
  376. },
  377. "contracts": [
  378. {
  379. "$type": "SlotTypeContract"
  380. }
  381. ],
  382. "slotName": "In",
  383. "Descriptor": {
  384. "ConnectionType": 1,
  385. "SlotType": 1
  386. }
  387. },
  388. {
  389. "id": {
  390. "m_id": "{DABD42EC-B044-4526-9A61-1C32F491B3D0}"
  391. },
  392. "contracts": [
  393. {
  394. "$type": "SlotTypeContract"
  395. }
  396. ],
  397. "slotName": "Out",
  398. "Descriptor": {
  399. "ConnectionType": 2,
  400. "SlotType": 1
  401. }
  402. }
  403. ],
  404. "Datums": [
  405. {
  406. "scriptCanvasType": {
  407. "m_type": 1
  408. },
  409. "isNullPointer": false,
  410. "$type": "EntityId",
  411. "value": {
  412. "id": 4276206253
  413. }
  414. },
  415. {
  416. "scriptCanvasType": {
  417. "m_type": 3
  418. },
  419. "isNullPointer": false,
  420. "$type": "double",
  421. "value": 0.0,
  422. "label": "Candidate"
  423. },
  424. {
  425. "scriptCanvasType": {
  426. "m_type": 3
  427. },
  428. "isNullPointer": false,
  429. "$type": "double",
  430. "value": -1.0,
  431. "label": "Reference"
  432. },
  433. {
  434. "scriptCanvasType": {
  435. "m_type": 5
  436. },
  437. "isNullPointer": false,
  438. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  439. "value": "",
  440. "label": "Report"
  441. }
  442. ],
  443. "methodType": 2,
  444. "methodName": "Expect Equal",
  445. "className": "Unit Testing",
  446. "inputSlots": [
  447. {
  448. "m_id": "{99D4F5EC-AA9A-4D70-B402-9B99049E1A45}"
  449. },
  450. {
  451. "m_id": "{341FE18F-A872-4C4E-9891-0276788A72E6}"
  452. },
  453. {
  454. "m_id": "{B24B254B-E0E0-40CD-9412-C0731858234C}"
  455. },
  456. {
  457. "m_id": "{5881252D-3121-4171-B334-0403977D2747}"
  458. }
  459. ],
  460. "orderedInputSlotIds": [
  461. {
  462. "m_id": "{99D4F5EC-AA9A-4D70-B402-9B99049E1A45}"
  463. },
  464. {
  465. "m_id": "{341FE18F-A872-4C4E-9891-0276788A72E6}"
  466. },
  467. {
  468. "m_id": "{B24B254B-E0E0-40CD-9412-C0731858234C}"
  469. },
  470. {
  471. "m_id": "{5881252D-3121-4171-B334-0403977D2747}"
  472. }
  473. ],
  474. "outputSlotIds": [
  475. {}
  476. ]
  477. }
  478. }
  479. },
  480. {
  481. "Id": {
  482. "id": 85058164093535
  483. },
  484. "Name": "SC-Node(Expect Equal)",
  485. "Components": {
  486. "Component_[12068379767359680119]": {
  487. "$type": "MethodOverloaded",
  488. "Id": 12068379767359680119,
  489. "Slots": [
  490. {
  491. "isVisibile": false,
  492. "id": {
  493. "m_id": "{600535B0-B556-443F-8C21-066305872218}"
  494. },
  495. "contracts": [
  496. {
  497. "$type": "SlotTypeContract"
  498. }
  499. ],
  500. "slotName": "EntityId: 0",
  501. "DisplayDataType": {
  502. "m_type": 1
  503. },
  504. "Descriptor": {
  505. "ConnectionType": 1,
  506. "SlotType": 2
  507. },
  508. "DataType": 1
  509. },
  510. {
  511. "id": {
  512. "m_id": "{9B1CC425-8286-4993-BBDF-7CECF065B639}"
  513. },
  514. "DynamicTypeOverride": 1,
  515. "contracts": [
  516. {
  517. "$type": "SlotTypeContract"
  518. },
  519. {
  520. "$type": "OverloadContract"
  521. }
  522. ],
  523. "slotName": "Candidate",
  524. "toolTip": "left of ==",
  525. "DisplayDataType": {
  526. "m_type": 3
  527. },
  528. "Descriptor": {
  529. "ConnectionType": 1,
  530. "SlotType": 2
  531. },
  532. "DataType": 1
  533. },
  534. {
  535. "id": {
  536. "m_id": "{80A10C61-2ECA-4997-BB9A-8AE45F2BC51E}"
  537. },
  538. "DynamicTypeOverride": 1,
  539. "contracts": [
  540. {
  541. "$type": "SlotTypeContract"
  542. },
  543. {
  544. "$type": "OverloadContract"
  545. }
  546. ],
  547. "slotName": "Reference",
  548. "toolTip": "right of ==",
  549. "DisplayDataType": {
  550. "m_type": 3
  551. },
  552. "Descriptor": {
  553. "ConnectionType": 1,
  554. "SlotType": 2
  555. },
  556. "DataType": 1
  557. },
  558. {
  559. "id": {
  560. "m_id": "{13D6C74F-F3A7-4A5F-9337-DEA9F3AB7E3E}"
  561. },
  562. "contracts": [
  563. {
  564. "$type": "SlotTypeContract"
  565. }
  566. ],
  567. "slotName": "Report",
  568. "toolTip": "additional notes for the test report",
  569. "DisplayDataType": {
  570. "m_type": 5
  571. },
  572. "Descriptor": {
  573. "ConnectionType": 1,
  574. "SlotType": 2
  575. },
  576. "DataType": 1
  577. },
  578. {
  579. "id": {
  580. "m_id": "{DA93F872-124C-47A4-B381-6A17986445D7}"
  581. },
  582. "contracts": [
  583. {
  584. "$type": "SlotTypeContract"
  585. }
  586. ],
  587. "slotName": "In",
  588. "Descriptor": {
  589. "ConnectionType": 1,
  590. "SlotType": 1
  591. }
  592. },
  593. {
  594. "id": {
  595. "m_id": "{5E8D3A3D-5E2B-4F80-AA7E-3DB53118DCEC}"
  596. },
  597. "contracts": [
  598. {
  599. "$type": "SlotTypeContract"
  600. }
  601. ],
  602. "slotName": "Out",
  603. "Descriptor": {
  604. "ConnectionType": 2,
  605. "SlotType": 1
  606. }
  607. }
  608. ],
  609. "Datums": [
  610. {
  611. "scriptCanvasType": {
  612. "m_type": 1
  613. },
  614. "isNullPointer": false,
  615. "$type": "EntityId",
  616. "value": {
  617. "id": 4276206253
  618. }
  619. },
  620. {
  621. "scriptCanvasType": {
  622. "m_type": 3
  623. },
  624. "isNullPointer": false,
  625. "$type": "double",
  626. "value": 0.0,
  627. "label": "Candidate"
  628. },
  629. {
  630. "scriptCanvasType": {
  631. "m_type": 3
  632. },
  633. "isNullPointer": false,
  634. "$type": "double",
  635. "value": 0.0,
  636. "label": "Reference"
  637. },
  638. {
  639. "scriptCanvasType": {
  640. "m_type": 5
  641. },
  642. "isNullPointer": false,
  643. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  644. "value": "",
  645. "label": "Report"
  646. }
  647. ],
  648. "methodType": 2,
  649. "methodName": "Expect Equal",
  650. "className": "Unit Testing",
  651. "inputSlots": [
  652. {
  653. "m_id": "{600535B0-B556-443F-8C21-066305872218}"
  654. },
  655. {
  656. "m_id": "{9B1CC425-8286-4993-BBDF-7CECF065B639}"
  657. },
  658. {
  659. "m_id": "{80A10C61-2ECA-4997-BB9A-8AE45F2BC51E}"
  660. },
  661. {
  662. "m_id": "{13D6C74F-F3A7-4A5F-9337-DEA9F3AB7E3E}"
  663. }
  664. ],
  665. "orderedInputSlotIds": [
  666. {
  667. "m_id": "{600535B0-B556-443F-8C21-066305872218}"
  668. },
  669. {
  670. "m_id": "{9B1CC425-8286-4993-BBDF-7CECF065B639}"
  671. },
  672. {
  673. "m_id": "{80A10C61-2ECA-4997-BB9A-8AE45F2BC51E}"
  674. },
  675. {
  676. "m_id": "{13D6C74F-F3A7-4A5F-9337-DEA9F3AB7E3E}"
  677. }
  678. ],
  679. "outputSlotIds": [
  680. {}
  681. ]
  682. }
  683. }
  684. },
  685. {
  686. "Id": {
  687. "id": 85040984224351
  688. },
  689. "Name": "SC-Node(Checkpoint)",
  690. "Components": {
  691. "Component_[12722033565073974733]": {
  692. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  693. "Id": 12722033565073974733,
  694. "Slots": [
  695. {
  696. "isVisibile": false,
  697. "id": {
  698. "m_id": "{5D1BC07D-2839-415A-A16D-3FBF1C40979D}"
  699. },
  700. "contracts": [
  701. {
  702. "$type": "SlotTypeContract"
  703. }
  704. ],
  705. "slotName": "EntityId: 0",
  706. "Descriptor": {
  707. "ConnectionType": 1,
  708. "SlotType": 2
  709. },
  710. "DataType": 1
  711. },
  712. {
  713. "id": {
  714. "m_id": "{9878A057-12BE-4744-9AFC-114D489F5AA7}"
  715. },
  716. "contracts": [
  717. {
  718. "$type": "SlotTypeContract"
  719. }
  720. ],
  721. "slotName": "Report",
  722. "toolTip": "additional notes for the test report",
  723. "Descriptor": {
  724. "ConnectionType": 1,
  725. "SlotType": 2
  726. },
  727. "DataType": 1
  728. },
  729. {
  730. "id": {
  731. "m_id": "{DCC1F3E5-C4FD-4F97-893D-6666031A7E7B}"
  732. },
  733. "contracts": [
  734. {
  735. "$type": "SlotTypeContract"
  736. }
  737. ],
  738. "slotName": "In",
  739. "Descriptor": {
  740. "ConnectionType": 1,
  741. "SlotType": 1
  742. }
  743. },
  744. {
  745. "id": {
  746. "m_id": "{42C212D8-F799-46EF-802D-6CE218EAD45B}"
  747. },
  748. "contracts": [
  749. {
  750. "$type": "SlotTypeContract"
  751. }
  752. ],
  753. "slotName": "Out",
  754. "Descriptor": {
  755. "ConnectionType": 2,
  756. "SlotType": 1
  757. }
  758. }
  759. ],
  760. "Datums": [
  761. {
  762. "scriptCanvasType": {
  763. "m_type": 1
  764. },
  765. "isNullPointer": false,
  766. "$type": "EntityId",
  767. "value": {
  768. "id": 4276206253
  769. }
  770. },
  771. {
  772. "scriptCanvasType": {
  773. "m_type": 5
  774. },
  775. "isNullPointer": false,
  776. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  777. "value": "",
  778. "label": "Report"
  779. }
  780. ],
  781. "methodType": 2,
  782. "methodName": "Checkpoint",
  783. "className": "Unit Testing",
  784. "resultSlotIDs": [
  785. {}
  786. ],
  787. "inputSlots": [
  788. {
  789. "m_id": "{5D1BC07D-2839-415A-A16D-3FBF1C40979D}"
  790. },
  791. {
  792. "m_id": "{9878A057-12BE-4744-9AFC-114D489F5AA7}"
  793. }
  794. ],
  795. "prettyClassName": "Unit Testing"
  796. }
  797. }
  798. },
  799. {
  800. "Id": {
  801. "id": 85019509387871
  802. },
  803. "Name": "SC-Node(Checkpoint)",
  804. "Components": {
  805. "Component_[14333092207915712699]": {
  806. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  807. "Id": 14333092207915712699,
  808. "Slots": [
  809. {
  810. "isVisibile": false,
  811. "id": {
  812. "m_id": "{07E4FBD8-D28E-4277-97A8-9878C13CA916}"
  813. },
  814. "contracts": [
  815. {
  816. "$type": "SlotTypeContract"
  817. }
  818. ],
  819. "slotName": "EntityId: 0",
  820. "Descriptor": {
  821. "ConnectionType": 1,
  822. "SlotType": 2
  823. },
  824. "DataType": 1
  825. },
  826. {
  827. "id": {
  828. "m_id": "{C4421822-9384-41F4-82AE-40149D972D7F}"
  829. },
  830. "contracts": [
  831. {
  832. "$type": "SlotTypeContract"
  833. }
  834. ],
  835. "slotName": "Report",
  836. "toolTip": "additional notes for the test report",
  837. "Descriptor": {
  838. "ConnectionType": 1,
  839. "SlotType": 2
  840. },
  841. "DataType": 1
  842. },
  843. {
  844. "id": {
  845. "m_id": "{12B0ED80-D70B-4539-A5F2-B646AC8146D3}"
  846. },
  847. "contracts": [
  848. {
  849. "$type": "SlotTypeContract"
  850. }
  851. ],
  852. "slotName": "In",
  853. "Descriptor": {
  854. "ConnectionType": 1,
  855. "SlotType": 1
  856. }
  857. },
  858. {
  859. "id": {
  860. "m_id": "{618F7EFC-C571-4C8F-98B2-37E343150F6D}"
  861. },
  862. "contracts": [
  863. {
  864. "$type": "SlotTypeContract"
  865. }
  866. ],
  867. "slotName": "Out",
  868. "Descriptor": {
  869. "ConnectionType": 2,
  870. "SlotType": 1
  871. }
  872. }
  873. ],
  874. "Datums": [
  875. {
  876. "scriptCanvasType": {
  877. "m_type": 1
  878. },
  879. "isNullPointer": false,
  880. "$type": "EntityId",
  881. "value": {
  882. "id": 4276206253
  883. }
  884. },
  885. {
  886. "scriptCanvasType": {
  887. "m_type": 5
  888. },
  889. "isNullPointer": false,
  890. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  891. "value": "",
  892. "label": "Report"
  893. }
  894. ],
  895. "methodType": 2,
  896. "methodName": "Checkpoint",
  897. "className": "Unit Testing",
  898. "resultSlotIDs": [
  899. {}
  900. ],
  901. "inputSlots": [
  902. {
  903. "m_id": "{07E4FBD8-D28E-4277-97A8-9878C13CA916}"
  904. },
  905. {
  906. "m_id": "{C4421822-9384-41F4-82AE-40149D972D7F}"
  907. }
  908. ],
  909. "prettyClassName": "Unit Testing"
  910. }
  911. }
  912. },
  913. {
  914. "Id": {
  915. "id": 85062459060831
  916. },
  917. "Name": "SC-Node(Start)",
  918. "Components": {
  919. "Component_[14438961448191966290]": {
  920. "$type": "Start",
  921. "Id": 14438961448191966290,
  922. "Slots": [
  923. {
  924. "id": {
  925. "m_id": "{E539C3C5-C7D3-4AB3-AC41-F5E265651B0F}"
  926. },
  927. "contracts": [
  928. {
  929. "$type": "SlotTypeContract"
  930. }
  931. ],
  932. "slotName": "Out",
  933. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  934. "Descriptor": {
  935. "ConnectionType": 2,
  936. "SlotType": 1
  937. }
  938. }
  939. ]
  940. }
  941. }
  942. },
  943. {
  944. "Id": {
  945. "id": 85023804355167
  946. },
  947. "Name": "SC-Node(Expect Equal)",
  948. "Components": {
  949. "Component_[15148858347959844821]": {
  950. "$type": "MethodOverloaded",
  951. "Id": 15148858347959844821,
  952. "Slots": [
  953. {
  954. "isVisibile": false,
  955. "id": {
  956. "m_id": "{E104A593-2BE8-45EE-B74C-6FEB23B66F37}"
  957. },
  958. "contracts": [
  959. {
  960. "$type": "SlotTypeContract"
  961. }
  962. ],
  963. "slotName": "EntityId: 0",
  964. "DisplayDataType": {
  965. "m_type": 1
  966. },
  967. "Descriptor": {
  968. "ConnectionType": 1,
  969. "SlotType": 2
  970. },
  971. "DataType": 1
  972. },
  973. {
  974. "id": {
  975. "m_id": "{7F34E34C-83E6-467C-A8C7-27DFF01FD5B6}"
  976. },
  977. "DynamicTypeOverride": 1,
  978. "contracts": [
  979. {
  980. "$type": "SlotTypeContract"
  981. },
  982. {
  983. "$type": "OverloadContract"
  984. }
  985. ],
  986. "slotName": "Candidate",
  987. "toolTip": "left of ==",
  988. "DisplayDataType": {
  989. "m_type": 3
  990. },
  991. "Descriptor": {
  992. "ConnectionType": 1,
  993. "SlotType": 2
  994. },
  995. "DataType": 1
  996. },
  997. {
  998. "id": {
  999. "m_id": "{E94B1B56-A775-484C-B034-05998BEA2421}"
  1000. },
  1001. "DynamicTypeOverride": 1,
  1002. "contracts": [
  1003. {
  1004. "$type": "SlotTypeContract"
  1005. },
  1006. {
  1007. "$type": "OverloadContract"
  1008. }
  1009. ],
  1010. "slotName": "Reference",
  1011. "toolTip": "right of ==",
  1012. "DisplayDataType": {
  1013. "m_type": 3
  1014. },
  1015. "Descriptor": {
  1016. "ConnectionType": 1,
  1017. "SlotType": 2
  1018. },
  1019. "DataType": 1
  1020. },
  1021. {
  1022. "id": {
  1023. "m_id": "{AB75BA64-05C5-4E3E-A3E1-60E352D99EE5}"
  1024. },
  1025. "contracts": [
  1026. {
  1027. "$type": "SlotTypeContract"
  1028. }
  1029. ],
  1030. "slotName": "Report",
  1031. "toolTip": "additional notes for the test report",
  1032. "DisplayDataType": {
  1033. "m_type": 5
  1034. },
  1035. "Descriptor": {
  1036. "ConnectionType": 1,
  1037. "SlotType": 2
  1038. },
  1039. "DataType": 1
  1040. },
  1041. {
  1042. "id": {
  1043. "m_id": "{C07EADFE-35A3-4DDE-A495-B3D3E5F342C9}"
  1044. },
  1045. "contracts": [
  1046. {
  1047. "$type": "SlotTypeContract"
  1048. }
  1049. ],
  1050. "slotName": "In",
  1051. "Descriptor": {
  1052. "ConnectionType": 1,
  1053. "SlotType": 1
  1054. }
  1055. },
  1056. {
  1057. "id": {
  1058. "m_id": "{C8C7EFCD-3215-4FEE-9337-8724D33CFB3E}"
  1059. },
  1060. "contracts": [
  1061. {
  1062. "$type": "SlotTypeContract"
  1063. }
  1064. ],
  1065. "slotName": "Out",
  1066. "Descriptor": {
  1067. "ConnectionType": 2,
  1068. "SlotType": 1
  1069. }
  1070. }
  1071. ],
  1072. "Datums": [
  1073. {
  1074. "scriptCanvasType": {
  1075. "m_type": 1
  1076. },
  1077. "isNullPointer": false,
  1078. "$type": "EntityId",
  1079. "value": {
  1080. "id": 4276206253
  1081. }
  1082. },
  1083. {
  1084. "scriptCanvasType": {
  1085. "m_type": 3
  1086. },
  1087. "isNullPointer": false,
  1088. "$type": "double",
  1089. "value": 0.0,
  1090. "label": "Candidate"
  1091. },
  1092. {
  1093. "scriptCanvasType": {
  1094. "m_type": 3
  1095. },
  1096. "isNullPointer": false,
  1097. "$type": "double",
  1098. "value": 2.0,
  1099. "label": "Reference"
  1100. },
  1101. {
  1102. "scriptCanvasType": {
  1103. "m_type": 5
  1104. },
  1105. "isNullPointer": false,
  1106. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1107. "value": "",
  1108. "label": "Report"
  1109. }
  1110. ],
  1111. "methodType": 2,
  1112. "methodName": "Expect Equal",
  1113. "className": "Unit Testing",
  1114. "inputSlots": [
  1115. {
  1116. "m_id": "{E104A593-2BE8-45EE-B74C-6FEB23B66F37}"
  1117. },
  1118. {
  1119. "m_id": "{7F34E34C-83E6-467C-A8C7-27DFF01FD5B6}"
  1120. },
  1121. {
  1122. "m_id": "{E94B1B56-A775-484C-B034-05998BEA2421}"
  1123. },
  1124. {
  1125. "m_id": "{AB75BA64-05C5-4E3E-A3E1-60E352D99EE5}"
  1126. }
  1127. ],
  1128. "orderedInputSlotIds": [
  1129. {
  1130. "m_id": "{E104A593-2BE8-45EE-B74C-6FEB23B66F37}"
  1131. },
  1132. {
  1133. "m_id": "{7F34E34C-83E6-467C-A8C7-27DFF01FD5B6}"
  1134. },
  1135. {
  1136. "m_id": "{E94B1B56-A775-484C-B034-05998BEA2421}"
  1137. },
  1138. {
  1139. "m_id": "{AB75BA64-05C5-4E3E-A3E1-60E352D99EE5}"
  1140. }
  1141. ],
  1142. "outputSlotIds": [
  1143. {}
  1144. ]
  1145. }
  1146. }
  1147. },
  1148. {
  1149. "Id": {
  1150. "id": 85083933897311
  1151. },
  1152. "Name": "SC-Node(Expect Equal)",
  1153. "Components": {
  1154. "Component_[15270961547488299141]": {
  1155. "$type": "MethodOverloaded",
  1156. "Id": 15270961547488299141,
  1157. "Slots": [
  1158. {
  1159. "isVisibile": false,
  1160. "id": {
  1161. "m_id": "{CFE053A8-8452-46F8-8188-1BD2E75007CD}"
  1162. },
  1163. "contracts": [
  1164. {
  1165. "$type": "SlotTypeContract"
  1166. }
  1167. ],
  1168. "slotName": "EntityId: 0",
  1169. "DisplayDataType": {
  1170. "m_type": 1
  1171. },
  1172. "Descriptor": {
  1173. "ConnectionType": 1,
  1174. "SlotType": 2
  1175. },
  1176. "DataType": 1
  1177. },
  1178. {
  1179. "id": {
  1180. "m_id": "{7FD280BC-32C4-481F-BB47-550BFBE2A105}"
  1181. },
  1182. "DynamicTypeOverride": 1,
  1183. "contracts": [
  1184. {
  1185. "$type": "SlotTypeContract"
  1186. },
  1187. {
  1188. "$type": "OverloadContract"
  1189. }
  1190. ],
  1191. "slotName": "Candidate",
  1192. "toolTip": "left of ==",
  1193. "DisplayDataType": {
  1194. "m_type": 5
  1195. },
  1196. "Descriptor": {
  1197. "ConnectionType": 1,
  1198. "SlotType": 2
  1199. },
  1200. "DataType": 1
  1201. },
  1202. {
  1203. "id": {
  1204. "m_id": "{238F67C9-0D5B-4908-B1F0-C3B6FF1CC0D3}"
  1205. },
  1206. "DynamicTypeOverride": 1,
  1207. "contracts": [
  1208. {
  1209. "$type": "SlotTypeContract"
  1210. },
  1211. {
  1212. "$type": "OverloadContract"
  1213. }
  1214. ],
  1215. "slotName": "Reference",
  1216. "toolTip": "right of ==",
  1217. "DisplayDataType": {
  1218. "m_type": 5
  1219. },
  1220. "Descriptor": {
  1221. "ConnectionType": 1,
  1222. "SlotType": 2
  1223. },
  1224. "DataType": 1
  1225. },
  1226. {
  1227. "id": {
  1228. "m_id": "{19B6C161-C3AD-4098-B088-6A98E36FFB84}"
  1229. },
  1230. "contracts": [
  1231. {
  1232. "$type": "SlotTypeContract"
  1233. }
  1234. ],
  1235. "slotName": "Report",
  1236. "toolTip": "additional notes for the test report",
  1237. "DisplayDataType": {
  1238. "m_type": 5
  1239. },
  1240. "Descriptor": {
  1241. "ConnectionType": 1,
  1242. "SlotType": 2
  1243. },
  1244. "DataType": 1
  1245. },
  1246. {
  1247. "id": {
  1248. "m_id": "{0146B8E3-8D82-43F6-AB97-CC19DB949B9B}"
  1249. },
  1250. "contracts": [
  1251. {
  1252. "$type": "SlotTypeContract"
  1253. }
  1254. ],
  1255. "slotName": "In",
  1256. "Descriptor": {
  1257. "ConnectionType": 1,
  1258. "SlotType": 1
  1259. }
  1260. },
  1261. {
  1262. "id": {
  1263. "m_id": "{E0319974-69EF-47B4-B4F6-9E3E2448D718}"
  1264. },
  1265. "contracts": [
  1266. {
  1267. "$type": "SlotTypeContract"
  1268. }
  1269. ],
  1270. "slotName": "Out",
  1271. "Descriptor": {
  1272. "ConnectionType": 2,
  1273. "SlotType": 1
  1274. }
  1275. }
  1276. ],
  1277. "Datums": [
  1278. {
  1279. "scriptCanvasType": {
  1280. "m_type": 1
  1281. },
  1282. "isNullPointer": false,
  1283. "$type": "EntityId",
  1284. "value": {
  1285. "id": 4276206253
  1286. }
  1287. },
  1288. {
  1289. "scriptCanvasType": {
  1290. "m_type": 5
  1291. },
  1292. "isNullPointer": false,
  1293. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1294. "value": "",
  1295. "label": "Candidate"
  1296. },
  1297. {
  1298. "scriptCanvasType": {
  1299. "m_type": 5
  1300. },
  1301. "isNullPointer": false,
  1302. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1303. "value": "negative",
  1304. "label": "Reference"
  1305. },
  1306. {
  1307. "scriptCanvasType": {
  1308. "m_type": 5
  1309. },
  1310. "isNullPointer": false,
  1311. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1312. "value": "",
  1313. "label": "Report"
  1314. }
  1315. ],
  1316. "methodType": 2,
  1317. "methodName": "Expect Equal",
  1318. "className": "Unit Testing",
  1319. "inputSlots": [
  1320. {
  1321. "m_id": "{CFE053A8-8452-46F8-8188-1BD2E75007CD}"
  1322. },
  1323. {
  1324. "m_id": "{7FD280BC-32C4-481F-BB47-550BFBE2A105}"
  1325. },
  1326. {
  1327. "m_id": "{238F67C9-0D5B-4908-B1F0-C3B6FF1CC0D3}"
  1328. },
  1329. {
  1330. "m_id": "{19B6C161-C3AD-4098-B088-6A98E36FFB84}"
  1331. }
  1332. ],
  1333. "orderedInputSlotIds": [
  1334. {
  1335. "m_id": "{CFE053A8-8452-46F8-8188-1BD2E75007CD}"
  1336. },
  1337. {
  1338. "m_id": "{7FD280BC-32C4-481F-BB47-550BFBE2A105}"
  1339. },
  1340. {
  1341. "m_id": "{238F67C9-0D5B-4908-B1F0-C3B6FF1CC0D3}"
  1342. },
  1343. {
  1344. "m_id": "{19B6C161-C3AD-4098-B088-6A98E36FFB84}"
  1345. }
  1346. ],
  1347. "outputSlotIds": [
  1348. {}
  1349. ]
  1350. }
  1351. }
  1352. },
  1353. {
  1354. "Id": {
  1355. "id": 85101113766495
  1356. },
  1357. "Name": "SC-Node(Expect Equal)",
  1358. "Components": {
  1359. "Component_[15270961547488299141]": {
  1360. "$type": "MethodOverloaded",
  1361. "Id": 15270961547488299141,
  1362. "Slots": [
  1363. {
  1364. "isVisibile": false,
  1365. "id": {
  1366. "m_id": "{CFE053A8-8452-46F8-8188-1BD2E75007CD}"
  1367. },
  1368. "contracts": [
  1369. {
  1370. "$type": "SlotTypeContract"
  1371. }
  1372. ],
  1373. "slotName": "EntityId: 0",
  1374. "DisplayDataType": {
  1375. "m_type": 1
  1376. },
  1377. "Descriptor": {
  1378. "ConnectionType": 1,
  1379. "SlotType": 2
  1380. },
  1381. "DataType": 1
  1382. },
  1383. {
  1384. "id": {
  1385. "m_id": "{7FD280BC-32C4-481F-BB47-550BFBE2A105}"
  1386. },
  1387. "DynamicTypeOverride": 1,
  1388. "contracts": [
  1389. {
  1390. "$type": "SlotTypeContract"
  1391. },
  1392. {
  1393. "$type": "OverloadContract"
  1394. }
  1395. ],
  1396. "slotName": "Candidate",
  1397. "toolTip": "left of ==",
  1398. "DisplayDataType": {
  1399. "m_type": 5
  1400. },
  1401. "Descriptor": {
  1402. "ConnectionType": 1,
  1403. "SlotType": 2
  1404. },
  1405. "DataType": 1
  1406. },
  1407. {
  1408. "id": {
  1409. "m_id": "{238F67C9-0D5B-4908-B1F0-C3B6FF1CC0D3}"
  1410. },
  1411. "DynamicTypeOverride": 1,
  1412. "contracts": [
  1413. {
  1414. "$type": "SlotTypeContract"
  1415. },
  1416. {
  1417. "$type": "OverloadContract"
  1418. }
  1419. ],
  1420. "slotName": "Reference",
  1421. "toolTip": "right of ==",
  1422. "DisplayDataType": {
  1423. "m_type": 5
  1424. },
  1425. "Descriptor": {
  1426. "ConnectionType": 1,
  1427. "SlotType": 2
  1428. },
  1429. "DataType": 1
  1430. },
  1431. {
  1432. "id": {
  1433. "m_id": "{19B6C161-C3AD-4098-B088-6A98E36FFB84}"
  1434. },
  1435. "contracts": [
  1436. {
  1437. "$type": "SlotTypeContract"
  1438. }
  1439. ],
  1440. "slotName": "Report",
  1441. "toolTip": "additional notes for the test report",
  1442. "DisplayDataType": {
  1443. "m_type": 5
  1444. },
  1445. "Descriptor": {
  1446. "ConnectionType": 1,
  1447. "SlotType": 2
  1448. },
  1449. "DataType": 1
  1450. },
  1451. {
  1452. "id": {
  1453. "m_id": "{0146B8E3-8D82-43F6-AB97-CC19DB949B9B}"
  1454. },
  1455. "contracts": [
  1456. {
  1457. "$type": "SlotTypeContract"
  1458. }
  1459. ],
  1460. "slotName": "In",
  1461. "Descriptor": {
  1462. "ConnectionType": 1,
  1463. "SlotType": 1
  1464. }
  1465. },
  1466. {
  1467. "id": {
  1468. "m_id": "{E0319974-69EF-47B4-B4F6-9E3E2448D718}"
  1469. },
  1470. "contracts": [
  1471. {
  1472. "$type": "SlotTypeContract"
  1473. }
  1474. ],
  1475. "slotName": "Out",
  1476. "Descriptor": {
  1477. "ConnectionType": 2,
  1478. "SlotType": 1
  1479. }
  1480. }
  1481. ],
  1482. "Datums": [
  1483. {
  1484. "scriptCanvasType": {
  1485. "m_type": 1
  1486. },
  1487. "isNullPointer": false,
  1488. "$type": "EntityId",
  1489. "value": {
  1490. "id": 4276206253
  1491. }
  1492. },
  1493. {
  1494. "scriptCanvasType": {
  1495. "m_type": 5
  1496. },
  1497. "isNullPointer": false,
  1498. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1499. "value": "",
  1500. "label": "Candidate"
  1501. },
  1502. {
  1503. "scriptCanvasType": {
  1504. "m_type": 5
  1505. },
  1506. "isNullPointer": false,
  1507. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1508. "value": "positive",
  1509. "label": "Reference"
  1510. },
  1511. {
  1512. "scriptCanvasType": {
  1513. "m_type": 5
  1514. },
  1515. "isNullPointer": false,
  1516. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1517. "value": "",
  1518. "label": "Report"
  1519. }
  1520. ],
  1521. "methodType": 2,
  1522. "methodName": "Expect Equal",
  1523. "className": "Unit Testing",
  1524. "inputSlots": [
  1525. {
  1526. "m_id": "{CFE053A8-8452-46F8-8188-1BD2E75007CD}"
  1527. },
  1528. {
  1529. "m_id": "{7FD280BC-32C4-481F-BB47-550BFBE2A105}"
  1530. },
  1531. {
  1532. "m_id": "{238F67C9-0D5B-4908-B1F0-C3B6FF1CC0D3}"
  1533. },
  1534. {
  1535. "m_id": "{19B6C161-C3AD-4098-B088-6A98E36FFB84}"
  1536. }
  1537. ],
  1538. "orderedInputSlotIds": [
  1539. {
  1540. "m_id": "{CFE053A8-8452-46F8-8188-1BD2E75007CD}"
  1541. },
  1542. {
  1543. "m_id": "{7FD280BC-32C4-481F-BB47-550BFBE2A105}"
  1544. },
  1545. {
  1546. "m_id": "{238F67C9-0D5B-4908-B1F0-C3B6FF1CC0D3}"
  1547. },
  1548. {
  1549. "m_id": "{19B6C161-C3AD-4098-B088-6A98E36FFB84}"
  1550. }
  1551. ],
  1552. "outputSlotIds": [
  1553. {}
  1554. ]
  1555. }
  1556. }
  1557. },
  1558. {
  1559. "Id": {
  1560. "id": 85045279191647
  1561. },
  1562. "Name": "SC-Node(Mark Complete)",
  1563. "Components": {
  1564. "Component_[1585986460335048961]": {
  1565. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1566. "Id": 1585986460335048961,
  1567. "Slots": [
  1568. {
  1569. "isVisibile": false,
  1570. "id": {
  1571. "m_id": "{AB4E364E-FDAF-40CE-AFB0-99EA4F8A689C}"
  1572. },
  1573. "contracts": [
  1574. {
  1575. "$type": "SlotTypeContract"
  1576. }
  1577. ],
  1578. "slotName": "EntityId: 0",
  1579. "Descriptor": {
  1580. "ConnectionType": 1,
  1581. "SlotType": 2
  1582. },
  1583. "DataType": 1
  1584. },
  1585. {
  1586. "id": {
  1587. "m_id": "{F22746A8-0C69-4F7E-8CA3-16FBA4C0C07C}"
  1588. },
  1589. "contracts": [
  1590. {
  1591. "$type": "SlotTypeContract"
  1592. }
  1593. ],
  1594. "slotName": "Report",
  1595. "toolTip": "additional notes for the test report",
  1596. "Descriptor": {
  1597. "ConnectionType": 1,
  1598. "SlotType": 2
  1599. },
  1600. "DataType": 1
  1601. },
  1602. {
  1603. "id": {
  1604. "m_id": "{4EC33A5B-4200-4224-977C-E7149A9219F6}"
  1605. },
  1606. "contracts": [
  1607. {
  1608. "$type": "SlotTypeContract"
  1609. }
  1610. ],
  1611. "slotName": "In",
  1612. "Descriptor": {
  1613. "ConnectionType": 1,
  1614. "SlotType": 1
  1615. }
  1616. },
  1617. {
  1618. "id": {
  1619. "m_id": "{5A030DA5-D891-48E1-8D62-3F0E4CE223F5}"
  1620. },
  1621. "contracts": [
  1622. {
  1623. "$type": "SlotTypeContract"
  1624. }
  1625. ],
  1626. "slotName": "Out",
  1627. "Descriptor": {
  1628. "ConnectionType": 2,
  1629. "SlotType": 1
  1630. }
  1631. }
  1632. ],
  1633. "Datums": [
  1634. {
  1635. "scriptCanvasType": {
  1636. "m_type": 1
  1637. },
  1638. "isNullPointer": false,
  1639. "$type": "EntityId",
  1640. "value": {
  1641. "id": 4276206253
  1642. }
  1643. },
  1644. {
  1645. "scriptCanvasType": {
  1646. "m_type": 5
  1647. },
  1648. "isNullPointer": false,
  1649. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1650. "value": "test complete",
  1651. "label": "Report"
  1652. }
  1653. ],
  1654. "methodType": 2,
  1655. "methodName": "Mark Complete",
  1656. "className": "Unit Testing",
  1657. "resultSlotIDs": [
  1658. {}
  1659. ],
  1660. "inputSlots": [
  1661. {
  1662. "m_id": "{AB4E364E-FDAF-40CE-AFB0-99EA4F8A689C}"
  1663. },
  1664. {
  1665. "m_id": "{F22746A8-0C69-4F7E-8CA3-16FBA4C0C07C}"
  1666. }
  1667. ],
  1668. "prettyClassName": "Unit Testing"
  1669. }
  1670. }
  1671. },
  1672. {
  1673. "Id": {
  1674. "id": 85028099322463
  1675. },
  1676. "Name": "SC-Node(Expect Equal)",
  1677. "Components": {
  1678. "Component_[16069666738115955657]": {
  1679. "$type": "MethodOverloaded",
  1680. "Id": 16069666738115955657,
  1681. "Slots": [
  1682. {
  1683. "isVisibile": false,
  1684. "id": {
  1685. "m_id": "{628DE6EA-C66B-4DE6-BA03-200C33772F8C}"
  1686. },
  1687. "contracts": [
  1688. {
  1689. "$type": "SlotTypeContract"
  1690. }
  1691. ],
  1692. "slotName": "EntityId: 0",
  1693. "DisplayDataType": {
  1694. "m_type": 1
  1695. },
  1696. "Descriptor": {
  1697. "ConnectionType": 1,
  1698. "SlotType": 2
  1699. },
  1700. "DataType": 1
  1701. },
  1702. {
  1703. "id": {
  1704. "m_id": "{1351A9E6-05C7-4532-AFBE-AB3F1123E812}"
  1705. },
  1706. "DynamicTypeOverride": 1,
  1707. "contracts": [
  1708. {
  1709. "$type": "SlotTypeContract"
  1710. },
  1711. {
  1712. "$type": "OverloadContract"
  1713. }
  1714. ],
  1715. "slotName": "Candidate",
  1716. "toolTip": "left of ==",
  1717. "DisplayDataType": {
  1718. "m_type": 3
  1719. },
  1720. "Descriptor": {
  1721. "ConnectionType": 1,
  1722. "SlotType": 2
  1723. },
  1724. "DataType": 1
  1725. },
  1726. {
  1727. "id": {
  1728. "m_id": "{81E2B55E-B426-4FFF-86C2-4865602DA17C}"
  1729. },
  1730. "DynamicTypeOverride": 1,
  1731. "contracts": [
  1732. {
  1733. "$type": "SlotTypeContract"
  1734. },
  1735. {
  1736. "$type": "OverloadContract"
  1737. }
  1738. ],
  1739. "slotName": "Reference",
  1740. "toolTip": "right of ==",
  1741. "DisplayDataType": {
  1742. "m_type": 3
  1743. },
  1744. "Descriptor": {
  1745. "ConnectionType": 1,
  1746. "SlotType": 2
  1747. },
  1748. "DataType": 1
  1749. },
  1750. {
  1751. "id": {
  1752. "m_id": "{1C687F2D-6AE0-4C76-BA62-7A2B6BB9B54B}"
  1753. },
  1754. "contracts": [
  1755. {
  1756. "$type": "SlotTypeContract"
  1757. }
  1758. ],
  1759. "slotName": "Report",
  1760. "toolTip": "additional notes for the test report",
  1761. "DisplayDataType": {
  1762. "m_type": 5
  1763. },
  1764. "Descriptor": {
  1765. "ConnectionType": 1,
  1766. "SlotType": 2
  1767. },
  1768. "DataType": 1
  1769. },
  1770. {
  1771. "id": {
  1772. "m_id": "{8A2D3100-0B87-4F6F-BF1B-641934AAED45}"
  1773. },
  1774. "contracts": [
  1775. {
  1776. "$type": "SlotTypeContract"
  1777. }
  1778. ],
  1779. "slotName": "In",
  1780. "Descriptor": {
  1781. "ConnectionType": 1,
  1782. "SlotType": 1
  1783. }
  1784. },
  1785. {
  1786. "id": {
  1787. "m_id": "{D401DECB-532D-48B8-A5EA-5CCDE7EAE0CF}"
  1788. },
  1789. "contracts": [
  1790. {
  1791. "$type": "SlotTypeContract"
  1792. }
  1793. ],
  1794. "slotName": "Out",
  1795. "Descriptor": {
  1796. "ConnectionType": 2,
  1797. "SlotType": 1
  1798. }
  1799. }
  1800. ],
  1801. "Datums": [
  1802. {
  1803. "scriptCanvasType": {
  1804. "m_type": 1
  1805. },
  1806. "isNullPointer": false,
  1807. "$type": "EntityId",
  1808. "value": {
  1809. "id": 4276206253
  1810. }
  1811. },
  1812. {
  1813. "scriptCanvasType": {
  1814. "m_type": 3
  1815. },
  1816. "isNullPointer": false,
  1817. "$type": "double",
  1818. "value": 0.0,
  1819. "label": "Candidate"
  1820. },
  1821. {
  1822. "scriptCanvasType": {
  1823. "m_type": 3
  1824. },
  1825. "isNullPointer": false,
  1826. "$type": "double",
  1827. "value": 2.0,
  1828. "label": "Reference"
  1829. },
  1830. {
  1831. "scriptCanvasType": {
  1832. "m_type": 5
  1833. },
  1834. "isNullPointer": false,
  1835. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1836. "value": "",
  1837. "label": "Report"
  1838. }
  1839. ],
  1840. "methodType": 2,
  1841. "methodName": "Expect Equal",
  1842. "className": "Unit Testing",
  1843. "inputSlots": [
  1844. {
  1845. "m_id": "{628DE6EA-C66B-4DE6-BA03-200C33772F8C}"
  1846. },
  1847. {
  1848. "m_id": "{1351A9E6-05C7-4532-AFBE-AB3F1123E812}"
  1849. },
  1850. {
  1851. "m_id": "{81E2B55E-B426-4FFF-86C2-4865602DA17C}"
  1852. },
  1853. {
  1854. "m_id": "{1C687F2D-6AE0-4C76-BA62-7A2B6BB9B54B}"
  1855. }
  1856. ],
  1857. "orderedInputSlotIds": [
  1858. {
  1859. "m_id": "{628DE6EA-C66B-4DE6-BA03-200C33772F8C}"
  1860. },
  1861. {
  1862. "m_id": "{1351A9E6-05C7-4532-AFBE-AB3F1123E812}"
  1863. },
  1864. {
  1865. "m_id": "{81E2B55E-B426-4FFF-86C2-4865602DA17C}"
  1866. },
  1867. {
  1868. "m_id": "{1C687F2D-6AE0-4C76-BA62-7A2B6BB9B54B}"
  1869. }
  1870. ],
  1871. "outputSlotIds": [
  1872. {}
  1873. ]
  1874. }
  1875. }
  1876. },
  1877. {
  1878. "Id": {
  1879. "id": 85066754028127
  1880. },
  1881. "Name": "SC-Node(Expect False)",
  1882. "Components": {
  1883. "Component_[1668961861759588355]": {
  1884. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1885. "Id": 1668961861759588355,
  1886. "Slots": [
  1887. {
  1888. "isVisibile": false,
  1889. "id": {
  1890. "m_id": "{77800737-94DF-4031-9651-10D30C6EA725}"
  1891. },
  1892. "contracts": [
  1893. {
  1894. "$type": "SlotTypeContract"
  1895. }
  1896. ],
  1897. "slotName": "EntityId: 0",
  1898. "Descriptor": {
  1899. "ConnectionType": 1,
  1900. "SlotType": 2
  1901. },
  1902. "DataType": 1
  1903. },
  1904. {
  1905. "id": {
  1906. "m_id": "{5F48AA85-2CEF-4753-807E-D49C9141B091}"
  1907. },
  1908. "contracts": [
  1909. {
  1910. "$type": "SlotTypeContract"
  1911. }
  1912. ],
  1913. "slotName": "Candidate",
  1914. "toolTip": "a value that must be false",
  1915. "Descriptor": {
  1916. "ConnectionType": 1,
  1917. "SlotType": 2
  1918. },
  1919. "DataType": 1
  1920. },
  1921. {
  1922. "id": {
  1923. "m_id": "{671C0CD0-4ED8-44D0-8F66-30CCCB6DF181}"
  1924. },
  1925. "contracts": [
  1926. {
  1927. "$type": "SlotTypeContract"
  1928. }
  1929. ],
  1930. "slotName": "Report",
  1931. "toolTip": "additional notes for the test report",
  1932. "Descriptor": {
  1933. "ConnectionType": 1,
  1934. "SlotType": 2
  1935. },
  1936. "DataType": 1
  1937. },
  1938. {
  1939. "id": {
  1940. "m_id": "{37031607-73F2-4C70-BA54-694F61D608B8}"
  1941. },
  1942. "contracts": [
  1943. {
  1944. "$type": "SlotTypeContract"
  1945. }
  1946. ],
  1947. "slotName": "In",
  1948. "Descriptor": {
  1949. "ConnectionType": 1,
  1950. "SlotType": 1
  1951. }
  1952. },
  1953. {
  1954. "id": {
  1955. "m_id": "{93FE57A3-375F-40A2-B14E-64CAAE9644A5}"
  1956. },
  1957. "contracts": [
  1958. {
  1959. "$type": "SlotTypeContract"
  1960. }
  1961. ],
  1962. "slotName": "Out",
  1963. "Descriptor": {
  1964. "ConnectionType": 2,
  1965. "SlotType": 1
  1966. }
  1967. }
  1968. ],
  1969. "Datums": [
  1970. {
  1971. "scriptCanvasType": {
  1972. "m_type": 1
  1973. },
  1974. "isNullPointer": false,
  1975. "$type": "EntityId",
  1976. "value": {
  1977. "id": 4276206253
  1978. }
  1979. },
  1980. {
  1981. "scriptCanvasType": {
  1982. "m_type": 0
  1983. },
  1984. "isNullPointer": false,
  1985. "$type": "bool",
  1986. "value": false,
  1987. "label": "Candidate"
  1988. },
  1989. {
  1990. "scriptCanvasType": {
  1991. "m_type": 5
  1992. },
  1993. "isNullPointer": false,
  1994. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1995. "value": "",
  1996. "label": "Report"
  1997. }
  1998. ],
  1999. "methodType": 2,
  2000. "methodName": "Expect False",
  2001. "className": "Unit Testing",
  2002. "resultSlotIDs": [
  2003. {}
  2004. ],
  2005. "inputSlots": [
  2006. {
  2007. "m_id": "{77800737-94DF-4031-9651-10D30C6EA725}"
  2008. },
  2009. {
  2010. "m_id": "{5F48AA85-2CEF-4753-807E-D49C9141B091}"
  2011. },
  2012. {
  2013. "m_id": "{671C0CD0-4ED8-44D0-8F66-30CCCB6DF181}"
  2014. }
  2015. ],
  2016. "prettyClassName": "Unit Testing"
  2017. }
  2018. }
  2019. },
  2020. {
  2021. "Id": {
  2022. "id": 85122588602975
  2023. },
  2024. "Name": "SC-Node(ScriptCanvasTesting_TestAutoGenFunctions_ArgsReturnMulti)",
  2025. "Components": {
  2026. "Component_[17533633486820973738]": {
  2027. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2028. "Id": 17533633486820973738,
  2029. "Slots": [
  2030. {
  2031. "id": {
  2032. "m_id": "{052DC349-A2A1-4A8A-9EDE-45DD8F596C1D}"
  2033. },
  2034. "contracts": [
  2035. {
  2036. "$type": "SlotTypeContract"
  2037. }
  2038. ],
  2039. "slotName": "Number",
  2040. "Descriptor": {
  2041. "ConnectionType": 1,
  2042. "SlotType": 2
  2043. },
  2044. "DataType": 1
  2045. },
  2046. {
  2047. "id": {
  2048. "m_id": "{B8F53895-F641-42B1-B627-BA2197B24E0B}"
  2049. },
  2050. "contracts": [
  2051. {
  2052. "$type": "SlotTypeContract"
  2053. }
  2054. ],
  2055. "slotName": "In",
  2056. "Descriptor": {
  2057. "ConnectionType": 1,
  2058. "SlotType": 1
  2059. }
  2060. },
  2061. {
  2062. "id": {
  2063. "m_id": "{32A538E6-1DDB-499A-8ABE-0B8D33341151}"
  2064. },
  2065. "contracts": [
  2066. {
  2067. "$type": "SlotTypeContract"
  2068. }
  2069. ],
  2070. "slotName": "Out",
  2071. "Descriptor": {
  2072. "ConnectionType": 2,
  2073. "SlotType": 1
  2074. }
  2075. },
  2076. {
  2077. "id": {
  2078. "m_id": "{5D852354-6F27-4B45-BAFD-33A202729D3E}"
  2079. },
  2080. "contracts": [
  2081. {
  2082. "$type": "SlotTypeContract"
  2083. }
  2084. ],
  2085. "slotName": "String: 0",
  2086. "DisplayDataType": {
  2087. "m_type": 5
  2088. },
  2089. "Descriptor": {
  2090. "ConnectionType": 2,
  2091. "SlotType": 2
  2092. },
  2093. "DataType": 1
  2094. },
  2095. {
  2096. "id": {
  2097. "m_id": "{A4B5D04C-01EB-4314-B3A7-CD9C9C11EDE9}"
  2098. },
  2099. "contracts": [
  2100. {
  2101. "$type": "SlotTypeContract"
  2102. }
  2103. ],
  2104. "slotName": "Boolean: 1",
  2105. "DisplayDataType": {
  2106. "m_type": 0
  2107. },
  2108. "Descriptor": {
  2109. "ConnectionType": 2,
  2110. "SlotType": 2
  2111. },
  2112. "DataType": 1
  2113. }
  2114. ],
  2115. "Datums": [
  2116. {
  2117. "scriptCanvasType": {
  2118. "m_type": 3
  2119. },
  2120. "isNullPointer": false,
  2121. "$type": "double",
  2122. "value": -1.0,
  2123. "label": "Number"
  2124. }
  2125. ],
  2126. "methodType": 1,
  2127. "methodName": "ScriptCanvasTesting_TestAutoGenFunctions_ArgsReturnMulti",
  2128. "resultSlotIDs": [
  2129. {}
  2130. ],
  2131. "inputSlots": [
  2132. {
  2133. "m_id": "{052DC349-A2A1-4A8A-9EDE-45DD8F596C1D}"
  2134. }
  2135. ],
  2136. "prettyClassName": "ScriptCanvasTesting_TestAutoGenFunctions_ArgsReturnMulti"
  2137. }
  2138. }
  2139. },
  2140. {
  2141. "Id": {
  2142. "id": 85088228864607
  2143. },
  2144. "Name": "SC-Node(ScriptCanvasTesting_TestAutoGenFunctions_ArgsReturnMulti)",
  2145. "Components": {
  2146. "Component_[17533633486820973738]": {
  2147. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2148. "Id": 17533633486820973738,
  2149. "Slots": [
  2150. {
  2151. "id": {
  2152. "m_id": "{052DC349-A2A1-4A8A-9EDE-45DD8F596C1D}"
  2153. },
  2154. "contracts": [
  2155. {
  2156. "$type": "SlotTypeContract"
  2157. }
  2158. ],
  2159. "slotName": "Number",
  2160. "Descriptor": {
  2161. "ConnectionType": 1,
  2162. "SlotType": 2
  2163. },
  2164. "DataType": 1
  2165. },
  2166. {
  2167. "id": {
  2168. "m_id": "{B8F53895-F641-42B1-B627-BA2197B24E0B}"
  2169. },
  2170. "contracts": [
  2171. {
  2172. "$type": "SlotTypeContract"
  2173. }
  2174. ],
  2175. "slotName": "In",
  2176. "Descriptor": {
  2177. "ConnectionType": 1,
  2178. "SlotType": 1
  2179. }
  2180. },
  2181. {
  2182. "id": {
  2183. "m_id": "{32A538E6-1DDB-499A-8ABE-0B8D33341151}"
  2184. },
  2185. "contracts": [
  2186. {
  2187. "$type": "SlotTypeContract"
  2188. }
  2189. ],
  2190. "slotName": "Out",
  2191. "Descriptor": {
  2192. "ConnectionType": 2,
  2193. "SlotType": 1
  2194. }
  2195. },
  2196. {
  2197. "id": {
  2198. "m_id": "{5D852354-6F27-4B45-BAFD-33A202729D3E}"
  2199. },
  2200. "contracts": [
  2201. {
  2202. "$type": "SlotTypeContract"
  2203. }
  2204. ],
  2205. "slotName": "String: 0",
  2206. "DisplayDataType": {
  2207. "m_type": 5
  2208. },
  2209. "Descriptor": {
  2210. "ConnectionType": 2,
  2211. "SlotType": 2
  2212. },
  2213. "DataType": 1
  2214. },
  2215. {
  2216. "id": {
  2217. "m_id": "{A4B5D04C-01EB-4314-B3A7-CD9C9C11EDE9}"
  2218. },
  2219. "contracts": [
  2220. {
  2221. "$type": "SlotTypeContract"
  2222. }
  2223. ],
  2224. "slotName": "Boolean: 1",
  2225. "DisplayDataType": {
  2226. "m_type": 0
  2227. },
  2228. "Descriptor": {
  2229. "ConnectionType": 2,
  2230. "SlotType": 2
  2231. },
  2232. "DataType": 1
  2233. }
  2234. ],
  2235. "Datums": [
  2236. {
  2237. "scriptCanvasType": {
  2238. "m_type": 3
  2239. },
  2240. "isNullPointer": false,
  2241. "$type": "double",
  2242. "value": 1.0,
  2243. "label": "Number"
  2244. }
  2245. ],
  2246. "methodType": 1,
  2247. "methodName": "ScriptCanvasTesting_TestAutoGenFunctions_ArgsReturnMulti",
  2248. "resultSlotIDs": [
  2249. {}
  2250. ],
  2251. "inputSlots": [
  2252. {
  2253. "m_id": "{052DC349-A2A1-4A8A-9EDE-45DD8F596C1D}"
  2254. }
  2255. ],
  2256. "prettyClassName": "ScriptCanvasTesting_TestAutoGenFunctions_ArgsReturnMulti"
  2257. }
  2258. }
  2259. },
  2260. {
  2261. "Id": {
  2262. "id": 85010919453279
  2263. },
  2264. "Name": "SC-Node(ScriptCanvasTesting_TestAutoGenFunctions_NegateBranchNonBooleanWithResult)",
  2265. "Components": {
  2266. "Component_[18437663580430915372]": {
  2267. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2268. "Id": 18437663580430915372,
  2269. "Slots": [
  2270. {
  2271. "id": {
  2272. "m_id": "{E29A4A3B-50D3-4490-9264-8B5A032C1319}"
  2273. },
  2274. "contracts": [
  2275. {
  2276. "$type": "SlotTypeContract"
  2277. }
  2278. ],
  2279. "slotName": "Number",
  2280. "Descriptor": {
  2281. "ConnectionType": 1,
  2282. "SlotType": 2
  2283. },
  2284. "DataType": 1
  2285. },
  2286. {
  2287. "id": {
  2288. "m_id": "{F103705C-1C45-4C17-8252-EA3DE823BEB6}"
  2289. },
  2290. "contracts": [
  2291. {
  2292. "$type": "SlotTypeContract"
  2293. }
  2294. ],
  2295. "slotName": "In",
  2296. "Descriptor": {
  2297. "ConnectionType": 1,
  2298. "SlotType": 1
  2299. }
  2300. },
  2301. {
  2302. "id": {
  2303. "m_id": "{2F6B95F8-C6DF-4A07-AEAC-6D92759E4FB9}"
  2304. },
  2305. "contracts": [
  2306. {
  2307. "$type": "SlotTypeContract"
  2308. }
  2309. ],
  2310. "slotName": "Negate Is Positive",
  2311. "Descriptor": {
  2312. "ConnectionType": 2,
  2313. "SlotType": 1
  2314. }
  2315. },
  2316. {
  2317. "id": {
  2318. "m_id": "{7EC2858A-95B0-4AC2-AFBE-9C68568AF1E7}"
  2319. },
  2320. "contracts": [
  2321. {
  2322. "$type": "SlotTypeContract"
  2323. }
  2324. ],
  2325. "slotName": "Negate Is Negative",
  2326. "Descriptor": {
  2327. "ConnectionType": 2,
  2328. "SlotType": 1
  2329. }
  2330. },
  2331. {
  2332. "id": {
  2333. "m_id": "{5A386ED1-51EE-4C1A-BFEF-0013BEC9C190}"
  2334. },
  2335. "contracts": [
  2336. {
  2337. "$type": "SlotTypeContract"
  2338. }
  2339. ],
  2340. "slotName": "Number",
  2341. "DisplayDataType": {
  2342. "m_type": 3
  2343. },
  2344. "Descriptor": {
  2345. "ConnectionType": 2,
  2346. "SlotType": 2
  2347. },
  2348. "DataType": 1
  2349. }
  2350. ],
  2351. "Datums": [
  2352. {
  2353. "scriptCanvasType": {
  2354. "m_type": 3
  2355. },
  2356. "isNullPointer": false,
  2357. "$type": "double",
  2358. "value": -1.0,
  2359. "label": "Number"
  2360. }
  2361. ],
  2362. "methodType": 1,
  2363. "methodName": "ScriptCanvasTesting_TestAutoGenFunctions_NegateBranchNonBooleanWithResult",
  2364. "resultSlotIDs": [
  2365. {}
  2366. ],
  2367. "inputSlots": [
  2368. {
  2369. "m_id": "{E29A4A3B-50D3-4490-9264-8B5A032C1319}"
  2370. }
  2371. ],
  2372. "prettyClassName": "ScriptCanvasTesting_TestAutoGenFunctions_NegateBranchNonBooleanWithResult"
  2373. }
  2374. }
  2375. },
  2376. {
  2377. "Id": {
  2378. "id": 85049574158943
  2379. },
  2380. "Name": "SC-Node(ScriptCanvasTesting_TestAutoGenFunctions_NoArgsReturn)",
  2381. "Components": {
  2382. "Component_[2485851523585745525]": {
  2383. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2384. "Id": 2485851523585745525,
  2385. "Slots": [
  2386. {
  2387. "id": {
  2388. "m_id": "{8E71BB16-2DE8-48F3-89F6-58C3ADF39676}"
  2389. },
  2390. "contracts": [
  2391. {
  2392. "$type": "SlotTypeContract"
  2393. }
  2394. ],
  2395. "slotName": "In",
  2396. "Descriptor": {
  2397. "ConnectionType": 1,
  2398. "SlotType": 1
  2399. }
  2400. },
  2401. {
  2402. "id": {
  2403. "m_id": "{2BE5B4BE-7849-453A-897F-7C87EC277E7C}"
  2404. },
  2405. "contracts": [
  2406. {
  2407. "$type": "SlotTypeContract"
  2408. }
  2409. ],
  2410. "slotName": "Out",
  2411. "Descriptor": {
  2412. "ConnectionType": 2,
  2413. "SlotType": 1
  2414. }
  2415. },
  2416. {
  2417. "id": {
  2418. "m_id": "{C730745B-2883-4450-9E6E-6359F93F80B6}"
  2419. },
  2420. "contracts": [
  2421. {
  2422. "$type": "SlotTypeContract"
  2423. }
  2424. ],
  2425. "slotName": "Number",
  2426. "DisplayDataType": {
  2427. "m_type": 3
  2428. },
  2429. "Descriptor": {
  2430. "ConnectionType": 2,
  2431. "SlotType": 2
  2432. },
  2433. "DataType": 1
  2434. }
  2435. ],
  2436. "methodType": 1,
  2437. "methodName": "ScriptCanvasTesting_TestAutoGenFunctions_NoArgsReturn",
  2438. "resultSlotIDs": [
  2439. {}
  2440. ],
  2441. "prettyClassName": "ScriptCanvasTesting_TestAutoGenFunctions_NoArgsReturn"
  2442. }
  2443. }
  2444. },
  2445. {
  2446. "Id": {
  2447. "id": 85032394289759
  2448. },
  2449. "Name": "SC-Node(Expect True)",
  2450. "Components": {
  2451. "Component_[3062918695660546153]": {
  2452. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2453. "Id": 3062918695660546153,
  2454. "Slots": [
  2455. {
  2456. "isVisibile": false,
  2457. "id": {
  2458. "m_id": "{5817E2D5-B1EA-4817-A9A4-52DD77405F45}"
  2459. },
  2460. "contracts": [
  2461. {
  2462. "$type": "SlotTypeContract"
  2463. }
  2464. ],
  2465. "slotName": "EntityId: 0",
  2466. "Descriptor": {
  2467. "ConnectionType": 1,
  2468. "SlotType": 2
  2469. },
  2470. "DataType": 1
  2471. },
  2472. {
  2473. "id": {
  2474. "m_id": "{CC084E3C-1AEF-4FEC-B065-4AC47EE6073C}"
  2475. },
  2476. "contracts": [
  2477. {
  2478. "$type": "SlotTypeContract"
  2479. }
  2480. ],
  2481. "slotName": "Candidate",
  2482. "toolTip": "a value that must be true",
  2483. "Descriptor": {
  2484. "ConnectionType": 1,
  2485. "SlotType": 2
  2486. },
  2487. "DataType": 1
  2488. },
  2489. {
  2490. "id": {
  2491. "m_id": "{D8DC93B8-79BE-47EA-B247-DCC08A5889E9}"
  2492. },
  2493. "contracts": [
  2494. {
  2495. "$type": "SlotTypeContract"
  2496. }
  2497. ],
  2498. "slotName": "Report",
  2499. "toolTip": "additional notes for the test report",
  2500. "Descriptor": {
  2501. "ConnectionType": 1,
  2502. "SlotType": 2
  2503. },
  2504. "DataType": 1
  2505. },
  2506. {
  2507. "id": {
  2508. "m_id": "{E00861CF-6DF1-4B1C-B8FB-4320A5356DB6}"
  2509. },
  2510. "contracts": [
  2511. {
  2512. "$type": "SlotTypeContract"
  2513. }
  2514. ],
  2515. "slotName": "In",
  2516. "Descriptor": {
  2517. "ConnectionType": 1,
  2518. "SlotType": 1
  2519. }
  2520. },
  2521. {
  2522. "id": {
  2523. "m_id": "{54A6152D-3E69-4140-95F0-668CBA0D0705}"
  2524. },
  2525. "contracts": [
  2526. {
  2527. "$type": "SlotTypeContract"
  2528. }
  2529. ],
  2530. "slotName": "Out",
  2531. "Descriptor": {
  2532. "ConnectionType": 2,
  2533. "SlotType": 1
  2534. }
  2535. }
  2536. ],
  2537. "Datums": [
  2538. {
  2539. "scriptCanvasType": {
  2540. "m_type": 1
  2541. },
  2542. "isNullPointer": false,
  2543. "$type": "EntityId",
  2544. "value": {
  2545. "id": 4276206253
  2546. }
  2547. },
  2548. {
  2549. "scriptCanvasType": {
  2550. "m_type": 0
  2551. },
  2552. "isNullPointer": false,
  2553. "$type": "bool",
  2554. "value": false,
  2555. "label": "Candidate"
  2556. },
  2557. {
  2558. "scriptCanvasType": {
  2559. "m_type": 5
  2560. },
  2561. "isNullPointer": false,
  2562. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  2563. "value": "",
  2564. "label": "Report"
  2565. }
  2566. ],
  2567. "methodType": 2,
  2568. "methodName": "Expect True",
  2569. "className": "Unit Testing",
  2570. "resultSlotIDs": [
  2571. {}
  2572. ],
  2573. "inputSlots": [
  2574. {
  2575. "m_id": "{5817E2D5-B1EA-4817-A9A4-52DD77405F45}"
  2576. },
  2577. {
  2578. "m_id": "{CC084E3C-1AEF-4FEC-B065-4AC47EE6073C}"
  2579. },
  2580. {
  2581. "m_id": "{D8DC93B8-79BE-47EA-B247-DCC08A5889E9}"
  2582. }
  2583. ],
  2584. "prettyClassName": "Unit Testing"
  2585. }
  2586. }
  2587. },
  2588. {
  2589. "Id": {
  2590. "id": 85071048995423
  2591. },
  2592. "Name": "SC-Node(ScriptCanvasTesting_TestAutoGenFunctions_NegateBranchBooleanNoResult)",
  2593. "Components": {
  2594. "Component_[3967510757149668712]": {
  2595. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2596. "Id": 3967510757149668712,
  2597. "Slots": [
  2598. {
  2599. "id": {
  2600. "m_id": "{2185CC31-0503-4D29-9397-A7A9BFE59394}"
  2601. },
  2602. "contracts": [
  2603. {
  2604. "$type": "SlotTypeContract"
  2605. }
  2606. ],
  2607. "slotName": "Number",
  2608. "Descriptor": {
  2609. "ConnectionType": 1,
  2610. "SlotType": 2
  2611. },
  2612. "DataType": 1
  2613. },
  2614. {
  2615. "id": {
  2616. "m_id": "{CA52294E-F514-4BFF-B0AE-CED461FD422F}"
  2617. },
  2618. "contracts": [
  2619. {
  2620. "$type": "SlotTypeContract"
  2621. }
  2622. ],
  2623. "slotName": "In",
  2624. "Descriptor": {
  2625. "ConnectionType": 1,
  2626. "SlotType": 1
  2627. }
  2628. },
  2629. {
  2630. "id": {
  2631. "m_id": "{BF1F15DE-7722-4BE7-A548-8E4FEED5FFD7}"
  2632. },
  2633. "contracts": [
  2634. {
  2635. "$type": "SlotTypeContract"
  2636. }
  2637. ],
  2638. "slotName": "True",
  2639. "Descriptor": {
  2640. "ConnectionType": 2,
  2641. "SlotType": 1
  2642. }
  2643. },
  2644. {
  2645. "id": {
  2646. "m_id": "{A6F073BD-065C-4269-9521-9860E27D6798}"
  2647. },
  2648. "contracts": [
  2649. {
  2650. "$type": "SlotTypeContract"
  2651. }
  2652. ],
  2653. "slotName": "False",
  2654. "Descriptor": {
  2655. "ConnectionType": 2,
  2656. "SlotType": 1
  2657. }
  2658. },
  2659. {
  2660. "isVisibile": false,
  2661. "id": {
  2662. "m_id": "{8E1A5BD3-149F-4049-A97C-F77703723A78}"
  2663. },
  2664. "contracts": [
  2665. {
  2666. "$type": "SlotTypeContract"
  2667. }
  2668. ],
  2669. "slotName": "Boolean",
  2670. "DisplayDataType": {
  2671. "m_type": 0
  2672. },
  2673. "Descriptor": {
  2674. "ConnectionType": 2,
  2675. "SlotType": 2
  2676. },
  2677. "DataType": 1
  2678. }
  2679. ],
  2680. "Datums": [
  2681. {
  2682. "scriptCanvasType": {
  2683. "m_type": 3
  2684. },
  2685. "isNullPointer": false,
  2686. "$type": "double",
  2687. "value": 1.0,
  2688. "label": "Number"
  2689. }
  2690. ],
  2691. "methodType": 1,
  2692. "methodName": "ScriptCanvasTesting_TestAutoGenFunctions_NegateBranchBooleanNoResult",
  2693. "resultSlotIDs": [
  2694. {}
  2695. ],
  2696. "inputSlots": [
  2697. {
  2698. "m_id": "{2185CC31-0503-4D29-9397-A7A9BFE59394}"
  2699. }
  2700. ],
  2701. "prettyClassName": "ScriptCanvasTesting_TestAutoGenFunctions_NegateBranchBooleanNoResult"
  2702. }
  2703. }
  2704. },
  2705. {
  2706. "Id": {
  2707. "id": 85109703701087
  2708. },
  2709. "Name": "SC-Node(Expect Equal)",
  2710. "Components": {
  2711. "Component_[4847395922256083199]": {
  2712. "$type": "MethodOverloaded",
  2713. "Id": 4847395922256083199,
  2714. "Slots": [
  2715. {
  2716. "isVisibile": false,
  2717. "id": {
  2718. "m_id": "{0C07660E-FFC8-417F-BDEF-9660008D1D77}"
  2719. },
  2720. "contracts": [
  2721. {
  2722. "$type": "SlotTypeContract"
  2723. }
  2724. ],
  2725. "slotName": "EntityId: 0",
  2726. "DisplayDataType": {
  2727. "m_type": 1
  2728. },
  2729. "Descriptor": {
  2730. "ConnectionType": 1,
  2731. "SlotType": 2
  2732. },
  2733. "DataType": 1
  2734. },
  2735. {
  2736. "id": {
  2737. "m_id": "{BEC4DEA2-B1F6-471A-98E7-D4142CB044EE}"
  2738. },
  2739. "DynamicTypeOverride": 1,
  2740. "contracts": [
  2741. {
  2742. "$type": "SlotTypeContract"
  2743. },
  2744. {
  2745. "$type": "OverloadContract"
  2746. }
  2747. ],
  2748. "slotName": "Candidate",
  2749. "toolTip": "left of ==",
  2750. "DisplayDataType": {
  2751. "m_type": 5
  2752. },
  2753. "Descriptor": {
  2754. "ConnectionType": 1,
  2755. "SlotType": 2
  2756. },
  2757. "DataType": 1
  2758. },
  2759. {
  2760. "id": {
  2761. "m_id": "{65939886-5784-4A90-8C74-EE35A3951202}"
  2762. },
  2763. "DynamicTypeOverride": 1,
  2764. "contracts": [
  2765. {
  2766. "$type": "SlotTypeContract"
  2767. },
  2768. {
  2769. "$type": "OverloadContract"
  2770. }
  2771. ],
  2772. "slotName": "Reference",
  2773. "toolTip": "right of ==",
  2774. "DisplayDataType": {
  2775. "m_type": 5
  2776. },
  2777. "Descriptor": {
  2778. "ConnectionType": 1,
  2779. "SlotType": 2
  2780. },
  2781. "DataType": 1
  2782. },
  2783. {
  2784. "id": {
  2785. "m_id": "{E4391012-4C8A-40F7-A7A9-638CC4AD69EC}"
  2786. },
  2787. "contracts": [
  2788. {
  2789. "$type": "SlotTypeContract"
  2790. }
  2791. ],
  2792. "slotName": "Report",
  2793. "toolTip": "additional notes for the test report",
  2794. "DisplayDataType": {
  2795. "m_type": 5
  2796. },
  2797. "Descriptor": {
  2798. "ConnectionType": 1,
  2799. "SlotType": 2
  2800. },
  2801. "DataType": 1
  2802. },
  2803. {
  2804. "id": {
  2805. "m_id": "{798EE5CF-2320-459E-94FE-56BBC01404B8}"
  2806. },
  2807. "contracts": [
  2808. {
  2809. "$type": "SlotTypeContract"
  2810. }
  2811. ],
  2812. "slotName": "In",
  2813. "Descriptor": {
  2814. "ConnectionType": 1,
  2815. "SlotType": 1
  2816. }
  2817. },
  2818. {
  2819. "id": {
  2820. "m_id": "{97ED1825-C0AF-47E0-AB31-B375A8E1ABEA}"
  2821. },
  2822. "contracts": [
  2823. {
  2824. "$type": "SlotTypeContract"
  2825. }
  2826. ],
  2827. "slotName": "Out",
  2828. "Descriptor": {
  2829. "ConnectionType": 2,
  2830. "SlotType": 1
  2831. }
  2832. }
  2833. ],
  2834. "Datums": [
  2835. {
  2836. "scriptCanvasType": {
  2837. "m_type": 1
  2838. },
  2839. "isNullPointer": false,
  2840. "$type": "EntityId",
  2841. "value": {
  2842. "id": 4276206253
  2843. }
  2844. },
  2845. {
  2846. "scriptCanvasType": {
  2847. "m_type": 5
  2848. },
  2849. "isNullPointer": false,
  2850. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  2851. "value": "",
  2852. "label": "Candidate"
  2853. },
  2854. {
  2855. "scriptCanvasType": {
  2856. "m_type": 5
  2857. },
  2858. "isNullPointer": false,
  2859. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  2860. "value": "no-args",
  2861. "label": "Reference"
  2862. },
  2863. {
  2864. "scriptCanvasType": {
  2865. "m_type": 5
  2866. },
  2867. "isNullPointer": false,
  2868. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  2869. "value": "",
  2870. "label": "Report"
  2871. }
  2872. ],
  2873. "methodType": 2,
  2874. "methodName": "Expect Equal",
  2875. "className": "Unit Testing",
  2876. "inputSlots": [
  2877. {
  2878. "m_id": "{0C07660E-FFC8-417F-BDEF-9660008D1D77}"
  2879. },
  2880. {
  2881. "m_id": "{BEC4DEA2-B1F6-471A-98E7-D4142CB044EE}"
  2882. },
  2883. {
  2884. "m_id": "{65939886-5784-4A90-8C74-EE35A3951202}"
  2885. },
  2886. {
  2887. "m_id": "{E4391012-4C8A-40F7-A7A9-638CC4AD69EC}"
  2888. }
  2889. ],
  2890. "orderedInputSlotIds": [
  2891. {
  2892. "m_id": "{0C07660E-FFC8-417F-BDEF-9660008D1D77}"
  2893. },
  2894. {
  2895. "m_id": "{BEC4DEA2-B1F6-471A-98E7-D4142CB044EE}"
  2896. },
  2897. {
  2898. "m_id": "{65939886-5784-4A90-8C74-EE35A3951202}"
  2899. },
  2900. {
  2901. "m_id": "{E4391012-4C8A-40F7-A7A9-638CC4AD69EC}"
  2902. }
  2903. ],
  2904. "outputSlotIds": [
  2905. {}
  2906. ]
  2907. }
  2908. }
  2909. },
  2910. {
  2911. "Id": {
  2912. "id": 85092523831903
  2913. },
  2914. "Name": "SC-Node(Expect Equal)",
  2915. "Components": {
  2916. "Component_[5579049030119547237]": {
  2917. "$type": "MethodOverloaded",
  2918. "Id": 5579049030119547237,
  2919. "Slots": [
  2920. {
  2921. "isVisibile": false,
  2922. "id": {
  2923. "m_id": "{62C9D478-8410-4E4B-83D5-B8438C1CCD35}"
  2924. },
  2925. "contracts": [
  2926. {
  2927. "$type": "SlotTypeContract"
  2928. }
  2929. ],
  2930. "slotName": "EntityId: 0",
  2931. "DisplayDataType": {
  2932. "m_type": 1
  2933. },
  2934. "Descriptor": {
  2935. "ConnectionType": 1,
  2936. "SlotType": 2
  2937. },
  2938. "DataType": 1
  2939. },
  2940. {
  2941. "id": {
  2942. "m_id": "{0E001F0D-60B0-4769-9849-204FC00DCA28}"
  2943. },
  2944. "DynamicTypeOverride": 1,
  2945. "contracts": [
  2946. {
  2947. "$type": "SlotTypeContract"
  2948. },
  2949. {
  2950. "$type": "OverloadContract"
  2951. }
  2952. ],
  2953. "slotName": "Candidate",
  2954. "toolTip": "left of ==",
  2955. "DisplayDataType": {
  2956. "m_type": 3
  2957. },
  2958. "Descriptor": {
  2959. "ConnectionType": 1,
  2960. "SlotType": 2
  2961. },
  2962. "DataType": 1
  2963. },
  2964. {
  2965. "id": {
  2966. "m_id": "{B30FA10D-0F2B-4C20-82AA-5105D97C6EF1}"
  2967. },
  2968. "DynamicTypeOverride": 1,
  2969. "contracts": [
  2970. {
  2971. "$type": "SlotTypeContract"
  2972. },
  2973. {
  2974. "$type": "OverloadContract"
  2975. }
  2976. ],
  2977. "slotName": "Reference",
  2978. "toolTip": "right of ==",
  2979. "DisplayDataType": {
  2980. "m_type": 3
  2981. },
  2982. "Descriptor": {
  2983. "ConnectionType": 1,
  2984. "SlotType": 2
  2985. },
  2986. "DataType": 1
  2987. },
  2988. {
  2989. "id": {
  2990. "m_id": "{AFBE2D0D-3DCB-4C53-914F-E1B5EE50922B}"
  2991. },
  2992. "contracts": [
  2993. {
  2994. "$type": "SlotTypeContract"
  2995. }
  2996. ],
  2997. "slotName": "Report",
  2998. "toolTip": "additional notes for the test report",
  2999. "DisplayDataType": {
  3000. "m_type": 5
  3001. },
  3002. "Descriptor": {
  3003. "ConnectionType": 1,
  3004. "SlotType": 2
  3005. },
  3006. "DataType": 1
  3007. },
  3008. {
  3009. "id": {
  3010. "m_id": "{606E776C-1BD0-4E48-BD35-2D01D7A9C8AF}"
  3011. },
  3012. "contracts": [
  3013. {
  3014. "$type": "SlotTypeContract"
  3015. }
  3016. ],
  3017. "slotName": "In",
  3018. "Descriptor": {
  3019. "ConnectionType": 1,
  3020. "SlotType": 1
  3021. }
  3022. },
  3023. {
  3024. "id": {
  3025. "m_id": "{8EB24D79-F7C9-4052-8B2F-5DCF64FD8402}"
  3026. },
  3027. "contracts": [
  3028. {
  3029. "$type": "SlotTypeContract"
  3030. }
  3031. ],
  3032. "slotName": "Out",
  3033. "Descriptor": {
  3034. "ConnectionType": 2,
  3035. "SlotType": 1
  3036. }
  3037. }
  3038. ],
  3039. "Datums": [
  3040. {
  3041. "scriptCanvasType": {
  3042. "m_type": 1
  3043. },
  3044. "isNullPointer": false,
  3045. "$type": "EntityId",
  3046. "value": {
  3047. "id": 4276206253
  3048. }
  3049. },
  3050. {
  3051. "scriptCanvasType": {
  3052. "m_type": 3
  3053. },
  3054. "isNullPointer": false,
  3055. "$type": "double",
  3056. "value": 0.0,
  3057. "label": "Candidate"
  3058. },
  3059. {
  3060. "scriptCanvasType": {
  3061. "m_type": 3
  3062. },
  3063. "isNullPointer": false,
  3064. "$type": "double",
  3065. "value": 2.0,
  3066. "label": "Reference"
  3067. },
  3068. {
  3069. "scriptCanvasType": {
  3070. "m_type": 5
  3071. },
  3072. "isNullPointer": false,
  3073. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  3074. "value": "",
  3075. "label": "Report"
  3076. }
  3077. ],
  3078. "methodType": 2,
  3079. "methodName": "Expect Equal",
  3080. "className": "Unit Testing",
  3081. "inputSlots": [
  3082. {
  3083. "m_id": "{62C9D478-8410-4E4B-83D5-B8438C1CCD35}"
  3084. },
  3085. {
  3086. "m_id": "{0E001F0D-60B0-4769-9849-204FC00DCA28}"
  3087. },
  3088. {
  3089. "m_id": "{B30FA10D-0F2B-4C20-82AA-5105D97C6EF1}"
  3090. },
  3091. {
  3092. "m_id": "{AFBE2D0D-3DCB-4C53-914F-E1B5EE50922B}"
  3093. }
  3094. ],
  3095. "orderedInputSlotIds": [
  3096. {
  3097. "m_id": "{62C9D478-8410-4E4B-83D5-B8438C1CCD35}"
  3098. },
  3099. {
  3100. "m_id": "{0E001F0D-60B0-4769-9849-204FC00DCA28}"
  3101. },
  3102. {
  3103. "m_id": "{B30FA10D-0F2B-4C20-82AA-5105D97C6EF1}"
  3104. },
  3105. {
  3106. "m_id": "{AFBE2D0D-3DCB-4C53-914F-E1B5EE50922B}"
  3107. }
  3108. ],
  3109. "outputSlotIds": [
  3110. {}
  3111. ]
  3112. }
  3113. }
  3114. },
  3115. {
  3116. "Id": {
  3117. "id": 85126883570271
  3118. },
  3119. "Name": "SC-Node(ScriptCanvasTesting_TestAutoGenFunctions_NegateBranchNonBooleanWithResult)",
  3120. "Components": {
  3121. "Component_[5750619540745290201]": {
  3122. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  3123. "Id": 5750619540745290201,
  3124. "Slots": [
  3125. {
  3126. "id": {
  3127. "m_id": "{CDAC3E5B-607A-4F9B-9E9E-A208F24D1D32}"
  3128. },
  3129. "contracts": [
  3130. {
  3131. "$type": "SlotTypeContract"
  3132. }
  3133. ],
  3134. "slotName": "Number",
  3135. "Descriptor": {
  3136. "ConnectionType": 1,
  3137. "SlotType": 2
  3138. },
  3139. "DataType": 1
  3140. },
  3141. {
  3142. "id": {
  3143. "m_id": "{CB413421-9588-43A4-9661-316AFAAFF499}"
  3144. },
  3145. "contracts": [
  3146. {
  3147. "$type": "SlotTypeContract"
  3148. }
  3149. ],
  3150. "slotName": "In",
  3151. "Descriptor": {
  3152. "ConnectionType": 1,
  3153. "SlotType": 1
  3154. }
  3155. },
  3156. {
  3157. "id": {
  3158. "m_id": "{3A5BAD8E-2D09-4D4E-992E-FFABE42B2EFD}"
  3159. },
  3160. "contracts": [
  3161. {
  3162. "$type": "SlotTypeContract"
  3163. }
  3164. ],
  3165. "slotName": "Negate Is Positive",
  3166. "Descriptor": {
  3167. "ConnectionType": 2,
  3168. "SlotType": 1
  3169. }
  3170. },
  3171. {
  3172. "id": {
  3173. "m_id": "{0CE38470-CC9D-448B-8ADC-62569478B977}"
  3174. },
  3175. "contracts": [
  3176. {
  3177. "$type": "SlotTypeContract"
  3178. }
  3179. ],
  3180. "slotName": "Negate Is Negative",
  3181. "Descriptor": {
  3182. "ConnectionType": 2,
  3183. "SlotType": 1
  3184. }
  3185. },
  3186. {
  3187. "id": {
  3188. "m_id": "{29FDEE6B-3AEA-447F-A6C5-A8593062FBEF}"
  3189. },
  3190. "contracts": [
  3191. {
  3192. "$type": "SlotTypeContract"
  3193. }
  3194. ],
  3195. "slotName": "Number",
  3196. "DisplayDataType": {
  3197. "m_type": 3
  3198. },
  3199. "Descriptor": {
  3200. "ConnectionType": 2,
  3201. "SlotType": 2
  3202. },
  3203. "DataType": 1
  3204. }
  3205. ],
  3206. "Datums": [
  3207. {
  3208. "scriptCanvasType": {
  3209. "m_type": 3
  3210. },
  3211. "isNullPointer": false,
  3212. "$type": "double",
  3213. "value": 1.0,
  3214. "label": "Number"
  3215. }
  3216. ],
  3217. "methodType": 1,
  3218. "methodName": "ScriptCanvasTesting_TestAutoGenFunctions_NegateBranchNonBooleanWithResult",
  3219. "resultSlotIDs": [
  3220. {}
  3221. ],
  3222. "inputSlots": [
  3223. {
  3224. "m_id": "{CDAC3E5B-607A-4F9B-9E9E-A208F24D1D32}"
  3225. }
  3226. ],
  3227. "prettyClassName": "ScriptCanvasTesting_TestAutoGenFunctions_NegateBranchNonBooleanWithResult"
  3228. }
  3229. }
  3230. },
  3231. {
  3232. "Id": {
  3233. "id": 85015214420575
  3234. },
  3235. "Name": "SC-Node(ScriptCanvasTesting_TestAutoGenFunctions_NegateBranchBooleanNoResult)",
  3236. "Components": {
  3237. "Component_[6439084246075611601]": {
  3238. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  3239. "Id": 6439084246075611601,
  3240. "Slots": [
  3241. {
  3242. "id": {
  3243. "m_id": "{FA51A9DD-7D44-4FA2-B8FC-C57D096FC4E5}"
  3244. },
  3245. "contracts": [
  3246. {
  3247. "$type": "SlotTypeContract"
  3248. }
  3249. ],
  3250. "slotName": "Number",
  3251. "Descriptor": {
  3252. "ConnectionType": 1,
  3253. "SlotType": 2
  3254. },
  3255. "DataType": 1
  3256. },
  3257. {
  3258. "id": {
  3259. "m_id": "{BD036D08-46DC-4691-98F1-968F3D597AF1}"
  3260. },
  3261. "contracts": [
  3262. {
  3263. "$type": "SlotTypeContract"
  3264. }
  3265. ],
  3266. "slotName": "In",
  3267. "Descriptor": {
  3268. "ConnectionType": 1,
  3269. "SlotType": 1
  3270. }
  3271. },
  3272. {
  3273. "id": {
  3274. "m_id": "{7AC71137-5615-432C-BC23-BC0190142B81}"
  3275. },
  3276. "contracts": [
  3277. {
  3278. "$type": "SlotTypeContract"
  3279. }
  3280. ],
  3281. "slotName": "True",
  3282. "Descriptor": {
  3283. "ConnectionType": 2,
  3284. "SlotType": 1
  3285. }
  3286. },
  3287. {
  3288. "id": {
  3289. "m_id": "{31D2AA0B-E8E0-472E-8911-88A94960BC9E}"
  3290. },
  3291. "contracts": [
  3292. {
  3293. "$type": "SlotTypeContract"
  3294. }
  3295. ],
  3296. "slotName": "False",
  3297. "Descriptor": {
  3298. "ConnectionType": 2,
  3299. "SlotType": 1
  3300. }
  3301. },
  3302. {
  3303. "isVisibile": false,
  3304. "id": {
  3305. "m_id": "{A4BF645F-5162-4C48-AC87-B3BC9C6DEAA1}"
  3306. },
  3307. "contracts": [
  3308. {
  3309. "$type": "SlotTypeContract"
  3310. }
  3311. ],
  3312. "slotName": "Boolean",
  3313. "DisplayDataType": {
  3314. "m_type": 0
  3315. },
  3316. "Descriptor": {
  3317. "ConnectionType": 2,
  3318. "SlotType": 2
  3319. },
  3320. "DataType": 1
  3321. }
  3322. ],
  3323. "Datums": [
  3324. {
  3325. "scriptCanvasType": {
  3326. "m_type": 3
  3327. },
  3328. "isNullPointer": false,
  3329. "$type": "double",
  3330. "value": -1.0,
  3331. "label": "Number"
  3332. }
  3333. ],
  3334. "methodType": 1,
  3335. "methodName": "ScriptCanvasTesting_TestAutoGenFunctions_NegateBranchBooleanNoResult",
  3336. "resultSlotIDs": [
  3337. {}
  3338. ],
  3339. "inputSlots": [
  3340. {
  3341. "m_id": "{FA51A9DD-7D44-4FA2-B8FC-C57D096FC4E5}"
  3342. }
  3343. ],
  3344. "prettyClassName": "ScriptCanvasTesting_TestAutoGenFunctions_NegateBranchBooleanNoResult"
  3345. }
  3346. }
  3347. },
  3348. {
  3349. "Id": {
  3350. "id": 85053869126239
  3351. },
  3352. "Name": "SC-Node(ScriptCanvasTesting_TestAutoGenFunctions_MaxReturnByPointerInteger)",
  3353. "Components": {
  3354. "Component_[7013838700131924453]": {
  3355. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  3356. "Id": 7013838700131924453,
  3357. "Slots": [
  3358. {
  3359. "id": {
  3360. "m_id": "{95FA2E85-43E3-4143-90AD-E5BAF2B96F4B}"
  3361. },
  3362. "contracts": [
  3363. {
  3364. "$type": "SlotTypeContract"
  3365. }
  3366. ],
  3367. "slotName": "Number: 0",
  3368. "Descriptor": {
  3369. "ConnectionType": 1,
  3370. "SlotType": 2
  3371. },
  3372. "DataType": 1
  3373. },
  3374. {
  3375. "id": {
  3376. "m_id": "{3EAF6C9E-0DF2-457C-A5C5-DC488AF536D5}"
  3377. },
  3378. "contracts": [
  3379. {
  3380. "$type": "SlotTypeContract"
  3381. }
  3382. ],
  3383. "slotName": "Number: 1",
  3384. "Descriptor": {
  3385. "ConnectionType": 1,
  3386. "SlotType": 2
  3387. },
  3388. "DataType": 1
  3389. },
  3390. {
  3391. "id": {
  3392. "m_id": "{2FA680B8-5EE3-4CC4-8D04-EA5C604BCCAF}"
  3393. },
  3394. "contracts": [
  3395. {
  3396. "$type": "SlotTypeContract"
  3397. }
  3398. ],
  3399. "slotName": "In",
  3400. "Descriptor": {
  3401. "ConnectionType": 1,
  3402. "SlotType": 1
  3403. }
  3404. },
  3405. {
  3406. "id": {
  3407. "m_id": "{A08868C7-527F-4724-9FC3-F225727DB73D}"
  3408. },
  3409. "contracts": [
  3410. {
  3411. "$type": "SlotTypeContract"
  3412. }
  3413. ],
  3414. "slotName": "Out",
  3415. "Descriptor": {
  3416. "ConnectionType": 2,
  3417. "SlotType": 1
  3418. }
  3419. },
  3420. {
  3421. "id": {
  3422. "m_id": "{0781CA7B-7800-45D1-9690-CCF87FE1F691}"
  3423. },
  3424. "contracts": [
  3425. {
  3426. "$type": "SlotTypeContract"
  3427. }
  3428. ],
  3429. "slotName": "Number",
  3430. "DisplayDataType": {
  3431. "m_type": 3
  3432. },
  3433. "Descriptor": {
  3434. "ConnectionType": 2,
  3435. "SlotType": 2
  3436. },
  3437. "DataType": 1
  3438. }
  3439. ],
  3440. "Datums": [
  3441. {
  3442. "scriptCanvasType": {
  3443. "m_type": 3
  3444. },
  3445. "isNullPointer": false,
  3446. "$type": "double",
  3447. "value": 1.0,
  3448. "label": "Number: 0"
  3449. },
  3450. {
  3451. "scriptCanvasType": {
  3452. "m_type": 3
  3453. },
  3454. "isNullPointer": false,
  3455. "$type": "double",
  3456. "value": 2.0,
  3457. "label": "Number: 1"
  3458. }
  3459. ],
  3460. "methodType": 1,
  3461. "methodName": "ScriptCanvasTesting_TestAutoGenFunctions_MaxReturnByPointerInteger",
  3462. "resultSlotIDs": [
  3463. {}
  3464. ],
  3465. "inputSlots": [
  3466. {
  3467. "m_id": "{95FA2E85-43E3-4143-90AD-E5BAF2B96F4B}"
  3468. },
  3469. {
  3470. "m_id": "{3EAF6C9E-0DF2-457C-A5C5-DC488AF536D5}"
  3471. }
  3472. ],
  3473. "prettyClassName": "ScriptCanvasTesting_TestAutoGenFunctions_MaxReturnByPointerInteger"
  3474. }
  3475. }
  3476. },
  3477. {
  3478. "Id": {
  3479. "id": 85036689257055
  3480. },
  3481. "Name": "SC-Node(Expect Equal)",
  3482. "Components": {
  3483. "Component_[8049711333724862233]": {
  3484. "$type": "MethodOverloaded",
  3485. "Id": 8049711333724862233,
  3486. "Slots": [
  3487. {
  3488. "isVisibile": false,
  3489. "id": {
  3490. "m_id": "{20C5EE2C-A62D-4C40-9D9B-7C2900C7F177}"
  3491. },
  3492. "contracts": [
  3493. {
  3494. "$type": "SlotTypeContract"
  3495. }
  3496. ],
  3497. "slotName": "EntityId: 0",
  3498. "DisplayDataType": {
  3499. "m_type": 1
  3500. },
  3501. "Descriptor": {
  3502. "ConnectionType": 1,
  3503. "SlotType": 2
  3504. },
  3505. "DataType": 1
  3506. },
  3507. {
  3508. "id": {
  3509. "m_id": "{09C7DF4D-16B6-4B30-9A0D-A48C71F14FA8}"
  3510. },
  3511. "DynamicTypeOverride": 1,
  3512. "contracts": [
  3513. {
  3514. "$type": "SlotTypeContract"
  3515. },
  3516. {
  3517. "$type": "OverloadContract"
  3518. }
  3519. ],
  3520. "slotName": "Candidate",
  3521. "toolTip": "left of ==",
  3522. "DisplayDataType": {
  3523. "m_type": 3
  3524. },
  3525. "Descriptor": {
  3526. "ConnectionType": 1,
  3527. "SlotType": 2
  3528. },
  3529. "DataType": 1
  3530. },
  3531. {
  3532. "id": {
  3533. "m_id": "{69BDE366-DC5A-4940-8729-2E75CA8BB3DF}"
  3534. },
  3535. "DynamicTypeOverride": 1,
  3536. "contracts": [
  3537. {
  3538. "$type": "SlotTypeContract"
  3539. },
  3540. {
  3541. "$type": "OverloadContract"
  3542. }
  3543. ],
  3544. "slotName": "Reference",
  3545. "toolTip": "right of ==",
  3546. "DisplayDataType": {
  3547. "m_type": 3
  3548. },
  3549. "Descriptor": {
  3550. "ConnectionType": 1,
  3551. "SlotType": 2
  3552. },
  3553. "DataType": 1
  3554. },
  3555. {
  3556. "id": {
  3557. "m_id": "{9E4713B3-4919-41E1-B25F-14EDFCCE0D38}"
  3558. },
  3559. "contracts": [
  3560. {
  3561. "$type": "SlotTypeContract"
  3562. }
  3563. ],
  3564. "slotName": "Report",
  3565. "toolTip": "additional notes for the test report",
  3566. "DisplayDataType": {
  3567. "m_type": 5
  3568. },
  3569. "Descriptor": {
  3570. "ConnectionType": 1,
  3571. "SlotType": 2
  3572. },
  3573. "DataType": 1
  3574. },
  3575. {
  3576. "id": {
  3577. "m_id": "{EA136C49-3DB2-4CBC-A0F0-1656BD4F0963}"
  3578. },
  3579. "contracts": [
  3580. {
  3581. "$type": "SlotTypeContract"
  3582. }
  3583. ],
  3584. "slotName": "In",
  3585. "Descriptor": {
  3586. "ConnectionType": 1,
  3587. "SlotType": 1
  3588. }
  3589. },
  3590. {
  3591. "id": {
  3592. "m_id": "{981D2B30-5EFC-4924-89C4-B4C8DA1B82C2}"
  3593. },
  3594. "contracts": [
  3595. {
  3596. "$type": "SlotTypeContract"
  3597. }
  3598. ],
  3599. "slotName": "Out",
  3600. "Descriptor": {
  3601. "ConnectionType": 2,
  3602. "SlotType": 1
  3603. }
  3604. }
  3605. ],
  3606. "Datums": [
  3607. {
  3608. "scriptCanvasType": {
  3609. "m_type": 1
  3610. },
  3611. "isNullPointer": false,
  3612. "$type": "EntityId",
  3613. "value": {
  3614. "id": 4276206253
  3615. }
  3616. },
  3617. {
  3618. "scriptCanvasType": {
  3619. "m_type": 3
  3620. },
  3621. "isNullPointer": false,
  3622. "$type": "double",
  3623. "value": 0.0,
  3624. "label": "Candidate"
  3625. },
  3626. {
  3627. "scriptCanvasType": {
  3628. "m_type": 3
  3629. },
  3630. "isNullPointer": false,
  3631. "$type": "double",
  3632. "value": 1.0,
  3633. "label": "Reference"
  3634. },
  3635. {
  3636. "scriptCanvasType": {
  3637. "m_type": 5
  3638. },
  3639. "isNullPointer": false,
  3640. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  3641. "value": "",
  3642. "label": "Report"
  3643. }
  3644. ],
  3645. "methodType": 2,
  3646. "methodName": "Expect Equal",
  3647. "className": "Unit Testing",
  3648. "inputSlots": [
  3649. {
  3650. "m_id": "{20C5EE2C-A62D-4C40-9D9B-7C2900C7F177}"
  3651. },
  3652. {
  3653. "m_id": "{09C7DF4D-16B6-4B30-9A0D-A48C71F14FA8}"
  3654. },
  3655. {
  3656. "m_id": "{69BDE366-DC5A-4940-8729-2E75CA8BB3DF}"
  3657. },
  3658. {
  3659. "m_id": "{9E4713B3-4919-41E1-B25F-14EDFCCE0D38}"
  3660. }
  3661. ],
  3662. "orderedInputSlotIds": [
  3663. {
  3664. "m_id": "{20C5EE2C-A62D-4C40-9D9B-7C2900C7F177}"
  3665. },
  3666. {
  3667. "m_id": "{09C7DF4D-16B6-4B30-9A0D-A48C71F14FA8}"
  3668. },
  3669. {
  3670. "m_id": "{69BDE366-DC5A-4940-8729-2E75CA8BB3DF}"
  3671. },
  3672. {
  3673. "m_id": "{9E4713B3-4919-41E1-B25F-14EDFCCE0D38}"
  3674. }
  3675. ],
  3676. "outputSlotIds": [
  3677. {}
  3678. ]
  3679. }
  3680. }
  3681. },
  3682. {
  3683. "Id": {
  3684. "id": 85075343962719
  3685. },
  3686. "Name": "SC-Node(ScriptCanvasTesting_TestAutoGenFunctions_NoArgsReturnMulti)",
  3687. "Components": {
  3688. "Component_[9186411111509384254]": {
  3689. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  3690. "Id": 9186411111509384254,
  3691. "Slots": [
  3692. {
  3693. "id": {
  3694. "m_id": "{9453F447-9BF7-4A41-A91A-C07141DBECC9}"
  3695. },
  3696. "contracts": [
  3697. {
  3698. "$type": "SlotTypeContract"
  3699. }
  3700. ],
  3701. "slotName": "In",
  3702. "Descriptor": {
  3703. "ConnectionType": 1,
  3704. "SlotType": 1
  3705. }
  3706. },
  3707. {
  3708. "id": {
  3709. "m_id": "{38717092-ACA6-4D58-AAD5-640D6F8428AC}"
  3710. },
  3711. "contracts": [
  3712. {
  3713. "$type": "SlotTypeContract"
  3714. }
  3715. ],
  3716. "slotName": "Out",
  3717. "Descriptor": {
  3718. "ConnectionType": 2,
  3719. "SlotType": 1
  3720. }
  3721. },
  3722. {
  3723. "id": {
  3724. "m_id": "{663636F3-A9FC-48A1-A76E-D68090F3FA50}"
  3725. },
  3726. "contracts": [
  3727. {
  3728. "$type": "SlotTypeContract"
  3729. }
  3730. ],
  3731. "slotName": "String: 0",
  3732. "DisplayDataType": {
  3733. "m_type": 5
  3734. },
  3735. "Descriptor": {
  3736. "ConnectionType": 2,
  3737. "SlotType": 2
  3738. },
  3739. "DataType": 1
  3740. },
  3741. {
  3742. "id": {
  3743. "m_id": "{C52D5A6F-CA53-44C2-BC0D-F63E4EA6B774}"
  3744. },
  3745. "contracts": [
  3746. {
  3747. "$type": "SlotTypeContract"
  3748. }
  3749. ],
  3750. "slotName": "Boolean: 1",
  3751. "DisplayDataType": {
  3752. "m_type": 0
  3753. },
  3754. "Descriptor": {
  3755. "ConnectionType": 2,
  3756. "SlotType": 2
  3757. },
  3758. "DataType": 1
  3759. }
  3760. ],
  3761. "methodType": 1,
  3762. "methodName": "ScriptCanvasTesting_TestAutoGenFunctions_NoArgsReturnMulti",
  3763. "resultSlotIDs": [
  3764. {}
  3765. ],
  3766. "prettyClassName": "ScriptCanvasTesting_TestAutoGenFunctions_NoArgsReturnMulti"
  3767. }
  3768. }
  3769. },
  3770. {
  3771. "Id": {
  3772. "id": 85113998668383
  3773. },
  3774. "Name": "SC-Node(Expect False)",
  3775. "Components": {
  3776. "Component_[9521970832954654142]": {
  3777. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  3778. "Id": 9521970832954654142,
  3779. "Slots": [
  3780. {
  3781. "isVisibile": false,
  3782. "id": {
  3783. "m_id": "{192A5C17-0837-4B66-B60B-D3F509CB0A7E}"
  3784. },
  3785. "contracts": [
  3786. {
  3787. "$type": "SlotTypeContract"
  3788. }
  3789. ],
  3790. "slotName": "EntityId: 0",
  3791. "Descriptor": {
  3792. "ConnectionType": 1,
  3793. "SlotType": 2
  3794. },
  3795. "DataType": 1
  3796. },
  3797. {
  3798. "id": {
  3799. "m_id": "{BA301A52-1C75-42DC-9360-E8FCE2664E52}"
  3800. },
  3801. "contracts": [
  3802. {
  3803. "$type": "SlotTypeContract"
  3804. }
  3805. ],
  3806. "slotName": "Candidate",
  3807. "toolTip": "a value that must be false",
  3808. "Descriptor": {
  3809. "ConnectionType": 1,
  3810. "SlotType": 2
  3811. },
  3812. "DataType": 1
  3813. },
  3814. {
  3815. "id": {
  3816. "m_id": "{EFACB0C3-7228-466B-9B64-4A2DC51DC4C9}"
  3817. },
  3818. "contracts": [
  3819. {
  3820. "$type": "SlotTypeContract"
  3821. }
  3822. ],
  3823. "slotName": "Report",
  3824. "toolTip": "additional notes for the test report",
  3825. "Descriptor": {
  3826. "ConnectionType": 1,
  3827. "SlotType": 2
  3828. },
  3829. "DataType": 1
  3830. },
  3831. {
  3832. "id": {
  3833. "m_id": "{0EBC225C-DF47-4816-9F38-1AD59EC2DA42}"
  3834. },
  3835. "contracts": [
  3836. {
  3837. "$type": "SlotTypeContract"
  3838. }
  3839. ],
  3840. "slotName": "In",
  3841. "Descriptor": {
  3842. "ConnectionType": 1,
  3843. "SlotType": 1
  3844. }
  3845. },
  3846. {
  3847. "id": {
  3848. "m_id": "{C019AF9E-445E-4496-B050-53CEF5D333D1}"
  3849. },
  3850. "contracts": [
  3851. {
  3852. "$type": "SlotTypeContract"
  3853. }
  3854. ],
  3855. "slotName": "Out",
  3856. "Descriptor": {
  3857. "ConnectionType": 2,
  3858. "SlotType": 1
  3859. }
  3860. }
  3861. ],
  3862. "Datums": [
  3863. {
  3864. "scriptCanvasType": {
  3865. "m_type": 1
  3866. },
  3867. "isNullPointer": false,
  3868. "$type": "EntityId",
  3869. "value": {
  3870. "id": 4276206253
  3871. }
  3872. },
  3873. {
  3874. "scriptCanvasType": {
  3875. "m_type": 0
  3876. },
  3877. "isNullPointer": false,
  3878. "$type": "bool",
  3879. "value": false,
  3880. "label": "Candidate"
  3881. },
  3882. {
  3883. "scriptCanvasType": {
  3884. "m_type": 5
  3885. },
  3886. "isNullPointer": false,
  3887. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  3888. "value": "",
  3889. "label": "Report"
  3890. }
  3891. ],
  3892. "methodType": 2,
  3893. "methodName": "Expect False",
  3894. "className": "Unit Testing",
  3895. "resultSlotIDs": [
  3896. {}
  3897. ],
  3898. "inputSlots": [
  3899. {
  3900. "m_id": "{192A5C17-0837-4B66-B60B-D3F509CB0A7E}"
  3901. },
  3902. {
  3903. "m_id": "{BA301A52-1C75-42DC-9360-E8FCE2664E52}"
  3904. },
  3905. {
  3906. "m_id": "{EFACB0C3-7228-466B-9B64-4A2DC51DC4C9}"
  3907. }
  3908. ],
  3909. "prettyClassName": "Unit Testing"
  3910. }
  3911. }
  3912. }
  3913. ],
  3914. "m_connections": [
  3915. {
  3916. "Id": {
  3917. "id": 85131178537567
  3918. },
  3919. "Name": "srcEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_ArgsReturnMulti: String: 0), destEndpoint=(Expect Equal: Candidate)",
  3920. "Components": {
  3921. "Component_[848292346367226068]": {
  3922. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3923. "Id": 848292346367226068,
  3924. "sourceEndpoint": {
  3925. "nodeId": {
  3926. "id": 85088228864607
  3927. },
  3928. "slotId": {
  3929. "m_id": "{5D852354-6F27-4B45-BAFD-33A202729D3E}"
  3930. }
  3931. },
  3932. "targetEndpoint": {
  3933. "nodeId": {
  3934. "id": 85101113766495
  3935. },
  3936. "slotId": {
  3937. "m_id": "{7FD280BC-32C4-481F-BB47-550BFBE2A105}"
  3938. }
  3939. }
  3940. }
  3941. }
  3942. },
  3943. {
  3944. "Id": {
  3945. "id": 85135473504863
  3946. },
  3947. "Name": "srcEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_ArgsReturnMulti: Out), destEndpoint=(Expect Equal: In)",
  3948. "Components": {
  3949. "Component_[15150957181033596555]": {
  3950. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3951. "Id": 15150957181033596555,
  3952. "sourceEndpoint": {
  3953. "nodeId": {
  3954. "id": 85088228864607
  3955. },
  3956. "slotId": {
  3957. "m_id": "{32A538E6-1DDB-499A-8ABE-0B8D33341151}"
  3958. }
  3959. },
  3960. "targetEndpoint": {
  3961. "nodeId": {
  3962. "id": 85101113766495
  3963. },
  3964. "slotId": {
  3965. "m_id": "{0146B8E3-8D82-43F6-AB97-CC19DB949B9B}"
  3966. }
  3967. }
  3968. }
  3969. }
  3970. },
  3971. {
  3972. "Id": {
  3973. "id": 85139768472159
  3974. },
  3975. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Expect True: In)",
  3976. "Components": {
  3977. "Component_[18243978501841486510]": {
  3978. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3979. "Id": 18243978501841486510,
  3980. "sourceEndpoint": {
  3981. "nodeId": {
  3982. "id": 85101113766495
  3983. },
  3984. "slotId": {
  3985. "m_id": "{E0319974-69EF-47B4-B4F6-9E3E2448D718}"
  3986. }
  3987. },
  3988. "targetEndpoint": {
  3989. "nodeId": {
  3990. "id": 85032394289759
  3991. },
  3992. "slotId": {
  3993. "m_id": "{E00861CF-6DF1-4B1C-B8FB-4320A5356DB6}"
  3994. }
  3995. }
  3996. }
  3997. }
  3998. },
  3999. {
  4000. "Id": {
  4001. "id": 85144063439455
  4002. },
  4003. "Name": "srcEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_ArgsReturnMulti: Boolean: 1), destEndpoint=(Expect True: Candidate)",
  4004. "Components": {
  4005. "Component_[11061131630537121602]": {
  4006. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4007. "Id": 11061131630537121602,
  4008. "sourceEndpoint": {
  4009. "nodeId": {
  4010. "id": 85088228864607
  4011. },
  4012. "slotId": {
  4013. "m_id": "{A4B5D04C-01EB-4314-B3A7-CD9C9C11EDE9}"
  4014. }
  4015. },
  4016. "targetEndpoint": {
  4017. "nodeId": {
  4018. "id": 85032394289759
  4019. },
  4020. "slotId": {
  4021. "m_id": "{CC084E3C-1AEF-4FEC-B065-4AC47EE6073C}"
  4022. }
  4023. }
  4024. }
  4025. }
  4026. },
  4027. {
  4028. "Id": {
  4029. "id": 85148358406751
  4030. },
  4031. "Name": "srcEndpoint=(Expect True: Out), destEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_NoArgsReturn: In)",
  4032. "Components": {
  4033. "Component_[14162402407281302731]": {
  4034. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4035. "Id": 14162402407281302731,
  4036. "sourceEndpoint": {
  4037. "nodeId": {
  4038. "id": 85032394289759
  4039. },
  4040. "slotId": {
  4041. "m_id": "{54A6152D-3E69-4140-95F0-668CBA0D0705}"
  4042. }
  4043. },
  4044. "targetEndpoint": {
  4045. "nodeId": {
  4046. "id": 85049574158943
  4047. },
  4048. "slotId": {
  4049. "m_id": "{8E71BB16-2DE8-48F3-89F6-58C3ADF39676}"
  4050. }
  4051. }
  4052. }
  4053. }
  4054. },
  4055. {
  4056. "Id": {
  4057. "id": 85152653374047
  4058. },
  4059. "Name": "srcEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_NoArgsReturn: Number), destEndpoint=(Expect Equal: Candidate)",
  4060. "Components": {
  4061. "Component_[15409946583062344627]": {
  4062. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4063. "Id": 15409946583062344627,
  4064. "sourceEndpoint": {
  4065. "nodeId": {
  4066. "id": 85049574158943
  4067. },
  4068. "slotId": {
  4069. "m_id": "{C730745B-2883-4450-9E6E-6359F93F80B6}"
  4070. }
  4071. },
  4072. "targetEndpoint": {
  4073. "nodeId": {
  4074. "id": 85058164093535
  4075. },
  4076. "slotId": {
  4077. "m_id": "{9B1CC425-8286-4993-BBDF-7CECF065B639}"
  4078. }
  4079. }
  4080. }
  4081. }
  4082. },
  4083. {
  4084. "Id": {
  4085. "id": 85156948341343
  4086. },
  4087. "Name": "srcEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_NoArgsReturn: Out), destEndpoint=(Expect Equal: In)",
  4088. "Components": {
  4089. "Component_[11798329071870070464]": {
  4090. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4091. "Id": 11798329071870070464,
  4092. "sourceEndpoint": {
  4093. "nodeId": {
  4094. "id": 85049574158943
  4095. },
  4096. "slotId": {
  4097. "m_id": "{2BE5B4BE-7849-453A-897F-7C87EC277E7C}"
  4098. }
  4099. },
  4100. "targetEndpoint": {
  4101. "nodeId": {
  4102. "id": 85058164093535
  4103. },
  4104. "slotId": {
  4105. "m_id": "{DA93F872-124C-47A4-B381-6A17986445D7}"
  4106. }
  4107. }
  4108. }
  4109. }
  4110. },
  4111. {
  4112. "Id": {
  4113. "id": 85161243308639
  4114. },
  4115. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_NoArgsReturnMulti: In)",
  4116. "Components": {
  4117. "Component_[17861877101001451875]": {
  4118. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4119. "Id": 17861877101001451875,
  4120. "sourceEndpoint": {
  4121. "nodeId": {
  4122. "id": 85058164093535
  4123. },
  4124. "slotId": {
  4125. "m_id": "{5E8D3A3D-5E2B-4F80-AA7E-3DB53118DCEC}"
  4126. }
  4127. },
  4128. "targetEndpoint": {
  4129. "nodeId": {
  4130. "id": 85075343962719
  4131. },
  4132. "slotId": {
  4133. "m_id": "{9453F447-9BF7-4A41-A91A-C07141DBECC9}"
  4134. }
  4135. }
  4136. }
  4137. }
  4138. },
  4139. {
  4140. "Id": {
  4141. "id": 85165538275935
  4142. },
  4143. "Name": "srcEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_NoArgsReturnMulti: String: 0), destEndpoint=(Expect Equal: Candidate)",
  4144. "Components": {
  4145. "Component_[17265868683974089978]": {
  4146. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4147. "Id": 17265868683974089978,
  4148. "sourceEndpoint": {
  4149. "nodeId": {
  4150. "id": 85075343962719
  4151. },
  4152. "slotId": {
  4153. "m_id": "{663636F3-A9FC-48A1-A76E-D68090F3FA50}"
  4154. }
  4155. },
  4156. "targetEndpoint": {
  4157. "nodeId": {
  4158. "id": 85109703701087
  4159. },
  4160. "slotId": {
  4161. "m_id": "{BEC4DEA2-B1F6-471A-98E7-D4142CB044EE}"
  4162. }
  4163. }
  4164. }
  4165. }
  4166. },
  4167. {
  4168. "Id": {
  4169. "id": 85169833243231
  4170. },
  4171. "Name": "srcEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_NoArgsReturnMulti: Out), destEndpoint=(Expect Equal: In)",
  4172. "Components": {
  4173. "Component_[6358431114062494183]": {
  4174. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4175. "Id": 6358431114062494183,
  4176. "sourceEndpoint": {
  4177. "nodeId": {
  4178. "id": 85075343962719
  4179. },
  4180. "slotId": {
  4181. "m_id": "{38717092-ACA6-4D58-AAD5-640D6F8428AC}"
  4182. }
  4183. },
  4184. "targetEndpoint": {
  4185. "nodeId": {
  4186. "id": 85109703701087
  4187. },
  4188. "slotId": {
  4189. "m_id": "{798EE5CF-2320-459E-94FE-56BBC01404B8}"
  4190. }
  4191. }
  4192. }
  4193. }
  4194. },
  4195. {
  4196. "Id": {
  4197. "id": 85174128210527
  4198. },
  4199. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Expect False: In)",
  4200. "Components": {
  4201. "Component_[16966800081666375015]": {
  4202. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4203. "Id": 16966800081666375015,
  4204. "sourceEndpoint": {
  4205. "nodeId": {
  4206. "id": 85109703701087
  4207. },
  4208. "slotId": {
  4209. "m_id": "{97ED1825-C0AF-47E0-AB31-B375A8E1ABEA}"
  4210. }
  4211. },
  4212. "targetEndpoint": {
  4213. "nodeId": {
  4214. "id": 85066754028127
  4215. },
  4216. "slotId": {
  4217. "m_id": "{37031607-73F2-4C70-BA54-694F61D608B8}"
  4218. }
  4219. }
  4220. }
  4221. }
  4222. },
  4223. {
  4224. "Id": {
  4225. "id": 85178423177823
  4226. },
  4227. "Name": "srcEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_NoArgsReturnMulti: Boolean: 1), destEndpoint=(Expect False: Candidate)",
  4228. "Components": {
  4229. "Component_[8190789554138069765]": {
  4230. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4231. "Id": 8190789554138069765,
  4232. "sourceEndpoint": {
  4233. "nodeId": {
  4234. "id": 85075343962719
  4235. },
  4236. "slotId": {
  4237. "m_id": "{C52D5A6F-CA53-44C2-BC0D-F63E4EA6B774}"
  4238. }
  4239. },
  4240. "targetEndpoint": {
  4241. "nodeId": {
  4242. "id": 85066754028127
  4243. },
  4244. "slotId": {
  4245. "m_id": "{5F48AA85-2CEF-4753-807E-D49C9141B091}"
  4246. }
  4247. }
  4248. }
  4249. }
  4250. },
  4251. {
  4252. "Id": {
  4253. "id": 85182718145119
  4254. },
  4255. "Name": "srcEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_ArgsReturnMulti: String: 0), destEndpoint=(Expect Equal: Candidate)",
  4256. "Components": {
  4257. "Component_[10602132558051425298]": {
  4258. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4259. "Id": 10602132558051425298,
  4260. "sourceEndpoint": {
  4261. "nodeId": {
  4262. "id": 85122588602975
  4263. },
  4264. "slotId": {
  4265. "m_id": "{5D852354-6F27-4B45-BAFD-33A202729D3E}"
  4266. }
  4267. },
  4268. "targetEndpoint": {
  4269. "nodeId": {
  4270. "id": 85083933897311
  4271. },
  4272. "slotId": {
  4273. "m_id": "{7FD280BC-32C4-481F-BB47-550BFBE2A105}"
  4274. }
  4275. }
  4276. }
  4277. }
  4278. },
  4279. {
  4280. "Id": {
  4281. "id": 85187013112415
  4282. },
  4283. "Name": "srcEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_ArgsReturnMulti: Out), destEndpoint=(Expect Equal: In)",
  4284. "Components": {
  4285. "Component_[197607436844208849]": {
  4286. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4287. "Id": 197607436844208849,
  4288. "sourceEndpoint": {
  4289. "nodeId": {
  4290. "id": 85122588602975
  4291. },
  4292. "slotId": {
  4293. "m_id": "{32A538E6-1DDB-499A-8ABE-0B8D33341151}"
  4294. }
  4295. },
  4296. "targetEndpoint": {
  4297. "nodeId": {
  4298. "id": 85083933897311
  4299. },
  4300. "slotId": {
  4301. "m_id": "{0146B8E3-8D82-43F6-AB97-CC19DB949B9B}"
  4302. }
  4303. }
  4304. }
  4305. }
  4306. },
  4307. {
  4308. "Id": {
  4309. "id": 85191308079711
  4310. },
  4311. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_ArgsReturnMulti: In)",
  4312. "Components": {
  4313. "Component_[6868986430792280939]": {
  4314. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4315. "Id": 6868986430792280939,
  4316. "sourceEndpoint": {
  4317. "nodeId": {
  4318. "id": 85062459060831
  4319. },
  4320. "slotId": {
  4321. "m_id": "{E539C3C5-C7D3-4AB3-AC41-F5E265651B0F}"
  4322. }
  4323. },
  4324. "targetEndpoint": {
  4325. "nodeId": {
  4326. "id": 85122588602975
  4327. },
  4328. "slotId": {
  4329. "m_id": "{B8F53895-F641-42B1-B627-BA2197B24E0B}"
  4330. }
  4331. }
  4332. }
  4333. }
  4334. },
  4335. {
  4336. "Id": {
  4337. "id": 85195603047007
  4338. },
  4339. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Expect False: In)",
  4340. "Components": {
  4341. "Component_[402797454890272864]": {
  4342. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4343. "Id": 402797454890272864,
  4344. "sourceEndpoint": {
  4345. "nodeId": {
  4346. "id": 85083933897311
  4347. },
  4348. "slotId": {
  4349. "m_id": "{E0319974-69EF-47B4-B4F6-9E3E2448D718}"
  4350. }
  4351. },
  4352. "targetEndpoint": {
  4353. "nodeId": {
  4354. "id": 85113998668383
  4355. },
  4356. "slotId": {
  4357. "m_id": "{0EBC225C-DF47-4816-9F38-1AD59EC2DA42}"
  4358. }
  4359. }
  4360. }
  4361. }
  4362. },
  4363. {
  4364. "Id": {
  4365. "id": 85199898014303
  4366. },
  4367. "Name": "srcEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_ArgsReturnMulti: Boolean: 1), destEndpoint=(Expect False: Candidate)",
  4368. "Components": {
  4369. "Component_[16333182717588243202]": {
  4370. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4371. "Id": 16333182717588243202,
  4372. "sourceEndpoint": {
  4373. "nodeId": {
  4374. "id": 85122588602975
  4375. },
  4376. "slotId": {
  4377. "m_id": "{A4B5D04C-01EB-4314-B3A7-CD9C9C11EDE9}"
  4378. }
  4379. },
  4380. "targetEndpoint": {
  4381. "nodeId": {
  4382. "id": 85113998668383
  4383. },
  4384. "slotId": {
  4385. "m_id": "{BA301A52-1C75-42DC-9360-E8FCE2664E52}"
  4386. }
  4387. }
  4388. }
  4389. }
  4390. },
  4391. {
  4392. "Id": {
  4393. "id": 85204192981599
  4394. },
  4395. "Name": "srcEndpoint=(Expect False: Out), destEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_ArgsReturnMulti: In)",
  4396. "Components": {
  4397. "Component_[17975441819663541310]": {
  4398. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4399. "Id": 17975441819663541310,
  4400. "sourceEndpoint": {
  4401. "nodeId": {
  4402. "id": 85113998668383
  4403. },
  4404. "slotId": {
  4405. "m_id": "{C019AF9E-445E-4496-B050-53CEF5D333D1}"
  4406. }
  4407. },
  4408. "targetEndpoint": {
  4409. "nodeId": {
  4410. "id": 85088228864607
  4411. },
  4412. "slotId": {
  4413. "m_id": "{B8F53895-F641-42B1-B627-BA2197B24E0B}"
  4414. }
  4415. }
  4416. }
  4417. }
  4418. },
  4419. {
  4420. "Id": {
  4421. "id": 85208487948895
  4422. },
  4423. "Name": "srcEndpoint=(Expect False: Out), destEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_MaxReturnByPointerInteger: In)",
  4424. "Components": {
  4425. "Component_[13782203132756118807]": {
  4426. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4427. "Id": 13782203132756118807,
  4428. "sourceEndpoint": {
  4429. "nodeId": {
  4430. "id": 85066754028127
  4431. },
  4432. "slotId": {
  4433. "m_id": "{93FE57A3-375F-40A2-B14E-64CAAE9644A5}"
  4434. }
  4435. },
  4436. "targetEndpoint": {
  4437. "nodeId": {
  4438. "id": 85053869126239
  4439. },
  4440. "slotId": {
  4441. "m_id": "{2FA680B8-5EE3-4CC4-8D04-EA5C604BCCAF}"
  4442. }
  4443. }
  4444. }
  4445. }
  4446. },
  4447. {
  4448. "Id": {
  4449. "id": 85212782916191
  4450. },
  4451. "Name": "srcEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_MaxReturnByPointerInteger: Number), destEndpoint=(Expect Equal: Candidate)",
  4452. "Components": {
  4453. "Component_[8702863138806951697]": {
  4454. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4455. "Id": 8702863138806951697,
  4456. "sourceEndpoint": {
  4457. "nodeId": {
  4458. "id": 85053869126239
  4459. },
  4460. "slotId": {
  4461. "m_id": "{0781CA7B-7800-45D1-9690-CCF87FE1F691}"
  4462. }
  4463. },
  4464. "targetEndpoint": {
  4465. "nodeId": {
  4466. "id": 85023804355167
  4467. },
  4468. "slotId": {
  4469. "m_id": "{7F34E34C-83E6-467C-A8C7-27DFF01FD5B6}"
  4470. }
  4471. }
  4472. }
  4473. }
  4474. },
  4475. {
  4476. "Id": {
  4477. "id": 85217077883487
  4478. },
  4479. "Name": "srcEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_MaxReturnByPointerInteger: Out), destEndpoint=(Expect Equal: In)",
  4480. "Components": {
  4481. "Component_[17563006779276605457]": {
  4482. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4483. "Id": 17563006779276605457,
  4484. "sourceEndpoint": {
  4485. "nodeId": {
  4486. "id": 85053869126239
  4487. },
  4488. "slotId": {
  4489. "m_id": "{A08868C7-527F-4724-9FC3-F225727DB73D}"
  4490. }
  4491. },
  4492. "targetEndpoint": {
  4493. "nodeId": {
  4494. "id": 85023804355167
  4495. },
  4496. "slotId": {
  4497. "m_id": "{C07EADFE-35A3-4DDE-A495-B3D3E5F342C9}"
  4498. }
  4499. }
  4500. }
  4501. }
  4502. },
  4503. {
  4504. "Id": {
  4505. "id": 85221372850783
  4506. },
  4507. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_MaxReturnByReferenceInteger: In)",
  4508. "Components": {
  4509. "Component_[13402369866074052323]": {
  4510. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4511. "Id": 13402369866074052323,
  4512. "sourceEndpoint": {
  4513. "nodeId": {
  4514. "id": 85023804355167
  4515. },
  4516. "slotId": {
  4517. "m_id": "{C8C7EFCD-3215-4FEE-9337-8724D33CFB3E}"
  4518. }
  4519. },
  4520. "targetEndpoint": {
  4521. "nodeId": {
  4522. "id": 85096818799199
  4523. },
  4524. "slotId": {
  4525. "m_id": "{B7A76594-6883-44CE-A74A-E81ECD2B98A6}"
  4526. }
  4527. }
  4528. }
  4529. }
  4530. },
  4531. {
  4532. "Id": {
  4533. "id": 85225667818079
  4534. },
  4535. "Name": "srcEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_MaxReturnByReferenceInteger: Number), destEndpoint=(Expect Equal: Candidate)",
  4536. "Components": {
  4537. "Component_[14933970722733324013]": {
  4538. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4539. "Id": 14933970722733324013,
  4540. "sourceEndpoint": {
  4541. "nodeId": {
  4542. "id": 85096818799199
  4543. },
  4544. "slotId": {
  4545. "m_id": "{D9384462-FFDD-4769-B7EA-368303A0D8C7}"
  4546. }
  4547. },
  4548. "targetEndpoint": {
  4549. "nodeId": {
  4550. "id": 85092523831903
  4551. },
  4552. "slotId": {
  4553. "m_id": "{0E001F0D-60B0-4769-9849-204FC00DCA28}"
  4554. }
  4555. }
  4556. }
  4557. }
  4558. },
  4559. {
  4560. "Id": {
  4561. "id": 85229962785375
  4562. },
  4563. "Name": "srcEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_MaxReturnByReferenceInteger: Out), destEndpoint=(Expect Equal: In)",
  4564. "Components": {
  4565. "Component_[3159886979725480053]": {
  4566. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4567. "Id": 3159886979725480053,
  4568. "sourceEndpoint": {
  4569. "nodeId": {
  4570. "id": 85096818799199
  4571. },
  4572. "slotId": {
  4573. "m_id": "{9D991281-0DC2-4CEF-A4DC-AA3E11D85450}"
  4574. }
  4575. },
  4576. "targetEndpoint": {
  4577. "nodeId": {
  4578. "id": 85092523831903
  4579. },
  4580. "slotId": {
  4581. "m_id": "{606E776C-1BD0-4E48-BD35-2D01D7A9C8AF}"
  4582. }
  4583. }
  4584. }
  4585. }
  4586. },
  4587. {
  4588. "Id": {
  4589. "id": 85234257752671
  4590. },
  4591. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_MaxReturnByValueInteger: In)",
  4592. "Components": {
  4593. "Component_[1934486242485269942]": {
  4594. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4595. "Id": 1934486242485269942,
  4596. "sourceEndpoint": {
  4597. "nodeId": {
  4598. "id": 85092523831903
  4599. },
  4600. "slotId": {
  4601. "m_id": "{8EB24D79-F7C9-4052-8B2F-5DCF64FD8402}"
  4602. }
  4603. },
  4604. "targetEndpoint": {
  4605. "nodeId": {
  4606. "id": 85118293635679
  4607. },
  4608. "slotId": {
  4609. "m_id": "{A70ADE20-79B1-46BD-93F5-5497F135BB57}"
  4610. }
  4611. }
  4612. }
  4613. }
  4614. },
  4615. {
  4616. "Id": {
  4617. "id": 85238552719967
  4618. },
  4619. "Name": "srcEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_MaxReturnByValueInteger: Number), destEndpoint=(Expect Equal: Candidate)",
  4620. "Components": {
  4621. "Component_[10970964553615190438]": {
  4622. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4623. "Id": 10970964553615190438,
  4624. "sourceEndpoint": {
  4625. "nodeId": {
  4626. "id": 85118293635679
  4627. },
  4628. "slotId": {
  4629. "m_id": "{7301B2D5-9565-4781-86EC-BD95AA7258AB}"
  4630. }
  4631. },
  4632. "targetEndpoint": {
  4633. "nodeId": {
  4634. "id": 85028099322463
  4635. },
  4636. "slotId": {
  4637. "m_id": "{1351A9E6-05C7-4532-AFBE-AB3F1123E812}"
  4638. }
  4639. }
  4640. }
  4641. }
  4642. },
  4643. {
  4644. "Id": {
  4645. "id": 85242847687263
  4646. },
  4647. "Name": "srcEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_MaxReturnByValueInteger: Out), destEndpoint=(Expect Equal: In)",
  4648. "Components": {
  4649. "Component_[5010248207748441499]": {
  4650. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4651. "Id": 5010248207748441499,
  4652. "sourceEndpoint": {
  4653. "nodeId": {
  4654. "id": 85118293635679
  4655. },
  4656. "slotId": {
  4657. "m_id": "{21E5CEA4-BB89-400C-A261-EAF9A8005314}"
  4658. }
  4659. },
  4660. "targetEndpoint": {
  4661. "nodeId": {
  4662. "id": 85028099322463
  4663. },
  4664. "slotId": {
  4665. "m_id": "{8A2D3100-0B87-4F6F-BF1B-641934AAED45}"
  4666. }
  4667. }
  4668. }
  4669. }
  4670. },
  4671. {
  4672. "Id": {
  4673. "id": 85247142654559
  4674. },
  4675. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_NegateBranchBooleanNoResult: In)",
  4676. "Components": {
  4677. "Component_[7477938349461190586]": {
  4678. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4679. "Id": 7477938349461190586,
  4680. "sourceEndpoint": {
  4681. "nodeId": {
  4682. "id": 85028099322463
  4683. },
  4684. "slotId": {
  4685. "m_id": "{D401DECB-532D-48B8-A5EA-5CCDE7EAE0CF}"
  4686. }
  4687. },
  4688. "targetEndpoint": {
  4689. "nodeId": {
  4690. "id": 85071048995423
  4691. },
  4692. "slotId": {
  4693. "m_id": "{CA52294E-F514-4BFF-B0AE-CED461FD422F}"
  4694. }
  4695. }
  4696. }
  4697. }
  4698. },
  4699. {
  4700. "Id": {
  4701. "id": 85251437621855
  4702. },
  4703. "Name": "srcEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_NegateBranchBooleanNoResult: False), destEndpoint=(Checkpoint: In)",
  4704. "Components": {
  4705. "Component_[18011770907171256220]": {
  4706. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4707. "Id": 18011770907171256220,
  4708. "sourceEndpoint": {
  4709. "nodeId": {
  4710. "id": 85071048995423
  4711. },
  4712. "slotId": {
  4713. "m_id": "{A6F073BD-065C-4269-9521-9860E27D6798}"
  4714. }
  4715. },
  4716. "targetEndpoint": {
  4717. "nodeId": {
  4718. "id": 85040984224351
  4719. },
  4720. "slotId": {
  4721. "m_id": "{DCC1F3E5-C4FD-4F97-893D-6666031A7E7B}"
  4722. }
  4723. }
  4724. }
  4725. }
  4726. },
  4727. {
  4728. "Id": {
  4729. "id": 85255732589151
  4730. },
  4731. "Name": "srcEndpoint=(Checkpoint: Out), destEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_NegateBranchBooleanNoResult: In)",
  4732. "Components": {
  4733. "Component_[3195196514658026337]": {
  4734. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4735. "Id": 3195196514658026337,
  4736. "sourceEndpoint": {
  4737. "nodeId": {
  4738. "id": 85040984224351
  4739. },
  4740. "slotId": {
  4741. "m_id": "{42C212D8-F799-46EF-802D-6CE218EAD45B}"
  4742. }
  4743. },
  4744. "targetEndpoint": {
  4745. "nodeId": {
  4746. "id": 85015214420575
  4747. },
  4748. "slotId": {
  4749. "m_id": "{BD036D08-46DC-4691-98F1-968F3D597AF1}"
  4750. }
  4751. }
  4752. }
  4753. }
  4754. },
  4755. {
  4756. "Id": {
  4757. "id": 85260027556447
  4758. },
  4759. "Name": "srcEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_NegateBranchBooleanNoResult: True), destEndpoint=(Checkpoint: In)",
  4760. "Components": {
  4761. "Component_[9492581037817053356]": {
  4762. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4763. "Id": 9492581037817053356,
  4764. "sourceEndpoint": {
  4765. "nodeId": {
  4766. "id": 85015214420575
  4767. },
  4768. "slotId": {
  4769. "m_id": "{7AC71137-5615-432C-BC23-BC0190142B81}"
  4770. }
  4771. },
  4772. "targetEndpoint": {
  4773. "nodeId": {
  4774. "id": 85019509387871
  4775. },
  4776. "slotId": {
  4777. "m_id": "{12B0ED80-D70B-4539-A5F2-B646AC8146D3}"
  4778. }
  4779. }
  4780. }
  4781. }
  4782. },
  4783. {
  4784. "Id": {
  4785. "id": 85264322523743
  4786. },
  4787. "Name": "srcEndpoint=(Checkpoint: Out), destEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_NegateBranchNonBooleanWithResult: In)",
  4788. "Components": {
  4789. "Component_[415809273269483620]": {
  4790. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4791. "Id": 415809273269483620,
  4792. "sourceEndpoint": {
  4793. "nodeId": {
  4794. "id": 85019509387871
  4795. },
  4796. "slotId": {
  4797. "m_id": "{618F7EFC-C571-4C8F-98B2-37E343150F6D}"
  4798. }
  4799. },
  4800. "targetEndpoint": {
  4801. "nodeId": {
  4802. "id": 85126883570271
  4803. },
  4804. "slotId": {
  4805. "m_id": "{CB413421-9588-43A4-9661-316AFAAFF499}"
  4806. }
  4807. }
  4808. }
  4809. }
  4810. },
  4811. {
  4812. "Id": {
  4813. "id": 85268617491039
  4814. },
  4815. "Name": "srcEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_NegateBranchNonBooleanWithResult: Number), destEndpoint=(Expect Equal: Candidate)",
  4816. "Components": {
  4817. "Component_[7050316501342903857]": {
  4818. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4819. "Id": 7050316501342903857,
  4820. "sourceEndpoint": {
  4821. "nodeId": {
  4822. "id": 85126883570271
  4823. },
  4824. "slotId": {
  4825. "m_id": "{29FDEE6B-3AEA-447F-A6C5-A8593062FBEF}"
  4826. }
  4827. },
  4828. "targetEndpoint": {
  4829. "nodeId": {
  4830. "id": 85079638930015
  4831. },
  4832. "slotId": {
  4833. "m_id": "{341FE18F-A872-4C4E-9891-0276788A72E6}"
  4834. }
  4835. }
  4836. }
  4837. }
  4838. },
  4839. {
  4840. "Id": {
  4841. "id": 85272912458335
  4842. },
  4843. "Name": "srcEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_NegateBranchNonBooleanWithResult: Negate Is Negative), destEndpoint=(Expect Equal: In)",
  4844. "Components": {
  4845. "Component_[5056464797257571782]": {
  4846. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4847. "Id": 5056464797257571782,
  4848. "sourceEndpoint": {
  4849. "nodeId": {
  4850. "id": 85126883570271
  4851. },
  4852. "slotId": {
  4853. "m_id": "{0CE38470-CC9D-448B-8ADC-62569478B977}"
  4854. }
  4855. },
  4856. "targetEndpoint": {
  4857. "nodeId": {
  4858. "id": 85079638930015
  4859. },
  4860. "slotId": {
  4861. "m_id": "{B72A3E9E-7BB6-47DD-A5C9-46F9CFAC04DB}"
  4862. }
  4863. }
  4864. }
  4865. }
  4866. },
  4867. {
  4868. "Id": {
  4869. "id": 85277207425631
  4870. },
  4871. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_NegateBranchNonBooleanWithResult: In)",
  4872. "Components": {
  4873. "Component_[2879043767553252093]": {
  4874. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4875. "Id": 2879043767553252093,
  4876. "sourceEndpoint": {
  4877. "nodeId": {
  4878. "id": 85079638930015
  4879. },
  4880. "slotId": {
  4881. "m_id": "{DABD42EC-B044-4526-9A61-1C32F491B3D0}"
  4882. }
  4883. },
  4884. "targetEndpoint": {
  4885. "nodeId": {
  4886. "id": 85010919453279
  4887. },
  4888. "slotId": {
  4889. "m_id": "{F103705C-1C45-4C17-8252-EA3DE823BEB6}"
  4890. }
  4891. }
  4892. }
  4893. }
  4894. },
  4895. {
  4896. "Id": {
  4897. "id": 85281502392927
  4898. },
  4899. "Name": "srcEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_NegateBranchNonBooleanWithResult: Number), destEndpoint=(Expect Equal: Candidate)",
  4900. "Components": {
  4901. "Component_[10221364154282219222]": {
  4902. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4903. "Id": 10221364154282219222,
  4904. "sourceEndpoint": {
  4905. "nodeId": {
  4906. "id": 85010919453279
  4907. },
  4908. "slotId": {
  4909. "m_id": "{5A386ED1-51EE-4C1A-BFEF-0013BEC9C190}"
  4910. }
  4911. },
  4912. "targetEndpoint": {
  4913. "nodeId": {
  4914. "id": 85036689257055
  4915. },
  4916. "slotId": {
  4917. "m_id": "{09C7DF4D-16B6-4B30-9A0D-A48C71F14FA8}"
  4918. }
  4919. }
  4920. }
  4921. }
  4922. },
  4923. {
  4924. "Id": {
  4925. "id": 85285797360223
  4926. },
  4927. "Name": "srcEndpoint=(ScriptCanvasTesting_TestAutoGenFunctions_NegateBranchNonBooleanWithResult: Negate Is Positive), destEndpoint=(Expect Equal: In)",
  4928. "Components": {
  4929. "Component_[14578346511181045339]": {
  4930. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4931. "Id": 14578346511181045339,
  4932. "sourceEndpoint": {
  4933. "nodeId": {
  4934. "id": 85010919453279
  4935. },
  4936. "slotId": {
  4937. "m_id": "{2F6B95F8-C6DF-4A07-AEAC-6D92759E4FB9}"
  4938. }
  4939. },
  4940. "targetEndpoint": {
  4941. "nodeId": {
  4942. "id": 85036689257055
  4943. },
  4944. "slotId": {
  4945. "m_id": "{EA136C49-3DB2-4CBC-A0F0-1656BD4F0963}"
  4946. }
  4947. }
  4948. }
  4949. }
  4950. },
  4951. {
  4952. "Id": {
  4953. "id": 85290092327519
  4954. },
  4955. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Mark Complete: In)",
  4956. "Components": {
  4957. "Component_[7109408959845849112]": {
  4958. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4959. "Id": 7109408959845849112,
  4960. "sourceEndpoint": {
  4961. "nodeId": {
  4962. "id": 85036689257055
  4963. },
  4964. "slotId": {
  4965. "m_id": "{981D2B30-5EFC-4924-89C4-B4C8DA1B82C2}"
  4966. }
  4967. },
  4968. "targetEndpoint": {
  4969. "nodeId": {
  4970. "id": 85045279191647
  4971. },
  4972. "slotId": {
  4973. "m_id": "{4EC33A5B-4200-4224-977C-E7149A9219F6}"
  4974. }
  4975. }
  4976. }
  4977. }
  4978. }
  4979. ]
  4980. },
  4981. "versionData": {
  4982. "_grammarVersion": 1,
  4983. "_runtimeVersion": 1,
  4984. "_fileVersion": 1
  4985. },
  4986. "GraphCanvasData": [
  4987. {
  4988. "Key": {
  4989. "id": 85006624485983
  4990. },
  4991. "Value": {
  4992. "ComponentData": {
  4993. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  4994. "$type": "SceneComponentSaveData",
  4995. "ViewParams": {
  4996. "Scale": 0.5919971985672128,
  4997. "AnchorX": 837.841796875,
  4998. "AnchorY": -207.77125549316406
  4999. }
  5000. }
  5001. }
  5002. }
  5003. },
  5004. {
  5005. "Key": {
  5006. "id": 85010919453279
  5007. },
  5008. "Value": {
  5009. "ComponentData": {
  5010. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5011. "$type": "NodeSaveData"
  5012. },
  5013. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5014. "$type": "GeneralNodeTitleComponentSaveData",
  5015. "PaletteOverride": "MethodNodeTitlePalette"
  5016. },
  5017. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5018. "$type": "GeometrySaveData",
  5019. "Position": [
  5020. 1580.0,
  5021. 520.0
  5022. ]
  5023. },
  5024. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5025. "$type": "StylingComponentSaveData",
  5026. "SubStyle": ".method"
  5027. },
  5028. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5029. "$type": "PersistentIdComponentSaveData",
  5030. "PersistentId": "{C0AA01D7-CC04-41E8-99E4-3825AA4E40C0}"
  5031. }
  5032. }
  5033. }
  5034. },
  5035. {
  5036. "Key": {
  5037. "id": 85015214420575
  5038. },
  5039. "Value": {
  5040. "ComponentData": {
  5041. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5042. "$type": "NodeSaveData"
  5043. },
  5044. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5045. "$type": "GeneralNodeTitleComponentSaveData",
  5046. "PaletteOverride": "MethodNodeTitlePalette"
  5047. },
  5048. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5049. "$type": "GeometrySaveData",
  5050. "Position": [
  5051. 1580.0,
  5052. 80.0
  5053. ]
  5054. },
  5055. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5056. "$type": "StylingComponentSaveData",
  5057. "SubStyle": ".method"
  5058. },
  5059. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5060. "$type": "PersistentIdComponentSaveData",
  5061. "PersistentId": "{AB09BF39-A7D8-41DE-8461-6FC093F960DE}"
  5062. }
  5063. }
  5064. }
  5065. },
  5066. {
  5067. "Key": {
  5068. "id": 85019509387871
  5069. },
  5070. "Value": {
  5071. "ComponentData": {
  5072. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5073. "$type": "NodeSaveData"
  5074. },
  5075. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5076. "$type": "GeneralNodeTitleComponentSaveData",
  5077. "PaletteOverride": "MethodNodeTitlePalette"
  5078. },
  5079. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5080. "$type": "GeometrySaveData",
  5081. "Position": [
  5082. 2160.0,
  5083. 80.0
  5084. ]
  5085. },
  5086. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5087. "$type": "StylingComponentSaveData",
  5088. "SubStyle": ".method"
  5089. },
  5090. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5091. "$type": "PersistentIdComponentSaveData",
  5092. "PersistentId": "{B93223B0-F3E9-4ADD-ACEC-63BB61005EBB}"
  5093. }
  5094. }
  5095. }
  5096. },
  5097. {
  5098. "Key": {
  5099. "id": 85023804355167
  5100. },
  5101. "Value": {
  5102. "ComponentData": {
  5103. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5104. "$type": "NodeSaveData"
  5105. },
  5106. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5107. "$type": "GeneralNodeTitleComponentSaveData",
  5108. "PaletteOverride": "MethodNodeTitlePalette"
  5109. },
  5110. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5111. "$type": "GeometrySaveData",
  5112. "Position": [
  5113. 820.0,
  5114. 820.0
  5115. ]
  5116. },
  5117. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5118. "$type": "StylingComponentSaveData",
  5119. "SubStyle": ".method"
  5120. },
  5121. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5122. "$type": "PersistentIdComponentSaveData",
  5123. "PersistentId": "{89C17D5F-B5F0-476F-9F25-E4C48CBA7419}"
  5124. }
  5125. }
  5126. }
  5127. },
  5128. {
  5129. "Key": {
  5130. "id": 85028099322463
  5131. },
  5132. "Value": {
  5133. "ComponentData": {
  5134. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5135. "$type": "NodeSaveData"
  5136. },
  5137. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5138. "$type": "GeneralNodeTitleComponentSaveData",
  5139. "PaletteOverride": "MethodNodeTitlePalette"
  5140. },
  5141. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5142. "$type": "GeometrySaveData",
  5143. "Position": [
  5144. 820.0,
  5145. 1260.0
  5146. ]
  5147. },
  5148. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5149. "$type": "StylingComponentSaveData",
  5150. "SubStyle": ".method"
  5151. },
  5152. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5153. "$type": "PersistentIdComponentSaveData",
  5154. "PersistentId": "{85146D01-A7AC-4276-884C-C0AE1C0BAD01}"
  5155. }
  5156. }
  5157. }
  5158. },
  5159. {
  5160. "Key": {
  5161. "id": 85032394289759
  5162. },
  5163. "Value": {
  5164. "ComponentData": {
  5165. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5166. "$type": "NodeSaveData"
  5167. },
  5168. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5169. "$type": "GeneralNodeTitleComponentSaveData",
  5170. "PaletteOverride": "MethodNodeTitlePalette"
  5171. },
  5172. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5173. "$type": "GeometrySaveData",
  5174. "Position": [
  5175. 1180.0,
  5176. 80.0
  5177. ]
  5178. },
  5179. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5180. "$type": "StylingComponentSaveData",
  5181. "SubStyle": ".method"
  5182. },
  5183. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5184. "$type": "PersistentIdComponentSaveData",
  5185. "PersistentId": "{96A8380C-6B53-48BC-B462-A675E9B0C330}"
  5186. }
  5187. }
  5188. }
  5189. },
  5190. {
  5191. "Key": {
  5192. "id": 85036689257055
  5193. },
  5194. "Value": {
  5195. "ComponentData": {
  5196. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5197. "$type": "NodeSaveData"
  5198. },
  5199. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5200. "$type": "GeneralNodeTitleComponentSaveData",
  5201. "PaletteOverride": "MethodNodeTitlePalette"
  5202. },
  5203. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5204. "$type": "GeometrySaveData",
  5205. "Position": [
  5206. 2180.0,
  5207. 540.0
  5208. ]
  5209. },
  5210. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5211. "$type": "StylingComponentSaveData",
  5212. "SubStyle": ".method"
  5213. },
  5214. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5215. "$type": "PersistentIdComponentSaveData",
  5216. "PersistentId": "{106F9D0B-EFF7-440A-B1A1-220B59703FD1}"
  5217. }
  5218. }
  5219. }
  5220. },
  5221. {
  5222. "Key": {
  5223. "id": 85040984224351
  5224. },
  5225. "Value": {
  5226. "ComponentData": {
  5227. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5228. "$type": "NodeSaveData"
  5229. },
  5230. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5231. "$type": "GeneralNodeTitleComponentSaveData",
  5232. "PaletteOverride": "MethodNodeTitlePalette"
  5233. },
  5234. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5235. "$type": "GeometrySaveData",
  5236. "Position": [
  5237. 2160.0,
  5238. -140.0
  5239. ]
  5240. },
  5241. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5242. "$type": "StylingComponentSaveData",
  5243. "SubStyle": ".method"
  5244. },
  5245. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5246. "$type": "PersistentIdComponentSaveData",
  5247. "PersistentId": "{A74170FB-FFE6-4252-820D-F6EAC1088E21}"
  5248. }
  5249. }
  5250. }
  5251. },
  5252. {
  5253. "Key": {
  5254. "id": 85045279191647
  5255. },
  5256. "Value": {
  5257. "ComponentData": {
  5258. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5259. "$type": "NodeSaveData"
  5260. },
  5261. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5262. "$type": "GeneralNodeTitleComponentSaveData",
  5263. "PaletteOverride": "MethodNodeTitlePalette"
  5264. },
  5265. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5266. "$type": "GeometrySaveData",
  5267. "Position": [
  5268. 1580.0,
  5269. 760.0
  5270. ]
  5271. },
  5272. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5273. "$type": "StylingComponentSaveData",
  5274. "SubStyle": ".method"
  5275. },
  5276. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5277. "$type": "PersistentIdComponentSaveData",
  5278. "PersistentId": "{503F7DBE-BFDD-47C0-BD1F-1FECC926ED92}"
  5279. }
  5280. }
  5281. }
  5282. },
  5283. {
  5284. "Key": {
  5285. "id": 85049574158943
  5286. },
  5287. "Value": {
  5288. "ComponentData": {
  5289. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5290. "$type": "NodeSaveData"
  5291. },
  5292. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5293. "$type": "GeneralNodeTitleComponentSaveData",
  5294. "PaletteOverride": "MethodNodeTitlePalette"
  5295. },
  5296. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5297. "$type": "GeometrySaveData",
  5298. "Position": [
  5299. 220.0,
  5300. 320.0
  5301. ]
  5302. },
  5303. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5304. "$type": "StylingComponentSaveData",
  5305. "SubStyle": ".method"
  5306. },
  5307. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5308. "$type": "PersistentIdComponentSaveData",
  5309. "PersistentId": "{0177DB02-22D6-4450-89B1-45BF6AA04BFC}"
  5310. }
  5311. }
  5312. }
  5313. },
  5314. {
  5315. "Key": {
  5316. "id": 85053869126239
  5317. },
  5318. "Value": {
  5319. "ComponentData": {
  5320. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5321. "$type": "NodeSaveData"
  5322. },
  5323. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5324. "$type": "GeneralNodeTitleComponentSaveData",
  5325. "PaletteOverride": "MethodNodeTitlePalette"
  5326. },
  5327. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5328. "$type": "GeometrySaveData",
  5329. "Position": [
  5330. 220.0,
  5331. 820.0
  5332. ]
  5333. },
  5334. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5335. "$type": "StylingComponentSaveData",
  5336. "SubStyle": ".method"
  5337. },
  5338. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5339. "$type": "PersistentIdComponentSaveData",
  5340. "PersistentId": "{0E9FF8EF-2B38-4059-9ADB-1CA1F1B98782}"
  5341. }
  5342. }
  5343. }
  5344. },
  5345. {
  5346. "Key": {
  5347. "id": 85058164093535
  5348. },
  5349. "Value": {
  5350. "ComponentData": {
  5351. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5352. "$type": "NodeSaveData"
  5353. },
  5354. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5355. "$type": "GeneralNodeTitleComponentSaveData",
  5356. "PaletteOverride": "MethodNodeTitlePalette"
  5357. },
  5358. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5359. "$type": "GeometrySaveData",
  5360. "Position": [
  5361. 840.0,
  5362. 320.0
  5363. ]
  5364. },
  5365. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5366. "$type": "StylingComponentSaveData",
  5367. "SubStyle": ".method"
  5368. },
  5369. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5370. "$type": "PersistentIdComponentSaveData",
  5371. "PersistentId": "{4CA15E30-78C1-4EF9-95C2-B22B47657FD0}"
  5372. }
  5373. }
  5374. }
  5375. },
  5376. {
  5377. "Key": {
  5378. "id": 85062459060831
  5379. },
  5380. "Value": {
  5381. "ComponentData": {
  5382. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5383. "$type": "NodeSaveData"
  5384. },
  5385. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5386. "$type": "GeneralNodeTitleComponentSaveData",
  5387. "PaletteOverride": "TimeNodeTitlePalette"
  5388. },
  5389. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5390. "$type": "GeometrySaveData",
  5391. "Position": [
  5392. 0.0,
  5393. -140.0
  5394. ]
  5395. },
  5396. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5397. "$type": "StylingComponentSaveData"
  5398. },
  5399. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5400. "$type": "PersistentIdComponentSaveData",
  5401. "PersistentId": "{00CD0125-95FC-435D-B213-2D612079C53D}"
  5402. }
  5403. }
  5404. }
  5405. },
  5406. {
  5407. "Key": {
  5408. "id": 85066754028127
  5409. },
  5410. "Value": {
  5411. "ComponentData": {
  5412. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5413. "$type": "NodeSaveData"
  5414. },
  5415. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5416. "$type": "GeneralNodeTitleComponentSaveData",
  5417. "PaletteOverride": "MethodNodeTitlePalette"
  5418. },
  5419. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5420. "$type": "GeometrySaveData",
  5421. "Position": [
  5422. 1180.0,
  5423. 580.0
  5424. ]
  5425. },
  5426. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5427. "$type": "StylingComponentSaveData",
  5428. "SubStyle": ".method"
  5429. },
  5430. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5431. "$type": "PersistentIdComponentSaveData",
  5432. "PersistentId": "{8A1FBA3C-4C97-4B6F-B89A-58F5C0A83A24}"
  5433. }
  5434. }
  5435. }
  5436. },
  5437. {
  5438. "Key": {
  5439. "id": 85071048995423
  5440. },
  5441. "Value": {
  5442. "ComponentData": {
  5443. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5444. "$type": "NodeSaveData"
  5445. },
  5446. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5447. "$type": "GeneralNodeTitleComponentSaveData",
  5448. "PaletteOverride": "MethodNodeTitlePalette"
  5449. },
  5450. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5451. "$type": "GeometrySaveData",
  5452. "Position": [
  5453. 1580.0,
  5454. -140.0
  5455. ]
  5456. },
  5457. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5458. "$type": "StylingComponentSaveData",
  5459. "SubStyle": ".method"
  5460. },
  5461. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5462. "$type": "PersistentIdComponentSaveData",
  5463. "PersistentId": "{AFF8744D-88C7-439A-AF41-7D02F3D5D033}"
  5464. }
  5465. }
  5466. }
  5467. },
  5468. {
  5469. "Key": {
  5470. "id": 85075343962719
  5471. },
  5472. "Value": {
  5473. "ComponentData": {
  5474. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5475. "$type": "NodeSaveData"
  5476. },
  5477. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5478. "$type": "GeneralNodeTitleComponentSaveData",
  5479. "PaletteOverride": "MethodNodeTitlePalette"
  5480. },
  5481. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5482. "$type": "GeometrySaveData",
  5483. "Position": [
  5484. 220.0,
  5485. 580.0
  5486. ]
  5487. },
  5488. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5489. "$type": "StylingComponentSaveData",
  5490. "SubStyle": ".method"
  5491. },
  5492. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5493. "$type": "PersistentIdComponentSaveData",
  5494. "PersistentId": "{52CC4325-35F1-4D53-97DF-E21E4D20B14F}"
  5495. }
  5496. }
  5497. }
  5498. },
  5499. {
  5500. "Key": {
  5501. "id": 85079638930015
  5502. },
  5503. "Value": {
  5504. "ComponentData": {
  5505. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5506. "$type": "NodeSaveData"
  5507. },
  5508. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5509. "$type": "GeneralNodeTitleComponentSaveData",
  5510. "PaletteOverride": "MethodNodeTitlePalette"
  5511. },
  5512. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5513. "$type": "GeometrySaveData",
  5514. "Position": [
  5515. 2180.0,
  5516. 320.0
  5517. ]
  5518. },
  5519. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5520. "$type": "StylingComponentSaveData",
  5521. "SubStyle": ".method"
  5522. },
  5523. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5524. "$type": "PersistentIdComponentSaveData",
  5525. "PersistentId": "{8BF63C10-D435-4E16-BC54-201EEECC87A4}"
  5526. }
  5527. }
  5528. }
  5529. },
  5530. {
  5531. "Key": {
  5532. "id": 85083933897311
  5533. },
  5534. "Value": {
  5535. "ComponentData": {
  5536. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5537. "$type": "NodeSaveData"
  5538. },
  5539. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5540. "$type": "GeneralNodeTitleComponentSaveData",
  5541. "PaletteOverride": "MethodNodeTitlePalette"
  5542. },
  5543. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5544. "$type": "GeometrySaveData",
  5545. "Position": [
  5546. 840.0,
  5547. -140.0
  5548. ]
  5549. },
  5550. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5551. "$type": "StylingComponentSaveData",
  5552. "SubStyle": ".method"
  5553. },
  5554. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5555. "$type": "PersistentIdComponentSaveData",
  5556. "PersistentId": "{1768206E-DAAA-499D-BBEA-FD94D2CB3A30}"
  5557. }
  5558. }
  5559. }
  5560. },
  5561. {
  5562. "Key": {
  5563. "id": 85088228864607
  5564. },
  5565. "Value": {
  5566. "ComponentData": {
  5567. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5568. "$type": "NodeSaveData"
  5569. },
  5570. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5571. "$type": "GeneralNodeTitleComponentSaveData",
  5572. "PaletteOverride": "MethodNodeTitlePalette"
  5573. },
  5574. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5575. "$type": "GeometrySaveData",
  5576. "Position": [
  5577. 220.0,
  5578. 80.0
  5579. ]
  5580. },
  5581. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5582. "$type": "StylingComponentSaveData",
  5583. "SubStyle": ".method"
  5584. },
  5585. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5586. "$type": "PersistentIdComponentSaveData",
  5587. "PersistentId": "{A5DCE015-09CD-46EC-915A-DC979C63D317}"
  5588. }
  5589. }
  5590. }
  5591. },
  5592. {
  5593. "Key": {
  5594. "id": 85092523831903
  5595. },
  5596. "Value": {
  5597. "ComponentData": {
  5598. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5599. "$type": "NodeSaveData"
  5600. },
  5601. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5602. "$type": "GeneralNodeTitleComponentSaveData",
  5603. "PaletteOverride": "MethodNodeTitlePalette"
  5604. },
  5605. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5606. "$type": "GeometrySaveData",
  5607. "Position": [
  5608. 820.0,
  5609. 1040.0
  5610. ]
  5611. },
  5612. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5613. "$type": "StylingComponentSaveData",
  5614. "SubStyle": ".method"
  5615. },
  5616. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5617. "$type": "PersistentIdComponentSaveData",
  5618. "PersistentId": "{716AEA7A-93BE-4F55-9E50-6E1FB5E672DA}"
  5619. }
  5620. }
  5621. }
  5622. },
  5623. {
  5624. "Key": {
  5625. "id": 85096818799199
  5626. },
  5627. "Value": {
  5628. "ComponentData": {
  5629. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5630. "$type": "NodeSaveData"
  5631. },
  5632. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5633. "$type": "GeneralNodeTitleComponentSaveData",
  5634. "PaletteOverride": "MethodNodeTitlePalette"
  5635. },
  5636. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5637. "$type": "GeometrySaveData",
  5638. "Position": [
  5639. 220.0,
  5640. 1040.0
  5641. ]
  5642. },
  5643. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5644. "$type": "StylingComponentSaveData",
  5645. "SubStyle": ".method"
  5646. },
  5647. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5648. "$type": "PersistentIdComponentSaveData",
  5649. "PersistentId": "{1D3BDE05-12AB-4EA2-AB77-0527F29C2232}"
  5650. }
  5651. }
  5652. }
  5653. },
  5654. {
  5655. "Key": {
  5656. "id": 85101113766495
  5657. },
  5658. "Value": {
  5659. "ComponentData": {
  5660. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5661. "$type": "NodeSaveData"
  5662. },
  5663. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5664. "$type": "GeneralNodeTitleComponentSaveData",
  5665. "PaletteOverride": "MethodNodeTitlePalette"
  5666. },
  5667. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5668. "$type": "GeometrySaveData",
  5669. "Position": [
  5670. 840.0,
  5671. 80.0
  5672. ]
  5673. },
  5674. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5675. "$type": "StylingComponentSaveData",
  5676. "SubStyle": ".method"
  5677. },
  5678. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5679. "$type": "PersistentIdComponentSaveData",
  5680. "PersistentId": "{4B53847B-6B89-49BA-B802-57AFEC711D04}"
  5681. }
  5682. }
  5683. }
  5684. },
  5685. {
  5686. "Key": {
  5687. "id": 85109703701087
  5688. },
  5689. "Value": {
  5690. "ComponentData": {
  5691. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5692. "$type": "NodeSaveData"
  5693. },
  5694. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5695. "$type": "GeneralNodeTitleComponentSaveData",
  5696. "PaletteOverride": "MethodNodeTitlePalette"
  5697. },
  5698. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5699. "$type": "GeometrySaveData",
  5700. "Position": [
  5701. 840.0,
  5702. 580.0
  5703. ]
  5704. },
  5705. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5706. "$type": "StylingComponentSaveData",
  5707. "SubStyle": ".method"
  5708. },
  5709. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5710. "$type": "PersistentIdComponentSaveData",
  5711. "PersistentId": "{235935A8-8A8E-4030-8225-029A9489E369}"
  5712. }
  5713. }
  5714. }
  5715. },
  5716. {
  5717. "Key": {
  5718. "id": 85113998668383
  5719. },
  5720. "Value": {
  5721. "ComponentData": {
  5722. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5723. "$type": "NodeSaveData"
  5724. },
  5725. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5726. "$type": "GeneralNodeTitleComponentSaveData",
  5727. "PaletteOverride": "MethodNodeTitlePalette"
  5728. },
  5729. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5730. "$type": "GeometrySaveData",
  5731. "Position": [
  5732. 1180.0,
  5733. -140.0
  5734. ]
  5735. },
  5736. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5737. "$type": "StylingComponentSaveData",
  5738. "SubStyle": ".method"
  5739. },
  5740. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5741. "$type": "PersistentIdComponentSaveData",
  5742. "PersistentId": "{08CBA48E-7380-4185-9CCF-21CA073DFF8F}"
  5743. }
  5744. }
  5745. }
  5746. },
  5747. {
  5748. "Key": {
  5749. "id": 85118293635679
  5750. },
  5751. "Value": {
  5752. "ComponentData": {
  5753. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5754. "$type": "NodeSaveData"
  5755. },
  5756. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5757. "$type": "GeneralNodeTitleComponentSaveData",
  5758. "PaletteOverride": "MethodNodeTitlePalette"
  5759. },
  5760. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5761. "$type": "GeometrySaveData",
  5762. "Position": [
  5763. 220.0,
  5764. 1260.0
  5765. ]
  5766. },
  5767. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5768. "$type": "StylingComponentSaveData",
  5769. "SubStyle": ".method"
  5770. },
  5771. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5772. "$type": "PersistentIdComponentSaveData",
  5773. "PersistentId": "{697B8C43-9467-4AC4-9863-276248646C08}"
  5774. }
  5775. }
  5776. }
  5777. },
  5778. {
  5779. "Key": {
  5780. "id": 85122588602975
  5781. },
  5782. "Value": {
  5783. "ComponentData": {
  5784. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5785. "$type": "NodeSaveData"
  5786. },
  5787. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5788. "$type": "GeneralNodeTitleComponentSaveData",
  5789. "PaletteOverride": "MethodNodeTitlePalette"
  5790. },
  5791. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5792. "$type": "GeometrySaveData",
  5793. "Position": [
  5794. 220.0,
  5795. -140.0
  5796. ]
  5797. },
  5798. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5799. "$type": "StylingComponentSaveData",
  5800. "SubStyle": ".method"
  5801. },
  5802. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5803. "$type": "PersistentIdComponentSaveData",
  5804. "PersistentId": "{E2149812-A40B-4279-8265-9506F1A23AD0}"
  5805. }
  5806. }
  5807. }
  5808. },
  5809. {
  5810. "Key": {
  5811. "id": 85126883570271
  5812. },
  5813. "Value": {
  5814. "ComponentData": {
  5815. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5816. "$type": "NodeSaveData"
  5817. },
  5818. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5819. "$type": "GeneralNodeTitleComponentSaveData",
  5820. "PaletteOverride": "MethodNodeTitlePalette"
  5821. },
  5822. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5823. "$type": "GeometrySaveData",
  5824. "Position": [
  5825. 1580.0,
  5826. 300.0
  5827. ]
  5828. },
  5829. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5830. "$type": "StylingComponentSaveData",
  5831. "SubStyle": ".method"
  5832. },
  5833. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5834. "$type": "PersistentIdComponentSaveData",
  5835. "PersistentId": "{EF76C673-9852-4AE2-9AA0-77B77ADEB75F}"
  5836. }
  5837. }
  5838. }
  5839. }
  5840. ],
  5841. "StatisticsHelper": {
  5842. "InstanceCounter": [
  5843. {
  5844. "Key": 279752480743293933,
  5845. "Value": 1
  5846. },
  5847. {
  5848. "Key": 1066808777096871873,
  5849. "Value": 1
  5850. },
  5851. {
  5852. "Key": 2137122253630502734,
  5853. "Value": 2
  5854. },
  5855. {
  5856. "Key": 3575998353620511870,
  5857. "Value": 2
  5858. },
  5859. {
  5860. "Key": 4053150093067829293,
  5861. "Value": 9
  5862. },
  5863. {
  5864. "Key": 4199610336680704683,
  5865. "Value": 1
  5866. },
  5867. {
  5868. "Key": 6469701498942810678,
  5869. "Value": 1
  5870. },
  5871. {
  5872. "Key": 9815218044492189981,
  5873. "Value": 2
  5874. },
  5875. {
  5876. "Key": 10204019744198319120,
  5877. "Value": 1
  5878. },
  5879. {
  5880. "Key": 12033332465728181077,
  5881. "Value": 1
  5882. },
  5883. {
  5884. "Key": 12211944212017557921,
  5885. "Value": 1
  5886. },
  5887. {
  5888. "Key": 13794128613805510476,
  5889. "Value": 2
  5890. },
  5891. {
  5892. "Key": 14542321985734582213,
  5893. "Value": 1
  5894. },
  5895. {
  5896. "Key": 14850803506671509646,
  5897. "Value": 2
  5898. }
  5899. ]
  5900. }
  5901. },
  5902. "Component_[6239331530680962319]": {
  5903. "$type": "EditorGraphVariableManagerComponent",
  5904. "Id": 6239331530680962319
  5905. }
  5906. }
  5907. }
  5908. }
  5909. }