Skip to content

Instantly share code, notes, and snippets.

@JKrag
Last active August 29, 2015 13:55
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JKrag/8721072 to your computer and use it in GitHub Desktop.
Save JKrag/8721072 to your computer and use it in GitHub Desktop.
Working on a GraphGist for Neo4J

Exploring cat pedigrees in Neo4J

This is a Neo4J GraphGist where I discover how to model pedigrees in Neo, and various Cypher queries to explore the data.

The data used is from a public available online pedigree of cats. I have stripped of all the names and registration data for simplicity. From a large dataset, I have extracted all the cats belonging to the very small breeds, giving a total of about 600 cats instead of 200K.

The following picture shows a sketch of my general data-model. The arrows between cats could also have been illustrated as "recursive" arrows back to the same cat node-type, but I think that this visualisation better describes the DAG (Directed Acyclical Graph) property of a pedigree/family tree.

graphGistPedigreeModel

For simplicity, I initialize the whole thing in one giant cypher, in order to be able to directly reference the nodes being linked.

The following shows a small, non-executing, sample of the various types of data inserted:

//First we create some breed "groups" (mostly invented for the occasion)
CREATE
(s:GROUP {group:"SHORTHAIR"}),
(l:GROUP {group:"LONGHAIR"}),
(u:GROUP {group:"UNKNOWN"}),
(h:GROUP {group:"HAIRLESS"}),
(c:GROUP {group:"CURLY"}),

//then we add some actual breeds, mapping these to the relevant groups
(acs:BREED {code:"ACS"})-[:TYPE]->(s),
(bom:BREED {code:"BOM"})-[:TYPE]->(s),
(sfl:BREED {code:"SFL"})-[:TYPE]->(l),

//now we start adding actual cats, and their relationships to breeds
(c1683:Cat {id:"1683", gender:"M"}), (c1683)-[:IS_BREED]->(jbt),
(c1752:Cat {id:"1752", gender:"M"}), (c1752)-[:IS_BREED]->(dsp),
(c1753:Cat {id:"1753", gender:"F"}), (c1753)-[:IS_BREED]->(dsp),

//and last but not least, the essential links between cats and their parents (Sires and Dams in cat-speak)
(c194001)-[:SIRE]->(c157246),
(c194161)-[:SIRE]->(c154457),
(c194266)-[:SIRE]->(c160595),
(c1754)-[:DAM]->(c1753),
(c2040)-[:DAM]->(c20975),
(c2232)-[:DAM]->(c179738)
CREATE
(s:GROUP {group:"SHORTHAIR"}),
(l:GROUP {group:"LONGHAIR"}),
(u:GROUP {group:"UNKNOWN"}),
(h:GROUP {group:"HAIRLESS"}),
(c:GROUP {group:"CURLY"}),
(acs:BREED {code:"ACS"})-[:TYPE]->(s),
(ass:BREED {code:"ASS"})-[:TYPE]->(s),
(bom:BREED {code:"BOM"})-[:TYPE]->(s),
(sfl:BREED {code:"SFL"})-[:TYPE]->(l),
(nem:BREED {code:"NEM"})-[:TYPE]->(l),
(tha:BREED {code:"THA"})-[:TYPE]->(s),
(ams:BREED {code:"AMS"})-[:TYPE]->(s),
(sno:BREED {code:"SNO"})-[:TYPE]->(l),
(cym:BREED {code:"CYM"})-[:TYPE]->(l),
(grx:BREED {code:"GRX"})-[:TYPE]->(c),
(sfs:BREED {code:"SFS"})-[:TYPE]->(s),
(acl:BREED {code:"ACL"})-[:TYPE]->(l),
(dsp:BREED {code:"DSP"})-[:TYPE]->(h),
(kbs:BREED {code:"KBS"})-[:TYPE]->(s),
(srl:BREED {code:"SRL"})-[:TYPE]->(l),
(srs:BREED {code:"SRS"})-[:TYPE]->(s),
(jbt:BREED {code:"JBT"})-[:TYPE]->(s),
(c1683:Cat {id:"1683", gender:"M"}), (c1683)-[:IS_BREED]->(jbt),
(c1752:Cat {id:"1752", gender:"M"}), (c1752)-[:IS_BREED]->(dsp),
(c1753:Cat {id:"1753", gender:"F"}), (c1753)-[:IS_BREED]->(dsp),
(c1754:Cat {id:"1754", gender:"F"}), (c1754)-[:IS_BREED]->(dsp),
(c2040:Cat {id:"2040", gender:"M"}), (c2040)-[:IS_BREED]->(sno),
(c2075:Cat {id:"2075", gender:"M"}), (c2075)-[:IS_BREED]->(sno),
(c2114:Cat {id:"2114", gender:"F"}), (c2114)-[:IS_BREED]->(sno),
(c2231:Cat {id:"2231", gender:"M"}), (c2231)-[:IS_BREED]->(kbs),
(c2232:Cat {id:"2232", gender:"M"}), (c2232)-[:IS_BREED]->(kbs),
(c2244:Cat {id:"2244", gender:"M"}), (c2244)-[:IS_BREED]->(dsp),
(c2483:Cat {id:"2483", gender:"M"}), (c2483)-[:IS_BREED]->(sno),
(c3024:Cat {id:"3024", gender:"F"}), (c3024)-[:IS_BREED]->(kbs),
(c3043:Cat {id:"3043", gender:"F"}), (c3043)-[:IS_BREED]->(kbs),
(c3046:Cat {id:"3046", gender:"F"}), (c3046)-[:IS_BREED]->(dsp),
(c3047:Cat {id:"3047", gender:"F"}), (c3047)-[:IS_BREED]->(jbt),
(c3048:Cat {id:"3048", gender:"F"}), (c3048)-[:IS_BREED]->(jbt),
(c3049:Cat {id:"3049", gender:"F"}), (c3049)-[:IS_BREED]->(jbt),
(c3050:Cat {id:"3050", gender:"M"}), (c3050)-[:IS_BREED]->(jbt),
(c3051:Cat {id:"3051", gender:"M"}), (c3051)-[:IS_BREED]->(jbt),
(c3054:Cat {id:"3054", gender:"F"}), (c3054)-[:IS_BREED]->(dsp),
(c3649:Cat {id:"3649", gender:"M"}), (c3649)-[:IS_BREED]->(dsp),
(c3998:Cat {id:"3998", gender:"M"}), (c3998)-[:IS_BREED]->(acl),
(c4011:Cat {id:"4011", gender:"F"}), (c4011)-[:IS_BREED]->(grx),
(c4037:Cat {id:"4037", gender:"F"}), (c4037)-[:IS_BREED]->(kbs),
(c4855:Cat {id:"4855", gender:"F"}), (c4855)-[:IS_BREED]->(acl),
(c5092:Cat {id:"5092", gender:"F"}), (c5092)-[:IS_BREED]->(dsp),
(c5146:Cat {id:"5146", gender:"F"}), (c5146)-[:IS_BREED]->(nem),
(c5324:Cat {id:"5324", gender:"F"}), (c5324)-[:IS_BREED]->(dsp),
(c5823:Cat {id:"5823", gender:"F"}), (c5823)-[:IS_BREED]->(jbt),
(c5948:Cat {id:"5948", gender:"M"}), (c5948)-[:IS_BREED]->(grx),
(c5954:Cat {id:"5954", gender:"M"}), (c5954)-[:IS_BREED]->(dsp),
(c6455:Cat {id:"6455", gender:"M"}), (c6455)-[:IS_BREED]->(dsp),
(c6456:Cat {id:"6456", gender:"M"}), (c6456)-[:IS_BREED]->(dsp),
(c6520:Cat {id:"6520", gender:"M"}), (c6520)-[:IS_BREED]->(dsp),
(c6987:Cat {id:"6987", gender:"F"}), (c6987)-[:IS_BREED]->(kbs),
(c7178:Cat {id:"7178", gender:"F"}), (c7178)-[:IS_BREED]->(kbs),
(c7224:Cat {id:"7224", gender:"F"}), (c7224)-[:IS_BREED]->(dsp),
(c7411:Cat {id:"7411", gender:"M"}), (c7411)-[:IS_BREED]->(dsp),
(c7609:Cat {id:"7609", gender:"M"}), (c7609)-[:IS_BREED]->(sno),
(c7610:Cat {id:"7610", gender:"F"}), (c7610)-[:IS_BREED]->(sno),
(c8171:Cat {id:"8171", gender:"F"}), (c8171)-[:IS_BREED]->(dsp),
(c8281:Cat {id:"8281", gender:"F"}), (c8281)-[:IS_BREED]->(acl),
(c9116:Cat {id:"9116", gender:"F"}), (c9116)-[:IS_BREED]->(acl),
(c9332:Cat {id:"9332", gender:"M"}), (c9332)-[:IS_BREED]->(kbs),
(c9333:Cat {id:"9333", gender:"F"}), (c9333)-[:IS_BREED]->(kbs),
(c9438:Cat {id:"9438", gender:"M"}), (c9438)-[:IS_BREED]->(dsp),
(c9666:Cat {id:"9666", gender:"F"}), (c9666)-[:IS_BREED]->(nem),
(c9877:Cat {id:"9877", gender:"M"}), (c9877)-[:IS_BREED]->(jbt),
(c9879:Cat {id:"9879", gender:"F"}), (c9879)-[:IS_BREED]->(jbt),
(c9880:Cat {id:"9880", gender:"F"}), (c9880)-[:IS_BREED]->(jbt),
(c9881:Cat {id:"9881", gender:"M"}), (c9881)-[:IS_BREED]->(jbt),
(c9883:Cat {id:"9883", gender:"F"}), (c9883)-[:IS_BREED]->(jbt),
(c9884:Cat {id:"9884", gender:"M"}), (c9884)-[:IS_BREED]->(jbt),
(c9885:Cat {id:"9885", gender:"F"}), (c9885)-[:IS_BREED]->(jbt),
(c9886:Cat {id:"9886", gender:"F"}), (c9886)-[:IS_BREED]->(jbt),
(c9887:Cat {id:"9887", gender:"F"}), (c9887)-[:IS_BREED]->(jbt),
(c9888:Cat {id:"9888", gender:"F"}), (c9888)-[:IS_BREED]->(jbt),
(c9889:Cat {id:"9889", gender:"F"}), (c9889)-[:IS_BREED]->(jbt),
(c9892:Cat {id:"9892", gender:"M"}), (c9892)-[:IS_BREED]->(jbt),
(c9893:Cat {id:"9893", gender:"M"}), (c9893)-[:IS_BREED]->(jbt),
(c9894:Cat {id:"9894", gender:"F"}), (c9894)-[:IS_BREED]->(jbt),
(c9895:Cat {id:"9895", gender:"F"}), (c9895)-[:IS_BREED]->(jbt),
(c9896:Cat {id:"9896", gender:"M"}), (c9896)-[:IS_BREED]->(jbt),
(c9897:Cat {id:"9897", gender:"M"}), (c9897)-[:IS_BREED]->(jbt),
(c9898:Cat {id:"9898", gender:"M"}), (c9898)-[:IS_BREED]->(jbt),
(c9899:Cat {id:"9899", gender:"M"}), (c9899)-[:IS_BREED]->(jbt),
(c9900:Cat {id:"9900", gender:"M"}), (c9900)-[:IS_BREED]->(jbt),
(c9901:Cat {id:"9901", gender:"F"}), (c9901)-[:IS_BREED]->(jbt),
(c9902:Cat {id:"9902", gender:"F"}), (c9902)-[:IS_BREED]->(jbt),
(c9903:Cat {id:"9903", gender:"F"}), (c9903)-[:IS_BREED]->(jbt),
(c9904:Cat {id:"9904", gender:"F"}), (c9904)-[:IS_BREED]->(jbt),
(c10081:Cat {id:"10081", gender:"F"}), (c10081)-[:IS_BREED]->(grx),
(c10125:Cat {id:"10125", gender:"F"}), (c10125)-[:IS_BREED]->(dsp),
(c10645:Cat {id:"10645", gender:"M"}), (c10645)-[:IS_BREED]->(acl),
(c11035:Cat {id:"11035", gender:"M"}), (c11035)-[:IS_BREED]->(grx),
(c11093:Cat {id:"11093", gender:"F"}), (c11093)-[:IS_BREED]->(jbt),
(c11094:Cat {id:"11094", gender:"M"}), (c11094)-[:IS_BREED]->(jbt),
(c11095:Cat {id:"11095", gender:"F"}), (c11095)-[:IS_BREED]->(jbt),
(c11293:Cat {id:"11293", gender:"F"}), (c11293)-[:IS_BREED]->(kbs),
(c11347:Cat {id:"11347", gender:"M"}), (c11347)-[:IS_BREED]->(srs),
(c11348:Cat {id:"11348", gender:"M"}), (c11348)-[:IS_BREED]->(srl),
(c11349:Cat {id:"11349", gender:"F"}), (c11349)-[:IS_BREED]->(srl),
(c11350:Cat {id:"11350", gender:"F"}), (c11350)-[:IS_BREED]->(srl),
(c11642:Cat {id:"11642", gender:"F"}), (c11642)-[:IS_BREED]->(grx),
(c11739:Cat {id:"11739", gender:"F"}), (c11739)-[:IS_BREED]->(srs),
(c11742:Cat {id:"11742", gender:"F"}), (c11742)-[:IS_BREED]->(srs),
(c11761:Cat {id:"11761", gender:"F"}), (c11761)-[:IS_BREED]->(srs),
(c12357:Cat {id:"12357", gender:"F"}), (c12357)-[:IS_BREED]->(sno),
(c12358:Cat {id:"12358", gender:"M"}), (c12358)-[:IS_BREED]->(sno),
(c12359:Cat {id:"12359", gender:"F"}), (c12359)-[:IS_BREED]->(sno),
(c12931:Cat {id:"12931", gender:"M"}), (c12931)-[:IS_BREED]->(cym),
(c14202:Cat {id:"14202", gender:"M"}), (c14202)-[:IS_BREED]->(srl),
(c14249:Cat {id:"14249", gender:"M"}), (c14249)-[:IS_BREED]->(kbs),
(c14258:Cat {id:"14258", gender:"F"}), (c14258)-[:IS_BREED]->(dsp),
(c14701:Cat {id:"14701", gender:"M"}), (c14701)-[:IS_BREED]->(grx),
(c15218:Cat {id:"15218", gender:"M"}), (c15218)-[:IS_BREED]->(cym),
(c15219:Cat {id:"15219", gender:"M"}), (c15219)-[:IS_BREED]->(cym),
(c15220:Cat {id:"15220", gender:"F"}), (c15220)-[:IS_BREED]->(grx),
(c15222:Cat {id:"15222", gender:"F"}), (c15222)-[:IS_BREED]->(cym),
(c15344:Cat {id:"15344", gender:"M"}), (c15344)-[:IS_BREED]->(cym),
(c15351:Cat {id:"15351", gender:"F"}), (c15351)-[:IS_BREED]->(cym),
(c15352:Cat {id:"15352", gender:"F"}), (c15352)-[:IS_BREED]->(cym),
(c15422:Cat {id:"15422", gender:"M"}), (c15422)-[:IS_BREED]->(sno),
(c15590:Cat {id:"15590", gender:"F"}), (c15590)-[:IS_BREED]->(acl),
(c15690:Cat {id:"15690", gender:"M"}), (c15690)-[:IS_BREED]->(dsp),
(c16257:Cat {id:"16257", gender:"M"}), (c16257)-[:IS_BREED]->(jbt),
(c16258:Cat {id:"16258", gender:"M"}), (c16258)-[:IS_BREED]->(jbt),
(c16345:Cat {id:"16345", gender:"M"}), (c16345)-[:IS_BREED]->(cym),
(c16401:Cat {id:"16401", gender:"M"}), (c16401)-[:IS_BREED]->(dsp),
(c16412:Cat {id:"16412", gender:"M"}), (c16412)-[:IS_BREED]->(srl),
(c16413:Cat {id:"16413", gender:"M"}), (c16413)-[:IS_BREED]->(srs),
(c16414:Cat {id:"16414", gender:"M"}), (c16414)-[:IS_BREED]->(srl),
(c16415:Cat {id:"16415", gender:"M"}), (c16415)-[:IS_BREED]->(srs),
(c16416:Cat {id:"16416", gender:"M"}), (c16416)-[:IS_BREED]->(srs),
(c16417:Cat {id:"16417", gender:"M"}), (c16417)-[:IS_BREED]->(srl),
(c16418:Cat {id:"16418", gender:"F"}), (c16418)-[:IS_BREED]->(srl),
(c16419:Cat {id:"16419", gender:"F"}), (c16419)-[:IS_BREED]->(srl),
(c16420:Cat {id:"16420", gender:"F"}), (c16420)-[:IS_BREED]->(srs),
(c16579:Cat {id:"16579", gender:"M"}), (c16579)-[:IS_BREED]->(tha),
(c17156:Cat {id:"17156", gender:"M"}), (c17156)-[:IS_BREED]->(ams),
(c17443:Cat {id:"17443", gender:"M"}), (c17443)-[:IS_BREED]->(srl),
(c17549:Cat {id:"17549", gender:"F"}), (c17549)-[:IS_BREED]->(srs),
(c17550:Cat {id:"17550", gender:"M"}), (c17550)-[:IS_BREED]->(srs),
(c17551:Cat {id:"17551", gender:"M"}), (c17551)-[:IS_BREED]->(srs),
(c17554:Cat {id:"17554", gender:"F"}), (c17554)-[:IS_BREED]->(srs),
(c17556:Cat {id:"17556", gender:"M"}), (c17556)-[:IS_BREED]->(srs),
(c17558:Cat {id:"17558", gender:"F"}), (c17558)-[:IS_BREED]->(srs),
(c17564:Cat {id:"17564", gender:"F"}), (c17564)-[:IS_BREED]->(srs),
(c18085:Cat {id:"18085", gender:"F"}), (c18085)-[:IS_BREED]->(srl),
(c18150:Cat {id:"18150", gender:"F"}), (c18150)-[:IS_BREED]->(srs),
(c18355:Cat {id:"18355", gender:"F"}), (c18355)-[:IS_BREED]->(acl),
(c19002:Cat {id:"19002", gender:"F"}), (c19002)-[:IS_BREED]->(srl),
(c19004:Cat {id:"19004", gender:"M"}), (c19004)-[:IS_BREED]->(srl),
(c19011:Cat {id:"19011", gender:"F"}), (c19011)-[:IS_BREED]->(kbs),
(c19907:Cat {id:"19907", gender:"M"}), (c19907)-[:IS_BREED]->(jbt),
(c19908:Cat {id:"19908", gender:"M"}), (c19908)-[:IS_BREED]->(jbt),
(c19909:Cat {id:"19909", gender:"F"}), (c19909)-[:IS_BREED]->(jbt),
(c19910:Cat {id:"19910", gender:"M"}), (c19910)-[:IS_BREED]->(jbt),
(c19942:Cat {id:"19942", gender:"M"}), (c19942)-[:IS_BREED]->(jbt),
(c20045:Cat {id:"20045", gender:"F"}), (c20045)-[:IS_BREED]->(grx),
(c20971:Cat {id:"20971", gender:"F"}), (c20971)-[:IS_BREED]->(sno),
(c20972:Cat {id:"20972", gender:"F"}), (c20972)-[:IS_BREED]->(sno),
(c20975:Cat {id:"20975", gender:"F"}), (c20975)-[:IS_BREED]->(sno),
(c20977:Cat {id:"20977", gender:"M"}), (c20977)-[:IS_BREED]->(sno),
(c20978:Cat {id:"20978", gender:"M"}), (c20978)-[:IS_BREED]->(sno),
(c20979:Cat {id:"20979", gender:"F"}), (c20979)-[:IS_BREED]->(sno),
(c21074:Cat {id:"21074", gender:"F"}), (c21074)-[:IS_BREED]->(srs),
(c21943:Cat {id:"21943", gender:"F"}), (c21943)-[:IS_BREED]->(grx),
(c22322:Cat {id:"22322", gender:"M"}), (c22322)-[:IS_BREED]->(acl),
(c22323:Cat {id:"22323", gender:"F"}), (c22323)-[:IS_BREED]->(acl),
(c22324:Cat {id:"22324", gender:"M"}), (c22324)-[:IS_BREED]->(acl),
(c22325:Cat {id:"22325", gender:"M"}), (c22325)-[:IS_BREED]->(srl),
(c22326:Cat {id:"22326", gender:"F"}), (c22326)-[:IS_BREED]->(srl),
(c22328:Cat {id:"22328", gender:"M"}), (c22328)-[:IS_BREED]->(srs),
(c22329:Cat {id:"22329", gender:"M"}), (c22329)-[:IS_BREED]->(srs),
(c22330:Cat {id:"22330", gender:"F"}), (c22330)-[:IS_BREED]->(srs),
(c22349:Cat {id:"22349", gender:"F"}), (c22349)-[:IS_BREED]->(cym),
(c22544:Cat {id:"22544", gender:"M"}), (c22544)-[:IS_BREED]->(kbs),
(c23046:Cat {id:"23046", gender:"M"}), (c23046)-[:IS_BREED]->(dsp),
(c23097:Cat {id:"23097", gender:"M"}), (c23097)-[:IS_BREED]->(srs),
(c23553:Cat {id:"23553", gender:"M"}), (c23553)-[:IS_BREED]->(acl),
(c23842:Cat {id:"23842", gender:"M"}), (c23842)-[:IS_BREED]->(srl),
(c24283:Cat {id:"24283", gender:"M"}), (c24283)-[:IS_BREED]->(sno),
(c24467:Cat {id:"24467", gender:"M"}), (c24467)-[:IS_BREED]->(dsp),
(c24470:Cat {id:"24470", gender:"M"}), (c24470)-[:IS_BREED]->(srs),
(c24657:Cat {id:"24657", gender:"F"}), (c24657)-[:IS_BREED]->(ams),
(c24658:Cat {id:"24658", gender:"M"}), (c24658)-[:IS_BREED]->(ams),
(c24942:Cat {id:"24942", gender:"M"}), (c24942)-[:IS_BREED]->(grx),
(c26366:Cat {id:"26366", gender:"M"}), (c26366)-[:IS_BREED]->(srl),
(c26368:Cat {id:"26368", gender:"F"}), (c26368)-[:IS_BREED]->(srl),
(c34120:Cat {id:"34120", gender:"M"}), (c34120)-[:IS_BREED]->(srs),
(c36422:Cat {id:"36422", gender:"F"}), (c36422)-[:IS_BREED]->(srs),
(c36425:Cat {id:"36425", gender:"F"}), (c36425)-[:IS_BREED]->(srs),
(c36429:Cat {id:"36429", gender:"F"}), (c36429)-[:IS_BREED]->(srs),
(c36430:Cat {id:"36430", gender:"M"}), (c36430)-[:IS_BREED]->(srs),
(c40105:Cat {id:"40105", gender:"M"}), (c40105)-[:IS_BREED]->(acl),
(c42864:Cat {id:"42864", gender:"M"}), (c42864)-[:IS_BREED]->(srl),
(c45761:Cat {id:"45761", gender:"M"}), (c45761)-[:IS_BREED]->(srs),
(c46514:Cat {id:"46514", gender:"F"}), (c46514)-[:IS_BREED]->(acl),
(c46515:Cat {id:"46515", gender:"M"}), (c46515)-[:IS_BREED]->(acl),
(c46516:Cat {id:"46516", gender:"F"}), (c46516)-[:IS_BREED]->(acl),
(c61667:Cat {id:"61667", gender:"M"}), (c61667)-[:IS_BREED]->(kbs),
(c67954:Cat {id:"67954", gender:"M"}), (c67954)-[:IS_BREED]->(kbs),
(c67959:Cat {id:"67959", gender:"M"}), (c67959)-[:IS_BREED]->(kbs),
(c72061:Cat {id:"72061", gender:"M"}), (c72061)-[:IS_BREED]->(srs),
(c72065:Cat {id:"72065", gender:"F"}), (c72065)-[:IS_BREED]->(srl),
(c72068:Cat {id:"72068", gender:"M"}), (c72068)-[:IS_BREED]->(srl),
(c72069:Cat {id:"72069", gender:"F"}), (c72069)-[:IS_BREED]->(srl),
(c72071:Cat {id:"72071", gender:"F"}), (c72071)-[:IS_BREED]->(cym),
(c72943:Cat {id:"72943", gender:"F"}), (c72943)-[:IS_BREED]->(acl),
(c72945:Cat {id:"72945", gender:"F"}), (c72945)-[:IS_BREED]->(acl),
(c79793:Cat {id:"79793", gender:"F"}), (c79793)-[:IS_BREED]->(acl),
(c79797:Cat {id:"79797", gender:"F"}), (c79797)-[:IS_BREED]->(srl),
(c83171:Cat {id:"83171", gender:"F"}), (c83171)-[:IS_BREED]->(srs),
(c85535:Cat {id:"85535", gender:"M"}), (c85535)-[:IS_BREED]->(srs),
(c85629:Cat {id:"85629", gender:"F"}), (c85629)-[:IS_BREED]->(srs),
(c85716:Cat {id:"85716", gender:"M"}), (c85716)-[:IS_BREED]->(srs),
(c86755:Cat {id:"86755", gender:"M"}), (c86755)-[:IS_BREED]->(srl),
(c86836:Cat {id:"86836", gender:"M"}), (c86836)-[:IS_BREED]->(acl),
(c89026:Cat {id:"89026", gender:"F"}), (c89026)-[:IS_BREED]->(sfs),
(c89078:Cat {id:"89078", gender:"F"}), (c89078)-[:IS_BREED]->(sfs),
(c89138:Cat {id:"89138", gender:"F"}), (c89138)-[:IS_BREED]->(sfs),
(c89141:Cat {id:"89141", gender:"M"}), (c89141)-[:IS_BREED]->(sfs),
(c89147:Cat {id:"89147", gender:"F"}), (c89147)-[:IS_BREED]->(sfs),
(c89148:Cat {id:"89148", gender:"F"}), (c89148)-[:IS_BREED]->(sfs),
(c89151:Cat {id:"89151", gender:"M"}), (c89151)-[:IS_BREED]->(sfs),
(c89157:Cat {id:"89157", gender:"M"}), (c89157)-[:IS_BREED]->(sfs),
(c89172:Cat {id:"89172", gender:"M"}), (c89172)-[:IS_BREED]->(sfs),
(c89180:Cat {id:"89180", gender:"F"}), (c89180)-[:IS_BREED]->(sfs),
(c89189:Cat {id:"89189", gender:"F"}), (c89189)-[:IS_BREED]->(sfs),
(c89199:Cat {id:"89199", gender:"M"}), (c89199)-[:IS_BREED]->(sfs),
(c89205:Cat {id:"89205", gender:"F"}), (c89205)-[:IS_BREED]->(sfs),
(c89211:Cat {id:"89211", gender:"M"}), (c89211)-[:IS_BREED]->(srs),
(c89214:Cat {id:"89214", gender:"F"}), (c89214)-[:IS_BREED]->(sfs),
(c89215:Cat {id:"89215", gender:"F"}), (c89215)-[:IS_BREED]->(sfs),
(c89217:Cat {id:"89217", gender:"F"}), (c89217)-[:IS_BREED]->(sfs),
(c89219:Cat {id:"89219", gender:"F"}), (c89219)-[:IS_BREED]->(sfs),
(c89222:Cat {id:"89222", gender:"F"}), (c89222)-[:IS_BREED]->(sfs),
(c89227:Cat {id:"89227", gender:"M"}), (c89227)-[:IS_BREED]->(sfs),
(c89228:Cat {id:"89228", gender:"M"}), (c89228)-[:IS_BREED]->(sfs),
(c89229:Cat {id:"89229", gender:"M"}), (c89229)-[:IS_BREED]->(sfs),
(c89239:Cat {id:"89239", gender:"M"}), (c89239)-[:IS_BREED]->(sfs),
(c89252:Cat {id:"89252", gender:"M"}), (c89252)-[:IS_BREED]->(sfs),
(c89254:Cat {id:"89254", gender:"M"}), (c89254)-[:IS_BREED]->(sfl),
(c89257:Cat {id:"89257", gender:"F"}), (c89257)-[:IS_BREED]->(sfs),
(c89258:Cat {id:"89258", gender:"M"}), (c89258)-[:IS_BREED]->(sfs),
(c89262:Cat {id:"89262", gender:"M"}), (c89262)-[:IS_BREED]->(sfs),
(c89263:Cat {id:"89263", gender:"F"}), (c89263)-[:IS_BREED]->(sfs),
(c89276:Cat {id:"89276", gender:"F"}), (c89276)-[:IS_BREED]->(sfs),
(c91994:Cat {id:"91994", gender:"M"}), (c91994)-[:IS_BREED]->(kbs),
(c91999:Cat {id:"91999", gender:"F"}), (c91999)-[:IS_BREED]->(kbs),
(c98411:Cat {id:"98411", gender:"M"}), (c98411)-[:IS_BREED]->(nem),
(c98431:Cat {id:"98431", gender:"F"}), (c98431)-[:IS_BREED]->(nem),
(c99601:Cat {id:"99601", gender:"F"}), (c99601)-[:IS_BREED]->(cym),
(c99602:Cat {id:"99602", gender:"M"}), (c99602)-[:IS_BREED]->(cym),
(c99603:Cat {id:"99603", gender:"F"}), (c99603)-[:IS_BREED]->(cym),
(c101922:Cat {id:"101922", gender:"F"}), (c101922)-[:IS_BREED]->(sfs),
(c101923:Cat {id:"101923", gender:"F"}), (c101923)-[:IS_BREED]->(srs),
(c101926:Cat {id:"101926", gender:"F"}), (c101926)-[:IS_BREED]->(grx),
(c101929:Cat {id:"101929", gender:"F"}), (c101929)-[:IS_BREED]->(srl),
(c101933:Cat {id:"101933", gender:"M"}), (c101933)-[:IS_BREED]->(grx),
(c101939:Cat {id:"101939", gender:"F"}), (c101939)-[:IS_BREED]->(grx),
(c101942:Cat {id:"101942", gender:"M"}), (c101942)-[:IS_BREED]->(grx),
(c101943:Cat {id:"101943", gender:"F"}), (c101943)-[:IS_BREED]->(grx),
(c101946:Cat {id:"101946", gender:"M"}), (c101946)-[:IS_BREED]->(grx),
(c106246:Cat {id:"106246", gender:"M"}), (c106246)-[:IS_BREED]->(srs),
(c108207:Cat {id:"108207", gender:"F"}), (c108207)-[:IS_BREED]->(jbt),
(c108209:Cat {id:"108209", gender:"F"}), (c108209)-[:IS_BREED]->(jbt),
(c108212:Cat {id:"108212", gender:"M"}), (c108212)-[:IS_BREED]->(jbt),
(c108214:Cat {id:"108214", gender:"M"}), (c108214)-[:IS_BREED]->(jbt),
(c108226:Cat {id:"108226", gender:"M"}), (c108226)-[:IS_BREED]->(jbt),
(c108228:Cat {id:"108228", gender:"M"}), (c108228)-[:IS_BREED]->(jbt),
(c108229:Cat {id:"108229", gender:"M"}), (c108229)-[:IS_BREED]->(jbt),
(c108233:Cat {id:"108233", gender:"F"}), (c108233)-[:IS_BREED]->(jbt),
(c108234:Cat {id:"108234", gender:"F"}), (c108234)-[:IS_BREED]->(jbt),
(c112572:Cat {id:"112572", gender:"M"}), (c112572)-[:IS_BREED]->(cym),
(c112574:Cat {id:"112574", gender:"F"}), (c112574)-[:IS_BREED]->(cym),
(c113073:Cat {id:"113073", gender:"F"}), (c113073)-[:IS_BREED]->(acl),
(c113111:Cat {id:"113111", gender:"M"}), (c113111)-[:IS_BREED]->(cym),
(c114000:Cat {id:"114000", gender:"F"}), (c114000)-[:IS_BREED]->(grx),
(c118049:Cat {id:"118049", gender:"M"}), (c118049)-[:IS_BREED]->(srl),
(c118283:Cat {id:"118283", gender:"F"}), (c118283)-[:IS_BREED]->(sfs),
(c118811:Cat {id:"118811", gender:"F"}), (c118811)-[:IS_BREED]->(kbs),
(c118905:Cat {id:"118905", gender:"F"}), (c118905)-[:IS_BREED]->(kbs),
(c118969:Cat {id:"118969", gender:"F"}), (c118969)-[:IS_BREED]->(kbs),
(c119144:Cat {id:"119144", gender:"M"}), (c119144)-[:IS_BREED]->(grx),
(c119372:Cat {id:"119372", gender:"F"}), (c119372)-[:IS_BREED]->(kbs),
(c119373:Cat {id:"119373", gender:"F"}), (c119373)-[:IS_BREED]->(kbs),
(c119766:Cat {id:"119766", gender:"F"}), (c119766)-[:IS_BREED]->(dsp),
(c120656:Cat {id:"120656", gender:"M"}), (c120656)-[:IS_BREED]->(grx),
(c120657:Cat {id:"120657", gender:"M"}), (c120657)-[:IS_BREED]->(grx),
(c120713:Cat {id:"120713", gender:"M"}), (c120713)-[:IS_BREED]->(dsp),
(c120922:Cat {id:"120922", gender:"F"}), (c120922)-[:IS_BREED]->(bom),
(c121070:Cat {id:"121070", gender:"M"}), (c121070)-[:IS_BREED]->(grx),
(c121071:Cat {id:"121071", gender:"F"}), (c121071)-[:IS_BREED]->(grx),
(c121072:Cat {id:"121072", gender:"F"}), (c121072)-[:IS_BREED]->(grx),
(c121073:Cat {id:"121073", gender:"M"}), (c121073)-[:IS_BREED]->(acl),
(c121074:Cat {id:"121074", gender:"M"}), (c121074)-[:IS_BREED]->(grx),
(c121075:Cat {id:"121075", gender:"M"}), (c121075)-[:IS_BREED]->(acl),
(c121251:Cat {id:"121251", gender:"M"}), (c121251)-[:IS_BREED]->(grx),
(c121715:Cat {id:"121715", gender:"F"}), (c121715)-[:IS_BREED]->(srs),
(c121772:Cat {id:"121772", gender:"M"}), (c121772)-[:IS_BREED]->(dsp),
(c122470:Cat {id:"122470", gender:"M"}), (c122470)-[:IS_BREED]->(sno),
(c122472:Cat {id:"122472", gender:"M"}), (c122472)-[:IS_BREED]->(kbs),
(c122798:Cat {id:"122798", gender:"F"}), (c122798)-[:IS_BREED]->(srl),
(c123036:Cat {id:"123036", gender:"M"}), (c123036)-[:IS_BREED]->(cym),
(c123062:Cat {id:"123062", gender:"F"}), (c123062)-[:IS_BREED]->(cym),
(c123063:Cat {id:"123063", gender:"M"}), (c123063)-[:IS_BREED]->(cym),
(c123326:Cat {id:"123326", gender:"M"}), (c123326)-[:IS_BREED]->(grx),
(c123682:Cat {id:"123682", gender:"M"}), (c123682)-[:IS_BREED]->(srl),
(c124211:Cat {id:"124211", gender:"F"}), (c124211)-[:IS_BREED]->(srs),
(c124853:Cat {id:"124853", gender:"M"}), (c124853)-[:IS_BREED]->(acl),
(c125396:Cat {id:"125396", gender:"M"}), (c125396)-[:IS_BREED]->(srl),
(c125399:Cat {id:"125399", gender:"F"}), (c125399)-[:IS_BREED]->(sfs),
(c125400:Cat {id:"125400", gender:"F"}), (c125400)-[:IS_BREED]->(sfs),
(c125409:Cat {id:"125409", gender:"M"}), (c125409)-[:IS_BREED]->(jbt),
(c125539:Cat {id:"125539", gender:"F"}), (c125539)-[:IS_BREED]->(jbt),
(c125540:Cat {id:"125540", gender:"F"}), (c125540)-[:IS_BREED]->(jbt),
(c125659:Cat {id:"125659", gender:"F"}), (c125659)-[:IS_BREED]->(kbs),
(c125695:Cat {id:"125695", gender:"M"}), (c125695)-[:IS_BREED]->(dsp),
(c125721:Cat {id:"125721", gender:"M"}), (c125721)-[:IS_BREED]->(grx),
(c125849:Cat {id:"125849", gender:"M"}), (c125849)-[:IS_BREED]->(dsp),
(c126253:Cat {id:"126253", gender:"F"}), (c126253)-[:IS_BREED]->(dsp),
(c126393:Cat {id:"126393", gender:"M"}), (c126393)-[:IS_BREED]->(jbt),
(c126858:Cat {id:"126858", gender:"F"}), (c126858)-[:IS_BREED]->(tha),
(c127180:Cat {id:"127180", gender:"F"}), (c127180)-[:IS_BREED]->(kbs),
(c127239:Cat {id:"127239", gender:"F"}), (c127239)-[:IS_BREED]->(sno),
(c127282:Cat {id:"127282", gender:"F"}), (c127282)-[:IS_BREED]->(dsp),
(c127289:Cat {id:"127289", gender:"F"}), (c127289)-[:IS_BREED]->(srs),
(c127295:Cat {id:"127295", gender:"F"}), (c127295)-[:IS_BREED]->(kbs),
(c128166:Cat {id:"128166", gender:"F"}), (c128166)-[:IS_BREED]->(dsp),
(c128175:Cat {id:"128175", gender:"F"}), (c128175)-[:IS_BREED]->(jbt),
(c128176:Cat {id:"128176", gender:"F"}), (c128176)-[:IS_BREED]->(jbt),
(c128177:Cat {id:"128177", gender:"F"}), (c128177)-[:IS_BREED]->(jbt),
(c128178:Cat {id:"128178", gender:"M"}), (c128178)-[:IS_BREED]->(jbt),
(c128179:Cat {id:"128179", gender:"M"}), (c128179)-[:IS_BREED]->(jbt),
(c128180:Cat {id:"128180", gender:"F"}), (c128180)-[:IS_BREED]->(jbt),
(c128188:Cat {id:"128188", gender:"F"}), (c128188)-[:IS_BREED]->(grx),
(c129275:Cat {id:"129275", gender:"M"}), (c129275)-[:IS_BREED]->(srl),
(c129449:Cat {id:"129449", gender:"F"}), (c129449)-[:IS_BREED]->(acl),
(c130127:Cat {id:"130127", gender:"F"}), (c130127)-[:IS_BREED]->(kbs),
(c130459:Cat {id:"130459", gender:"F"}), (c130459)-[:IS_BREED]->(sfs),
(c130510:Cat {id:"130510", gender:"F"}), (c130510)-[:IS_BREED]->(dsp),
(c131127:Cat {id:"131127", gender:"M"}), (c131127)-[:IS_BREED]->(sfs),
(c131289:Cat {id:"131289", gender:"F"}), (c131289)-[:IS_BREED]->(srs),
(c132072:Cat {id:"132072", gender:"F"}), (c132072)-[:IS_BREED]->(sno),
(c132230:Cat {id:"132230", gender:"M"}), (c132230)-[:IS_BREED]->(srl),
(c132475:Cat {id:"132475", gender:"F"}), (c132475)-[:IS_BREED]->(kbs),
(c132489:Cat {id:"132489", gender:"F"}), (c132489)-[:IS_BREED]->(dsp),
(c132497:Cat {id:"132497", gender:"F"}), (c132497)-[:IS_BREED]->(srs),
(c132520:Cat {id:"132520", gender:"M"}), (c132520)-[:IS_BREED]->(kbs),
(c132812:Cat {id:"132812", gender:"F"}), (c132812)-[:IS_BREED]->(acl),
(c132814:Cat {id:"132814", gender:"M"}), (c132814)-[:IS_BREED]->(srl),
(c132816:Cat {id:"132816", gender:"F"}), (c132816)-[:IS_BREED]->(srs),
(c132899:Cat {id:"132899", gender:"M"}), (c132899)-[:IS_BREED]->(grx),
(c132943:Cat {id:"132943", gender:"F"}), (c132943)-[:IS_BREED]->(dsp),
(c133549:Cat {id:"133549", gender:"M"}), (c133549)-[:IS_BREED]->(srl),
(c133824:Cat {id:"133824", gender:"F"}), (c133824)-[:IS_BREED]->(grx),
(c134427:Cat {id:"134427", gender:"M"}), (c134427)-[:IS_BREED]->(srs),
(c134432:Cat {id:"134432", gender:"M"}), (c134432)-[:IS_BREED]->(srs),
(c134580:Cat {id:"134580", gender:"F"}), (c134580)-[:IS_BREED]->(grx),
(c134795:Cat {id:"134795", gender:"M"}), (c134795)-[:IS_BREED]->(srl),
(c134924:Cat {id:"134924", gender:"M"}), (c134924)-[:IS_BREED]->(srs),
(c135272:Cat {id:"135272", gender:"F"}), (c135272)-[:IS_BREED]->(ams),
(c135275:Cat {id:"135275", gender:"M"}), (c135275)-[:IS_BREED]->(ams),
(c135341:Cat {id:"135341", gender:"F"}), (c135341)-[:IS_BREED]->(dsp),
(c135729:Cat {id:"135729", gender:"F"}), (c135729)-[:IS_BREED]->(kbs),
(c135841:Cat {id:"135841", gender:"M"}), (c135841)-[:IS_BREED]->(dsp),
(c136577:Cat {id:"136577", gender:"F"}), (c136577)-[:IS_BREED]->(acl),
(c136578:Cat {id:"136578", gender:"F"}), (c136578)-[:IS_BREED]->(acl),
(c136626:Cat {id:"136626", gender:"M"}), (c136626)-[:IS_BREED]->(sfs),
(c136701:Cat {id:"136701", gender:"M"}), (c136701)-[:IS_BREED]->(dsp),
(c136831:Cat {id:"136831", gender:"M"}), (c136831)-[:IS_BREED]->(srl),
(c136832:Cat {id:"136832", gender:"F"}), (c136832)-[:IS_BREED]->(srs),
(c137139:Cat {id:"137139", gender:"M"}), (c137139)-[:IS_BREED]->(srs),
(c137214:Cat {id:"137214", gender:"F"}), (c137214)-[:IS_BREED]->(acl),
(c137260:Cat {id:"137260", gender:"M"}), (c137260)-[:IS_BREED]->(srs),
(c137416:Cat {id:"137416", gender:"M"}), (c137416)-[:IS_BREED]->(ams),
(c137417:Cat {id:"137417", gender:"F"}), (c137417)-[:IS_BREED]->(ams),
(c137481:Cat {id:"137481", gender:"F"}), (c137481)-[:IS_BREED]->(sfs),
(c137789:Cat {id:"137789", gender:"F"}), (c137789)-[:IS_BREED]->(sno),
(c137854:Cat {id:"137854", gender:"F"}), (c137854)-[:IS_BREED]->(srl),
(c137887:Cat {id:"137887", gender:"F"}), (c137887)-[:IS_BREED]->(jbt),
(c137888:Cat {id:"137888", gender:"F"}), (c137888)-[:IS_BREED]->(jbt),
(c137889:Cat {id:"137889", gender:"F"}), (c137889)-[:IS_BREED]->(jbt),
(c137890:Cat {id:"137890", gender:"F"}), (c137890)-[:IS_BREED]->(jbt),
(c137891:Cat {id:"137891", gender:"F"}), (c137891)-[:IS_BREED]->(jbt),
(c137892:Cat {id:"137892", gender:"F"}), (c137892)-[:IS_BREED]->(jbt),
(c137893:Cat {id:"137893", gender:"M"}), (c137893)-[:IS_BREED]->(jbt),
(c137894:Cat {id:"137894", gender:"M"}), (c137894)-[:IS_BREED]->(jbt),
(c137895:Cat {id:"137895", gender:"M"}), (c137895)-[:IS_BREED]->(jbt),
(c137896:Cat {id:"137896", gender:"M"}), (c137896)-[:IS_BREED]->(jbt),
(c137897:Cat {id:"137897", gender:"F"}), (c137897)-[:IS_BREED]->(jbt),
(c137898:Cat {id:"137898", gender:"M"}), (c137898)-[:IS_BREED]->(jbt),
(c137899:Cat {id:"137899", gender:"F"}), (c137899)-[:IS_BREED]->(jbt),
(c137900:Cat {id:"137900", gender:"F"}), (c137900)-[:IS_BREED]->(jbt),
(c137901:Cat {id:"137901", gender:"M"}), (c137901)-[:IS_BREED]->(jbt),
(c137902:Cat {id:"137902", gender:"M"}), (c137902)-[:IS_BREED]->(jbt),
(c137903:Cat {id:"137903", gender:"F"}), (c137903)-[:IS_BREED]->(jbt),
(c137904:Cat {id:"137904", gender:"M"}), (c137904)-[:IS_BREED]->(jbt),
(c137905:Cat {id:"137905", gender:"F"}), (c137905)-[:IS_BREED]->(jbt),
(c137906:Cat {id:"137906", gender:"F"}), (c137906)-[:IS_BREED]->(jbt),
(c137907:Cat {id:"137907", gender:"F"}), (c137907)-[:IS_BREED]->(jbt),
(c137908:Cat {id:"137908", gender:"F"}), (c137908)-[:IS_BREED]->(jbt),
(c138931:Cat {id:"138931", gender:"F"}), (c138931)-[:IS_BREED]->(jbt),
(c139154:Cat {id:"139154", gender:"F"}), (c139154)-[:IS_BREED]->(sfs),
(c139207:Cat {id:"139207", gender:"F"}), (c139207)-[:IS_BREED]->(jbt),
(c139208:Cat {id:"139208", gender:"M"}), (c139208)-[:IS_BREED]->(jbt),
(c139209:Cat {id:"139209", gender:"F"}), (c139209)-[:IS_BREED]->(jbt),
(c140040:Cat {id:"140040", gender:"F"}), (c140040)-[:IS_BREED]->(srl),
(c140094:Cat {id:"140094", gender:"F"}), (c140094)-[:IS_BREED]->(dsp),
(c140496:Cat {id:"140496", gender:"M"}), (c140496)-[:IS_BREED]->(kbs),
(c140667:Cat {id:"140667", gender:"F"}), (c140667)-[:IS_BREED]->(srl),
(c140687:Cat {id:"140687", gender:"M"}), (c140687)-[:IS_BREED]->(jbt),
(c140688:Cat {id:"140688", gender:"F"}), (c140688)-[:IS_BREED]->(jbt),
(c140747:Cat {id:"140747", gender:"M"}), (c140747)-[:IS_BREED]->(jbt),
(c140826:Cat {id:"140826", gender:"M"}), (c140826)-[:IS_BREED]->(jbt),
(c140827:Cat {id:"140827", gender:"M"}), (c140827)-[:IS_BREED]->(jbt),
(c140828:Cat {id:"140828", gender:"F"}), (c140828)-[:IS_BREED]->(jbt),
(c140829:Cat {id:"140829", gender:"M"}), (c140829)-[:IS_BREED]->(jbt),
(c140831:Cat {id:"140831", gender:"M"}), (c140831)-[:IS_BREED]->(jbt),
(c140832:Cat {id:"140832", gender:"F"}), (c140832)-[:IS_BREED]->(jbt),
(c140833:Cat {id:"140833", gender:"F"}), (c140833)-[:IS_BREED]->(jbt),
(c140835:Cat {id:"140835", gender:"F"}), (c140835)-[:IS_BREED]->(srs),
(c140836:Cat {id:"140836", gender:"M"}), (c140836)-[:IS_BREED]->(jbt),
(c141979:Cat {id:"141979", gender:"F"}), (c141979)-[:IS_BREED]->(kbs),
(c142288:Cat {id:"142288", gender:"M"}), (c142288)-[:IS_BREED]->(srl),
(c142289:Cat {id:"142289", gender:"M"}), (c142289)-[:IS_BREED]->(srs),
(c142290:Cat {id:"142290", gender:"F"}), (c142290)-[:IS_BREED]->(srs),
(c142292:Cat {id:"142292", gender:"F"}), (c142292)-[:IS_BREED]->(srs),
(c142294:Cat {id:"142294", gender:"M"}), (c142294)-[:IS_BREED]->(srl),
(c142766:Cat {id:"142766", gender:"M"}), (c142766)-[:IS_BREED]->(kbs),
(c142826:Cat {id:"142826", gender:"M"}), (c142826)-[:IS_BREED]->(dsp),
(c143277:Cat {id:"143277", gender:"M"}), (c143277)-[:IS_BREED]->(srl),
(c143284:Cat {id:"143284", gender:"F"}), (c143284)-[:IS_BREED]->(kbs),
(c143285:Cat {id:"143285", gender:"F"}), (c143285)-[:IS_BREED]->(dsp),
(c143286:Cat {id:"143286", gender:"F"}), (c143286)-[:IS_BREED]->(dsp),
(c143399:Cat {id:"143399", gender:"F"}), (c143399)-[:IS_BREED]->(dsp),
(c143440:Cat {id:"143440", gender:"F"}), (c143440)-[:IS_BREED]->(ams),
(c143441:Cat {id:"143441", gender:"F"}), (c143441)-[:IS_BREED]->(ams),
(c143497:Cat {id:"143497", gender:"F"}), (c143497)-[:IS_BREED]->(jbt),
(c144473:Cat {id:"144473", gender:"F"}), (c144473)-[:IS_BREED]->(dsp),
(c144554:Cat {id:"144554", gender:"M"}), (c144554)-[:IS_BREED]->(sfs),
(c144681:Cat {id:"144681", gender:"M"}), (c144681)-[:IS_BREED]->(dsp),
(c145017:Cat {id:"145017", gender:"F"}), (c145017)-[:IS_BREED]->(srl),
(c145018:Cat {id:"145018", gender:"F"}), (c145018)-[:IS_BREED]->(srl),
(c145019:Cat {id:"145019", gender:"M"}), (c145019)-[:IS_BREED]->(srl),
(c145020:Cat {id:"145020", gender:"F"}), (c145020)-[:IS_BREED]->(srl),
(c145231:Cat {id:"145231", gender:"F"}), (c145231)-[:IS_BREED]->(kbs),
(c145234:Cat {id:"145234", gender:"F"}), (c145234)-[:IS_BREED]->(kbs),
(c145235:Cat {id:"145235", gender:"M"}), (c145235)-[:IS_BREED]->(kbs),
(c145237:Cat {id:"145237", gender:"M"}), (c145237)-[:IS_BREED]->(kbs),
(c145238:Cat {id:"145238", gender:"F"}), (c145238)-[:IS_BREED]->(kbs),
(c145243:Cat {id:"145243", gender:"M"}), (c145243)-[:IS_BREED]->(kbs),
(c147615:Cat {id:"147615", gender:"M"}), (c147615)-[:IS_BREED]->(sno),
(c147644:Cat {id:"147644", gender:"F"}), (c147644)-[:IS_BREED]->(kbs),
(c147843:Cat {id:"147843", gender:"F"}), (c147843)-[:IS_BREED]->(acl),
(c147968:Cat {id:"147968", gender:"F"}), (c147968)-[:IS_BREED]->(acl),
(c148486:Cat {id:"148486", gender:"M"}), (c148486)-[:IS_BREED]->(jbt),
(c148487:Cat {id:"148487", gender:"M"}), (c148487)-[:IS_BREED]->(jbt),
(c148488:Cat {id:"148488", gender:"M"}), (c148488)-[:IS_BREED]->(jbt),
(c148489:Cat {id:"148489", gender:"F"}), (c148489)-[:IS_BREED]->(jbt),
(c148979:Cat {id:"148979", gender:"M"}), (c148979)-[:IS_BREED]->(jbt),
(c149286:Cat {id:"149286", gender:"M"}), (c149286)-[:IS_BREED]->(cym),
(c149961:Cat {id:"149961", gender:"F"}), (c149961)-[:IS_BREED]->(cym),
(c150387:Cat {id:"150387", gender:"M"}), (c150387)-[:IS_BREED]->(kbs),
(c150738:Cat {id:"150738", gender:"M"}), (c150738)-[:IS_BREED]->(jbt),
(c151123:Cat {id:"151123", gender:"F"}), (c151123)-[:IS_BREED]->(kbs),
(c151225:Cat {id:"151225", gender:"F"}), (c151225)-[:IS_BREED]->(sfs),
(c151226:Cat {id:"151226", gender:"F"}), (c151226)-[:IS_BREED]->(sfs),
(c151344:Cat {id:"151344", gender:"M"}), (c151344)-[:IS_BREED]->(cym),
(c151348:Cat {id:"151348", gender:"F"}), (c151348)-[:IS_BREED]->(cym),
(c151442:Cat {id:"151442", gender:"F"}), (c151442)-[:IS_BREED]->(ams),
(c153165:Cat {id:"153165", gender:"F"}), (c153165)-[:IS_BREED]->(acl),
(c153399:Cat {id:"153399", gender:"M"}), (c153399)-[:IS_BREED]->(srs),
(c153400:Cat {id:"153400", gender:"F"}), (c153400)-[:IS_BREED]->(srl),
(c153735:Cat {id:"153735", gender:"F"}), (c153735)-[:IS_BREED]->(grx),
(c153736:Cat {id:"153736", gender:"M"}), (c153736)-[:IS_BREED]->(grx),
(c153737:Cat {id:"153737", gender:"M"}), (c153737)-[:IS_BREED]->(grx),
(c154457:Cat {id:"154457", gender:"M"}), (c154457)-[:IS_BREED]->(nem),
(c154544:Cat {id:"154544", gender:"F"}), (c154544)-[:IS_BREED]->(kbs),
(c154831:Cat {id:"154831", gender:"M"}), (c154831)-[:IS_BREED]->(ass),
(c154934:Cat {id:"154934", gender:"M"}), (c154934)-[:IS_BREED]->(kbs),
(c155568:Cat {id:"155568", gender:"M"}), (c155568)-[:IS_BREED]->(jbt),
(c155570:Cat {id:"155570", gender:"F"}), (c155570)-[:IS_BREED]->(jbt),
(c155571:Cat {id:"155571", gender:"M"}), (c155571)-[:IS_BREED]->(jbt),
(c155572:Cat {id:"155572", gender:"M"}), (c155572)-[:IS_BREED]->(jbt),
(c155573:Cat {id:"155573", gender:"F"}), (c155573)-[:IS_BREED]->(jbt),
(c155744:Cat {id:"155744", gender:"F"}), (c155744)-[:IS_BREED]->(srl),
(c156056:Cat {id:"156056", gender:"M"}), (c156056)-[:IS_BREED]->(srs),
(c156236:Cat {id:"156236", gender:"M"}), (c156236)-[:IS_BREED]->(kbs),
(c156366:Cat {id:"156366", gender:"M"}), (c156366)-[:IS_BREED]->(dsp),
(c156399:Cat {id:"156399", gender:"F"}), (c156399)-[:IS_BREED]->(acl),
(c156944:Cat {id:"156944", gender:"F"}), (c156944)-[:IS_BREED]->(dsp),
(c157050:Cat {id:"157050", gender:"F"}), (c157050)-[:IS_BREED]->(cym),
(c157197:Cat {id:"157197", gender:"F"}), (c157197)-[:IS_BREED]->(srs),
(c157198:Cat {id:"157198", gender:"M"}), (c157198)-[:IS_BREED]->(srs),
(c157199:Cat {id:"157199", gender:"M"}), (c157199)-[:IS_BREED]->(srl),
(c157557:Cat {id:"157557", gender:"M"}), (c157557)-[:IS_BREED]->(cym),
(c157564:Cat {id:"157564", gender:"F"}), (c157564)-[:IS_BREED]->(srl),
(c157880:Cat {id:"157880", gender:"M"}), (c157880)-[:IS_BREED]->(acl),
(c158279:Cat {id:"158279", gender:"M"}), (c158279)-[:IS_BREED]->(srs),
(c158333:Cat {id:"158333", gender:"F"}), (c158333)-[:IS_BREED]->(dsp),
(c158361:Cat {id:"158361", gender:"M"}), (c158361)-[:IS_BREED]->(acl),
(c158362:Cat {id:"158362", gender:"M"}), (c158362)-[:IS_BREED]->(acl),
(c158486:Cat {id:"158486", gender:"F"}), (c158486)-[:IS_BREED]->(kbs),
(c159231:Cat {id:"159231", gender:"M"}), (c159231)-[:IS_BREED]->(kbs),
(c159389:Cat {id:"159389", gender:"M"}), (c159389)-[:IS_BREED]->(srl),
(c159390:Cat {id:"159390", gender:"M"}), (c159390)-[:IS_BREED]->(srl),
(c159391:Cat {id:"159391", gender:"M"}), (c159391)-[:IS_BREED]->(srs),
(c159392:Cat {id:"159392", gender:"F"}), (c159392)-[:IS_BREED]->(srl),
(c159393:Cat {id:"159393", gender:"F"}), (c159393)-[:IS_BREED]->(srs),
(c159394:Cat {id:"159394", gender:"M"}), (c159394)-[:IS_BREED]->(srl),
(c159395:Cat {id:"159395", gender:"F"}), (c159395)-[:IS_BREED]->(srl),
(c159398:Cat {id:"159398", gender:"F"}), (c159398)-[:IS_BREED]->(srl),
(c159399:Cat {id:"159399", gender:"M"}), (c159399)-[:IS_BREED]->(srl),
(c159400:Cat {id:"159400", gender:"F"}), (c159400)-[:IS_BREED]->(srl),
(c159401:Cat {id:"159401", gender:"M"}), (c159401)-[:IS_BREED]->(srs),
(c160132:Cat {id:"160132", gender:"M"}), (c160132)-[:IS_BREED]->(srl),
(c160595:Cat {id:"160595", gender:"M"}), (c160595)-[:IS_BREED]->(sfs),
(c160599:Cat {id:"160599", gender:"M"}), (c160599)-[:IS_BREED]->(sfs),
(c160622:Cat {id:"160622", gender:"M"}), (c160622)-[:IS_BREED]->(sfs),
(c160799:Cat {id:"160799", gender:"F"}), (c160799)-[:IS_BREED]->(dsp),
(c161000:Cat {id:"161000", gender:"M"}), (c161000)-[:IS_BREED]->(dsp),
(c161502:Cat {id:"161502", gender:"M"}), (c161502)-[:IS_BREED]->(acl),
(c161604:Cat {id:"161604", gender:"M"}), (c161604)-[:IS_BREED]->(srs),
(c162107:Cat {id:"162107", gender:"F"}), (c162107)-[:IS_BREED]->(srs),
(c162125:Cat {id:"162125", gender:"F"}), (c162125)-[:IS_BREED]->(acl),
(c162155:Cat {id:"162155", gender:"F"}), (c162155)-[:IS_BREED]->(kbs),
(c162196:Cat {id:"162196", gender:"F"}), (c162196)-[:IS_BREED]->(srl),
(c162197:Cat {id:"162197", gender:"M"}), (c162197)-[:IS_BREED]->(srs),
(c162397:Cat {id:"162397", gender:"F"}), (c162397)-[:IS_BREED]->(sfs),
(c162784:Cat {id:"162784", gender:"M"}), (c162784)-[:IS_BREED]->(acl),
(c162832:Cat {id:"162832", gender:"M"}), (c162832)-[:IS_BREED]->(dsp),
(c162912:Cat {id:"162912", gender:"F"}), (c162912)-[:IS_BREED]->(tha),
(c163812:Cat {id:"163812", gender:"M"}), (c163812)-[:IS_BREED]->(grx),
(c164213:Cat {id:"164213", gender:"F"}), (c164213)-[:IS_BREED]->(grx),
(c164225:Cat {id:"164225", gender:"M"}), (c164225)-[:IS_BREED]->(srl),
(c164643:Cat {id:"164643", gender:"F"}), (c164643)-[:IS_BREED]->(ams),
(c165496:Cat {id:"165496", gender:"F"}), (c165496)-[:IS_BREED]->(srl),
(c165553:Cat {id:"165553", gender:"F"}), (c165553)-[:IS_BREED]->(sfs),
(c166187:Cat {id:"166187", gender:"F"}), (c166187)-[:IS_BREED]->(jbt),
(c166188:Cat {id:"166188", gender:"M"}), (c166188)-[:IS_BREED]->(jbt),
(c166189:Cat {id:"166189", gender:"M"}), (c166189)-[:IS_BREED]->(jbt),
(c166190:Cat {id:"166190", gender:"F"}), (c166190)-[:IS_BREED]->(jbt),
(c166240:Cat {id:"166240", gender:"F"}), (c166240)-[:IS_BREED]->(kbs),
(c166324:Cat {id:"166324", gender:"M"}), (c166324)-[:IS_BREED]->(cym),
(c166325:Cat {id:"166325", gender:"F"}), (c166325)-[:IS_BREED]->(sno),
(c166328:Cat {id:"166328", gender:"M"}), (c166328)-[:IS_BREED]->(cym),
(c166821:Cat {id:"166821", gender:"M"}), (c166821)-[:IS_BREED]->(srs),
(c166822:Cat {id:"166822", gender:"M"}), (c166822)-[:IS_BREED]->(srs),
(c167115:Cat {id:"167115", gender:"F"}), (c167115)-[:IS_BREED]->(kbs),
(c167116:Cat {id:"167116", gender:"F"}), (c167116)-[:IS_BREED]->(kbs),
(c167137:Cat {id:"167137", gender:"F"}), (c167137)-[:IS_BREED]->(acl),
(c167138:Cat {id:"167138", gender:"M"}), (c167138)-[:IS_BREED]->(acl),
(c167139:Cat {id:"167139", gender:"M"}), (c167139)-[:IS_BREED]->(acl),
(c167140:Cat {id:"167140", gender:"F"}), (c167140)-[:IS_BREED]->(acl),
(c167141:Cat {id:"167141", gender:"F"}), (c167141)-[:IS_BREED]->(acl),
(c167652:Cat {id:"167652", gender:"M"}), (c167652)-[:IS_BREED]->(sfs),
(c167870:Cat {id:"167870", gender:"M"}), (c167870)-[:IS_BREED]->(acl),
(c169984:Cat {id:"169984", gender:"M"}), (c169984)-[:IS_BREED]->(srs),
(c170282:Cat {id:"170282", gender:"M"}), (c170282)-[:IS_BREED]->(srs),
(c170852:Cat {id:"170852", gender:"M"}), (c170852)-[:IS_BREED]->(srl),
(c172435:Cat {id:"172435", gender:"F"}), (c172435)-[:IS_BREED]->(srs),
(c172450:Cat {id:"172450", gender:"M"}), (c172450)-[:IS_BREED]->(srs),
(c174214:Cat {id:"174214", gender:"M"}), (c174214)-[:IS_BREED]->(grx),
(c174359:Cat {id:"174359", gender:"F"}), (c174359)-[:IS_BREED]->(acl),
(c174541:Cat {id:"174541", gender:"M"}), (c174541)-[:IS_BREED]->(tha),
(c174546:Cat {id:"174546", gender:"F"}), (c174546)-[:IS_BREED]->(acs),
(c174547:Cat {id:"174547", gender:"F"}), (c174547)-[:IS_BREED]->(acl),
(c174790:Cat {id:"174790", gender:"M"}), (c174790)-[:IS_BREED]->(dsp),
(c175122:Cat {id:"175122", gender:"F"}), (c175122)-[:IS_BREED]->(sno),
(c175206:Cat {id:"175206", gender:"M"}), (c175206)-[:IS_BREED]->(acl),
(c175207:Cat {id:"175207", gender:"F"}), (c175207)-[:IS_BREED]->(acl),
(c175208:Cat {id:"175208", gender:"M"}), (c175208)-[:IS_BREED]->(acl),
(c175283:Cat {id:"175283", gender:"M"}), (c175283)-[:IS_BREED]->(ams),
(c175474:Cat {id:"175474", gender:"F"}), (c175474)-[:IS_BREED]->(grx),
(c175491:Cat {id:"175491", gender:"F"}), (c175491)-[:IS_BREED]->(jbt),
(c175624:Cat {id:"175624", gender:"F"}), (c175624)-[:IS_BREED]->(ams),
(c176015:Cat {id:"176015", gender:"F"}), (c176015)-[:IS_BREED]->(srs),
(c176106:Cat {id:"176106", gender:"F"}), (c176106)-[:IS_BREED]->(srs),
(c176170:Cat {id:"176170", gender:"M"}), (c176170)-[:IS_BREED]->(jbt),
(c176317:Cat {id:"176317", gender:"F"}), (c176317)-[:IS_BREED]->(jbt),
(c176630:Cat {id:"176630", gender:"F"}), (c176630)-[:IS_BREED]->(dsp),
(c177182:Cat {id:"177182", gender:"F"}), (c177182)-[:IS_BREED]->(kbs),
(c177276:Cat {id:"177276", gender:"M"}), (c177276)-[:IS_BREED]->(kbs),
(c179185:Cat {id:"179185", gender:"F"}), (c179185)-[:IS_BREED]->(jbt),
(c179215:Cat {id:"179215", gender:"F"}), (c179215)-[:IS_BREED]->(sno),
(c179547:Cat {id:"179547", gender:"F"}), (c179547)-[:IS_BREED]->(ams),
(c179650:Cat {id:"179650", gender:"F"}), (c179650)-[:IS_BREED]->(acl),
(c179651:Cat {id:"179651", gender:"M"}), (c179651)-[:IS_BREED]->(acl),
(c179652:Cat {id:"179652", gender:"F"}), (c179652)-[:IS_BREED]->(acl),
(c179738:Cat {id:"179738", gender:"F"}), (c179738)-[:IS_BREED]->(kbs),
(c179739:Cat {id:"179739", gender:"F"}), (c179739)-[:IS_BREED]->(kbs),
(c180051:Cat {id:"180051", gender:"F"}), (c180051)-[:IS_BREED]->(acl),
(c180530:Cat {id:"180530", gender:"M"}), (c180530)-[:IS_BREED]->(srl),
(c182174:Cat {id:"182174", gender:"M"}), (c182174)-[:IS_BREED]->(dsp),
(c182493:Cat {id:"182493", gender:"F"}), (c182493)-[:IS_BREED]->(ams),
(c182494:Cat {id:"182494", gender:"F"}), (c182494)-[:IS_BREED]->(ams),
(c182495:Cat {id:"182495", gender:"M"}), (c182495)-[:IS_BREED]->(ams),
(c182942:Cat {id:"182942", gender:"M"}), (c182942)-[:IS_BREED]->(jbt),
(c182945:Cat {id:"182945", gender:"F"}), (c182945)-[:IS_BREED]->(jbt),
(c182950:Cat {id:"182950", gender:"F"}), (c182950)-[:IS_BREED]->(jbt),
(c182951:Cat {id:"182951", gender:"F"}), (c182951)-[:IS_BREED]->(jbt),
(c182952:Cat {id:"182952", gender:"F"}), (c182952)-[:IS_BREED]->(jbt),
(c182961:Cat {id:"182961", gender:"M"}), (c182961)-[:IS_BREED]->(jbt),
(c182962:Cat {id:"182962", gender:"M"}), (c182962)-[:IS_BREED]->(jbt),
(c182963:Cat {id:"182963", gender:"M"}), (c182963)-[:IS_BREED]->(jbt),
(c182964:Cat {id:"182964", gender:"F"}), (c182964)-[:IS_BREED]->(jbt),
(c182965:Cat {id:"182965", gender:"F"}), (c182965)-[:IS_BREED]->(jbt),
(c182966:Cat {id:"182966", gender:"F"}), (c182966)-[:IS_BREED]->(jbt),
(c182967:Cat {id:"182967", gender:"M"}), (c182967)-[:IS_BREED]->(jbt),
(c182968:Cat {id:"182968", gender:"F"}), (c182968)-[:IS_BREED]->(jbt),
(c182970:Cat {id:"182970", gender:"F"}), (c182970)-[:IS_BREED]->(jbt),
(c182971:Cat {id:"182971", gender:"F"}), (c182971)-[:IS_BREED]->(jbt),
(c182972:Cat {id:"182972", gender:"F"}), (c182972)-[:IS_BREED]->(jbt),
(c183058:Cat {id:"183058", gender:"M"}), (c183058)-[:IS_BREED]->(srs),
(c183380:Cat {id:"183380", gender:"F"}), (c183380)-[:IS_BREED]->(jbt),
(c183381:Cat {id:"183381", gender:"M"}), (c183381)-[:IS_BREED]->(jbt),
(c183897:Cat {id:"183897", gender:"F"}), (c183897)-[:IS_BREED]->(jbt),
(c184041:Cat {id:"184041", gender:"F"}), (c184041)-[:IS_BREED]->(tha),
(c184992:Cat {id:"184992", gender:"M"}), (c184992)-[:IS_BREED]->(srs),
(c185631:Cat {id:"185631", gender:"M"}), (c185631)-[:IS_BREED]->(sfs),
(c185632:Cat {id:"185632", gender:"F"}), (c185632)-[:IS_BREED]->(sfs),
(c185633:Cat {id:"185633", gender:"F"}), (c185633)-[:IS_BREED]->(sfs),
(c185741:Cat {id:"185741", gender:"M"}), (c185741)-[:IS_BREED]->(jbt),
(c185828:Cat {id:"185828", gender:"M"}), (c185828)-[:IS_BREED]->(sfs),
(c185829:Cat {id:"185829", gender:"F"}), (c185829)-[:IS_BREED]->(sfs),
(c185979:Cat {id:"185979", gender:"F"}), (c185979)-[:IS_BREED]->(acl),
(c186015:Cat {id:"186015", gender:"M"}), (c186015)-[:IS_BREED]->(cym),
(c186017:Cat {id:"186017", gender:"F"}), (c186017)-[:IS_BREED]->(cym),
(c186021:Cat {id:"186021", gender:"F"}), (c186021)-[:IS_BREED]->(cym),
(c186022:Cat {id:"186022", gender:"F"}), (c186022)-[:IS_BREED]->(cym),
(c186025:Cat {id:"186025", gender:"M"}), (c186025)-[:IS_BREED]->(cym),
(c186453:Cat {id:"186453", gender:"M"}), (c186453)-[:IS_BREED]->(srs),
(c186485:Cat {id:"186485", gender:"M"}), (c186485)-[:IS_BREED]->(sno),
(c187178:Cat {id:"187178", gender:"F"}), (c187178)-[:IS_BREED]->(ams),
(c187368:Cat {id:"187368", gender:"M"}), (c187368)-[:IS_BREED]->(dsp),
(c187480:Cat {id:"187480", gender:"M"}), (c187480)-[:IS_BREED]->(dsp),
(c187601:Cat {id:"187601", gender:"F"}), (c187601)-[:IS_BREED]->(jbt),
(c187602:Cat {id:"187602", gender:"F"}), (c187602)-[:IS_BREED]->(jbt),
(c187705:Cat {id:"187705", gender:"F"}), (c187705)-[:IS_BREED]->(kbs),
(c187816:Cat {id:"187816", gender:"F"}), (c187816)-[:IS_BREED]->(srl),
(c188014:Cat {id:"188014", gender:"F"}), (c188014)-[:IS_BREED]->(dsp),
(c188024:Cat {id:"188024", gender:"F"}), (c188024)-[:IS_BREED]->(kbs),
(c189055:Cat {id:"189055", gender:"M"}), (c189055)-[:IS_BREED]->(dsp),
(c189059:Cat {id:"189059", gender:"M"}), (c189059)-[:IS_BREED]->(kbs),
(c189073:Cat {id:"189073", gender:"F"}), (c189073)-[:IS_BREED]->(dsp),
(c189080:Cat {id:"189080", gender:"M"}), (c189080)-[:IS_BREED]->(kbs),
(c189278:Cat {id:"189278", gender:"M"}), (c189278)-[:IS_BREED]->(dsp),
(c189368:Cat {id:"189368", gender:"M"}), (c189368)-[:IS_BREED]->(dsp),
(c189967:Cat {id:"189967", gender:"M"}), (c189967)-[:IS_BREED]->(kbs),
(c190160:Cat {id:"190160", gender:"M"}), (c190160)-[:IS_BREED]->(dsp),
(c190174:Cat {id:"190174", gender:"M"}), (c190174)-[:IS_BREED]->(acl),
(c190735:Cat {id:"190735", gender:"M"}), (c190735)-[:IS_BREED]->(srl),
(c190736:Cat {id:"190736", gender:"F"}), (c190736)-[:IS_BREED]->(srl),
(c190737:Cat {id:"190737", gender:"F"}), (c190737)-[:IS_BREED]->(srl),
(c192244:Cat {id:"192244", gender:"M"}), (c192244)-[:IS_BREED]->(tha),
(c192385:Cat {id:"192385", gender:"F"}), (c192385)-[:IS_BREED]->(srs),
(c192386:Cat {id:"192386", gender:"M"}), (c192386)-[:IS_BREED]->(srs),
(c192387:Cat {id:"192387", gender:"F"}), (c192387)-[:IS_BREED]->(srs),
(c192388:Cat {id:"192388", gender:"M"}), (c192388)-[:IS_BREED]->(srs),
(c192427:Cat {id:"192427", gender:"F"}), (c192427)-[:IS_BREED]->(cym),
(c192434:Cat {id:"192434", gender:"F"}), (c192434)-[:IS_BREED]->(grx),
(c192575:Cat {id:"192575", gender:"F"}), (c192575)-[:IS_BREED]->(tha),
(c192707:Cat {id:"192707", gender:"M"}), (c192707)-[:IS_BREED]->(srs),
(c193159:Cat {id:"193159", gender:"M"}), (c193159)-[:IS_BREED]->(srl),
(c193161:Cat {id:"193161", gender:"F"}), (c193161)-[:IS_BREED]->(sno),
(c193256:Cat {id:"193256", gender:"F"}), (c193256)-[:IS_BREED]->(kbs),
(c193275:Cat {id:"193275", gender:"F"}), (c193275)-[:IS_BREED]->(jbt),
(c193276:Cat {id:"193276", gender:"F"}), (c193276)-[:IS_BREED]->(jbt),
(c193432:Cat {id:"193432", gender:"F"}), (c193432)-[:IS_BREED]->(nem),
(c193603:Cat {id:"193603", gender:"M"}), (c193603)-[:IS_BREED]->(srs),
(c193666:Cat {id:"193666", gender:"F"}), (c193666)-[:IS_BREED]->(dsp),
(c193790:Cat {id:"193790", gender:"M"}), (c193790)-[:IS_BREED]->(srs),
(c193812:Cat {id:"193812", gender:"F"}), (c193812)-[:IS_BREED]->(kbs),
(c193844:Cat {id:"193844", gender:"F"}), (c193844)-[:IS_BREED]->(srl),
(c193982:Cat {id:"193982", gender:"F"}), (c193982)-[:IS_BREED]->(kbs),
(c194001:Cat {id:"194001", gender:"F"}), (c194001)-[:IS_BREED]->(acl),
(c194161:Cat {id:"194161", gender:"M"}), (c194161)-[:IS_BREED]->(nem),
(c194266:Cat {id:"194266", gender:"M"}), (c194266)-[:IS_BREED]->(sfs),
(c194267:Cat {id:"194267", gender:"M"}), (c194267)-[:IS_BREED]->(sfs),
(c1754)-[:SIRE]->(c1752),
(c2040)-[:SIRE]->(c20978),
(c2075)-[:SIRE]->(c20978),
(c2232)-[:SIRE]->(c140496),
(c2244)-[:SIRE]->(c161000),
(c3043)-[:SIRE]->(c122733),
(c3047)-[:SIRE]->(c3051),
(c3050)-[:SIRE]->(c148979),
(c3998)-[:SIRE]->(c190174),
(c4855)-[:SIRE]->(c130767),
(c5324)-[:SIRE]->(c190160),
(c5948)-[:SIRE]->(c120657),
(c5954)-[:SIRE]->(c24467),
(c6456)-[:SIRE]->(c182174),
(c6987)-[:SIRE]->(c189967),
(c7178)-[:SIRE]->(c7560),
(c7609)-[:SIRE]->(c15422),
(c8281)-[:SIRE]->(c157880),
(c9877)-[:SIRE]->(c9884),
(c9879)-[:SIRE]->(c19908),
(c9880)-[:SIRE]->(c9884),
(c9881)-[:SIRE]->(c9897),
(c9883)-[:SIRE]->(c9897),
(c9884)-[:SIRE]->(c140687),
(c9885)-[:SIRE]->(c9884),
(c9886)-[:SIRE]->(c9896),
(c9887)-[:SIRE]->(c9897),
(c9888)-[:SIRE]->(c140836),
(c9889)-[:SIRE]->(c9897),
(c9892)-[:SIRE]->(c9897),
(c9894)-[:SIRE]->(c9884),
(c9896)-[:SIRE]->(c9897),
(c9897)-[:SIRE]->(c128179),
(c9902)-[:SIRE]->(c9897),
(c9903)-[:SIRE]->(c166188),
(c9904)-[:SIRE]->(c9897),
(c10081)-[:SIRE]->(c14701),
(c10125)-[:SIRE]->(c162832),
(c10645)-[:SIRE]->(c17382),
(c11093)-[:SIRE]->(c9877),
(c11094)-[:SIRE]->(c9877),
(c11095)-[:SIRE]->(c148487),
(c11347)-[:SIRE]->(c159391),
(c11348)-[:SIRE]->(c159391),
(c11349)-[:SIRE]->(c159391),
(c11350)-[:SIRE]->(c11348),
(c11642)-[:SIRE]->(c120657),
(c11739)-[:SIRE]->(c120072),
(c11742)-[:SIRE]->(c22328),
(c11761)-[:SIRE]->(c118449),
(c12357)-[:SIRE]->(c2483),
(c12359)-[:SIRE]->(c20977),
(c12931)-[:SIRE]->(c144844),
(c14202)-[:SIRE]->(c184660),
(c14258)-[:SIRE]->(c6456),
(c14701)-[:SIRE]->(c11035),
(c15218)-[:SIRE]->(c15213),
(c15219)-[:SIRE]->(c15213),
(c15344)-[:SIRE]->(c21075),
(c15351)-[:SIRE]->(c151346),
(c15352)-[:SIRE]->(c15349),
(c15690)-[:SIRE]->(c125849),
(c16257)-[:SIRE]->(c16256),
(c16345)-[:SIRE]->(c16344),
(c16412)-[:SIRE]->(c16414),
(c16413)-[:SIRE]->(c16415),
(c16414)-[:SIRE]->(c16417),
(c16415)-[:SIRE]->(c16416),
(c16416)-[:SIRE]->(c159389),
(c16417)-[:SIRE]->(c11347),
(c16418)-[:SIRE]->(c11347),
(c16419)-[:SIRE]->(c159394),
(c16420)-[:SIRE]->(c159389),
(c16579)-[:SIRE]->(c174541),
(c17443)-[:SIRE]->(c143866),
(c17550)-[:SIRE]->(c17551),
(c17551)-[:SIRE]->(c17556),
(c17556)-[:SIRE]->(c17560),
(c17558)-[:SIRE]->(c17557),
(c17564)-[:SIRE]->(c8583),
(c18085)-[:SIRE]->(c129275),
(c18355)-[:SIRE]->(c161502),
(c19002)-[:SIRE]->(c191528),
(c19004)-[:SIRE]->(c150265),
(c19011)-[:SIRE]->(c9914),
(c19909)-[:SIRE]->(c176170),
(c20045)-[:SIRE]->(c2898),
(c20971)-[:SIRE]->(c122470),
(c20978)-[:SIRE]->(c122470),
(c20979)-[:SIRE]->(c12358),
(c21943)-[:SIRE]->(c163812),
(c22322)-[:SIRE]->(c124853),
(c22323)-[:SIRE]->(c22324),
(c22324)-[:SIRE]->(c22322),
(c22325)-[:SIRE]->(c180530),
(c22326)-[:SIRE]->(c150853),
(c22329)-[:SIRE]->(c183058),
(c22330)-[:SIRE]->(c126549),
(c22349)-[:SIRE]->(c147616),
(c22544)-[:SIRE]->(c19191),
(c23046)-[:SIRE]->(c6456),
(c23842)-[:SIRE]->(c156831),
(c24283)-[:SIRE]->(c186485),
(c24467)-[:SIRE]->(c190160),
(c24657)-[:SIRE]->(c24658),
(c24942)-[:SIRE]->(c6108),
(c26366)-[:SIRE]->(c26341),
(c26368)-[:SIRE]->(c26341),
(c34120)-[:SIRE]->(c17008),
(c36422)-[:SIRE]->(c16413),
(c36425)-[:SIRE]->(c22329),
(c36429)-[:SIRE]->(c17550),
(c36430)-[:SIRE]->(c16413),
(c40105)-[:SIRE]->(c151223),
(c42864)-[:SIRE]->(c58754),
(c45761)-[:SIRE]->(c181647),
(c46514)-[:SIRE]->(c179651),
(c46515)-[:SIRE]->(c179651),
(c46516)-[:SIRE]->(c179651),
(c61667)-[:SIRE]->(c22544),
(c67954)-[:SIRE]->(c61667),
(c67959)-[:SIRE]->(c61667),
(c72061)-[:SIRE]->(c15344),
(c72065)-[:SIRE]->(c15344),
(c72068)-[:SIRE]->(c15344),
(c72069)-[:SIRE]->(c15344),
(c72071)-[:SIRE]->(c15344),
(c72943)-[:SIRE]->(c151223),
(c72945)-[:SIRE]->(c151223),
(c79793)-[:SIRE]->(c172436),
(c79797)-[:SIRE]->(c172450),
(c83171)-[:SIRE]->(c181287),
(c85535)-[:SIRE]->(c16413),
(c85629)-[:SIRE]->(c112619),
(c85716)-[:SIRE]->(c16413),
(c86755)-[:SIRE]->(c131565),
(c86836)-[:SIRE]->(c86835),
(c89026)-[:SIRE]->(c85722),
(c89078)-[:SIRE]->(c126230),
(c89138)-[:SIRE]->(c89045),
(c89141)-[:SIRE]->(c89045),
(c89147)-[:SIRE]->(c126230),
(c89148)-[:SIRE]->(c126230),
(c89151)-[:SIRE]->(c89045),
(c89157)-[:SIRE]->(c85722),
(c89172)-[:SIRE]->(c89135),
(c89180)-[:SIRE]->(c89135),
(c89189)-[:SIRE]->(c89135),
(c89199)-[:SIRE]->(c89135),
(c89205)-[:SIRE]->(c89135),
(c89211)-[:SIRE]->(c16413),
(c89214)-[:SIRE]->(c85519),
(c89215)-[:SIRE]->(c85519),
(c89217)-[:SIRE]->(c194267),
(c89219)-[:SIRE]->(c85519),
(c89222)-[:SIRE]->(c85722),
(c89227)-[:SIRE]->(c187271),
(c89228)-[:SIRE]->(c187271),
(c89229)-[:SIRE]->(c85519),
(c89239)-[:SIRE]->(c187271),
(c89252)-[:SIRE]->(c194267),
(c89254)-[:SIRE]->(c377),
(c89257)-[:SIRE]->(c176007),
(c89258)-[:SIRE]->(c187271),
(c89262)-[:SIRE]->(c187271),
(c89263)-[:SIRE]->(c187271),
(c89276)-[:SIRE]->(c136809),
(c91994)-[:SIRE]->(c189059),
(c91999)-[:SIRE]->(c189059),
(c98411)-[:SIRE]->(c133548),
(c98431)-[:SIRE]->(c5023),
(c99601)-[:SIRE]->(c16345),
(c99602)-[:SIRE]->(c16345),
(c99603)-[:SIRE]->(c16345),
(c101922)-[:SIRE]->(c153736),
(c101923)-[:SIRE]->(c153736),
(c101926)-[:SIRE]->(c153736),
(c101929)-[:SIRE]->(c153736),
(c101933)-[:SIRE]->(c153736),
(c101939)-[:SIRE]->(c153736),
(c101942)-[:SIRE]->(c153736),
(c101943)-[:SIRE]->(c153736),
(c101946)-[:SIRE]->(c153736),
(c106246)-[:SIRE]->(c190439),
(c108207)-[:SIRE]->(c11094),
(c108209)-[:SIRE]->(c137902),
(c108212)-[:SIRE]->(c137902),
(c108214)-[:SIRE]->(c137902),
(c108226)-[:SIRE]->(c137902),
(c108228)-[:SIRE]->(c11094),
(c108229)-[:SIRE]->(c11094),
(c108233)-[:SIRE]->(c137902),
(c108234)-[:SIRE]->(c137902),
(c112572)-[:SIRE]->(c186453),
(c112574)-[:SIRE]->(c186453),
(c113073)-[:SIRE]->(c192804),
(c113111)-[:SIRE]->(c157296),
(c114000)-[:SIRE]->(c122874),
(c118049)-[:SIRE]->(c193059),
(c118283)-[:SIRE]->(c11703),
(c118969)-[:SIRE]->(c9916),
(c119372)-[:SIRE]->(c189967),
(c119373)-[:SIRE]->(c8729),
(c119766)-[:SIRE]->(c144681),
(c120657)-[:SIRE]->(c7173),
(c120713)-[:SIRE]->(c189368),
(c120922)-[:SIRE]->(c154831),
(c121070)-[:SIRE]->(c121076),
(c121071)-[:SIRE]->(c121070),
(c121072)-[:SIRE]->(c121070),
(c121073)-[:SIRE]->(c121070),
(c121074)-[:SIRE]->(c121073),
(c121075)-[:SIRE]->(c121074),
(c121251)-[:SIRE]->(c14733),
(c121715)-[:SIRE]->(c123147),
(c121772)-[:SIRE]->(c174790),
(c122798)-[:SIRE]->(c179689),
(c123036)-[:SIRE]->(c123323),
(c123062)-[:SIRE]->(c123060),
(c123063)-[:SIRE]->(c123060),
(c123326)-[:SIRE]->(c130694),
(c123682)-[:SIRE]->(c14247),
(c125399)-[:SIRE]->(c131126),
(c125400)-[:SIRE]->(c194160),
(c125409)-[:SIRE]->(c16258),
(c125539)-[:SIRE]->(c139208),
(c125695)-[:SIRE]->(c121772),
(c125849)-[:SIRE]->(c125695),
(c127239)-[:SIRE]->(c2040),
(c127289)-[:SIRE]->(c193603),
(c127295)-[:SIRE]->(c132520),
(c128175)-[:SIRE]->(c150738),
(c128176)-[:SIRE]->(c128178),
(c128178)-[:SIRE]->(c150738),
(c128179)-[:SIRE]->(c128178),
(c128188)-[:SIRE]->(c174214),
(c129275)-[:SIRE]->(c133549),
(c129449)-[:SIRE]->(c122780),
(c130127)-[:SIRE]->(c9914),
(c131127)-[:SIRE]->(c151224),
(c131289)-[:SIRE]->(c178073),
(c132475)-[:SIRE]->(c14249),
(c132489)-[:SIRE]->(c2244),
(c132520)-[:SIRE]->(c177276),
(c132812)-[:SIRE]->(c122523),
(c132899)-[:SIRE]->(c122780),
(c132943)-[:SIRE]->(c156366),
(c133549)-[:SIRE]->(c186282),
(c133824)-[:SIRE]->(c119144),
(c134427)-[:SIRE]->(c193411),
(c134432)-[:SIRE]->(c23469),
(c134580)-[:SIRE]->(c132899),
(c134795)-[:SIRE]->(c156670),
(c134924)-[:SIRE]->(c16070),
(c135341)-[:SIRE]->(c7411),
(c135841)-[:SIRE]->(c189055),
(c136578)-[:SIRE]->(c14740),
(c136626)-[:SIRE]->(c185830),
(c136701)-[:SIRE]->(c15690),
(c136831)-[:SIRE]->(c127075),
(c136832)-[:SIRE]->(c127075),
(c137139)-[:SIRE]->(c176705),
(c137214)-[:SIRE]->(c20430),
(c137260)-[:SIRE]->(c192386),
(c137416)-[:SIRE]->(c175283),
(c137417)-[:SIRE]->(c175283),
(c137789)-[:SIRE]->(c7609),
(c137854)-[:SIRE]->(c143277),
(c137887)-[:SIRE]->(c16257),
(c137888)-[:SIRE]->(c183381),
(c137889)-[:SIRE]->(c16257),
(c137892)-[:SIRE]->(c183381),
(c137894)-[:SIRE]->(c137895),
(c137896)-[:SIRE]->(c183381),
(c137897)-[:SIRE]->(c137904),
(c137898)-[:SIRE]->(c137896),
(c137900)-[:SIRE]->(c183381),
(c137901)-[:SIRE]->(c140826),
(c137902)-[:SIRE]->(c137901),
(c137904)-[:SIRE]->(c137894),
(c137907)-[:SIRE]->(c19907),
(c137908)-[:SIRE]->(c9900),
(c139154)-[:SIRE]->(c185631),
(c139209)-[:SIRE]->(c1683),
(c140667)-[:SIRE]->(c193159),
(c140687)-[:SIRE]->(c155568),
(c140747)-[:SIRE]->(c140827),
(c140826)-[:SIRE]->(c140831),
(c140831)-[:SIRE]->(c19910),
(c140832)-[:SIRE]->(c140829),
(c140835)-[:SIRE]->(c137260),
(c140836)-[:SIRE]->(c3050),
(c142288)-[:SIRE]->(c142293),
(c142289)-[:SIRE]->(c142288),
(c142290)-[:SIRE]->(c184992),
(c142292)-[:SIRE]->(c161604),
(c142294)-[:SIRE]->(c184992),
(c142826)-[:SIRE]->(c162832),
(c143286)-[:SIRE]->(c189278),
(c143440)-[:SIRE]->(c135275),
(c143441)-[:SIRE]->(c135275),
(c143497)-[:SIRE]->(c9899),
(c144473)-[:SIRE]->(c15690),
(c144681)-[:SIRE]->(c23046),
(c145017)-[:SIRE]->(c145019),
(c145018)-[:SIRE]->(c192707),
(c145019)-[:SIRE]->(c16412),
(c145020)-[:SIRE]->(c22325),
(c145231)-[:SIRE]->(c3278),
(c145238)-[:SIRE]->(c145235),
(c147843)-[:SIRE]->(c171676),
(c148486)-[:SIRE]->(c148488),
(c148487)-[:SIRE]->(c148486),
(c149961)-[:SIRE]->(c19220),
(c150387)-[:SIRE]->(c159231),
(c151123)-[:SIRE]->(c154934),
(c151225)-[:SIRE]->(c185828),
(c151226)-[:SIRE]->(c131127),
(c151344)-[:SIRE]->(c157557),
(c151348)-[:SIRE]->(c15218),
(c153400)-[:SIRE]->(c153399),
(c153735)-[:SIRE]->(c5948),
(c153736)-[:SIRE]->(c153737),
(c154934)-[:SIRE]->(c11891),
(c155570)-[:SIRE]->(c155571),
(c155572)-[:SIRE]->(c125409),
(c155744)-[:SIRE]->(c23097),
(c156056)-[:SIRE]->(c177923),
(c156366)-[:SIRE]->(c174790),
(c156399)-[:SIRE]->(c23553),
(c157198)-[:SIRE]->(c157199),
(c157564)-[:SIRE]->(c142294),
(c158333)-[:SIRE]->(c6520),
(c158361)-[:SIRE]->(c161502),
(c158362)-[:SIRE]->(c148799),
(c159389)-[:SIRE]->(c157198),
(c159390)-[:SIRE]->(c159399),
(c159391)-[:SIRE]->(c162197),
(c159392)-[:SIRE]->(c159390),
(c159394)-[:SIRE]->(c159397),
(c159395)-[:SIRE]->(c157196),
(c159398)-[:SIRE]->(c157199),
(c160132)-[:SIRE]->(c160130),
(c160595)-[:SIRE]->(c160622),
(c160599)-[:SIRE]->(c131397),
(c160622)-[:SIRE]->(c160599),
(c161502)-[:SIRE]->(c23553),
(c162107)-[:SIRE]->(c166822),
(c162125)-[:SIRE]->(c140553),
(c162196)-[:SIRE]->(c162197),
(c162197)-[:SIRE]->(c157198),
(c163812)-[:SIRE]->(c121056),
(c164225)-[:SIRE]->(c139027),
(c165496)-[:SIRE]->(c142289),
(c165553)-[:SIRE]->(c144554),
(c166188)-[:SIRE]->(c9893),
(c166189)-[:SIRE]->(c9893),
(c166190)-[:SIRE]->(c137898),
(c166324)-[:SIRE]->(c166328),
(c166328)-[:SIRE]->(c21076),
(c166821)-[:SIRE]->(c136831),
(c166822)-[:SIRE]->(c166821),
(c167115)-[:SIRE]->(c149262),
(c167137)-[:SIRE]->(c162784),
(c167138)-[:SIRE]->(c167139),
(c167139)-[:SIRE]->(c162784),
(c167140)-[:SIRE]->(c167139),
(c167141)-[:SIRE]->(c175208),
(c167652)-[:SIRE]->(c167650),
(c167870)-[:SIRE]->(c137284),
(c169984)-[:SIRE]->(c171524),
(c170282)-[:SIRE]->(c137139),
(c170852)-[:SIRE]->(c169071),
(c172435)-[:SIRE]->(c123669),
(c172450)-[:SIRE]->(c167506),
(c174359)-[:SIRE]->(c10645),
(c174541)-[:SIRE]->(c192244),
(c174546)-[:SIRE]->(c175208),
(c174547)-[:SIRE]->(c175208),
(c174790)-[:SIRE]->(c2244),
(c175122)-[:SIRE]->(c2075),
(c175208)-[:SIRE]->(c175206),
(c175283)-[:SIRE]->(c182495),
(c175474)-[:SIRE]->(c174563),
(c176015)-[:SIRE]->(c8190),
(c176106)-[:SIRE]->(c136146),
(c176170)-[:SIRE]->(c126393),
(c176630)-[:SIRE]->(c6456),
(c179650)-[:SIRE]->(c158361),
(c179651)-[:SIRE]->(c167138),
(c179652)-[:SIRE]->(c167138),
(c180530)-[:SIRE]->(c132814),
(c182493)-[:SIRE]->(c17156),
(c182942)-[:SIRE]->(c9892),
(c182945)-[:SIRE]->(c9892),
(c182950)-[:SIRE]->(c9892),
(c182951)-[:SIRE]->(c9892),
(c182952)-[:SIRE]->(c9881),
(c182961)-[:SIRE]->(c9881),
(c182962)-[:SIRE]->(c9881),
(c182963)-[:SIRE]->(c9881),
(c182964)-[:SIRE]->(c9881),
(c182965)-[:SIRE]->(c9881),
(c182966)-[:SIRE]->(c9881),
(c182967)-[:SIRE]->(c9881),
(c182968)-[:SIRE]->(c9881),
(c182970)-[:SIRE]->(c9881),
(c182971)-[:SIRE]->(c9881),
(c182972)-[:SIRE]->(c9881),
(c183058)-[:SIRE]->(c156056),
(c184041)-[:SIRE]->(c16579),
(c185631)-[:SIRE]->(c185627),
(c185741)-[:SIRE]->(c137902),
(c185828)-[:SIRE]->(c136626),
(c186021)-[:SIRE]->(c186025),
(c186022)-[:SIRE]->(c186015),
(c186485)-[:SIRE]->(c122470),
(c187368)-[:SIRE]->(c120713),
(c187480)-[:SIRE]->(c15690),
(c187816)-[:SIRE]->(c193664),
(c188014)-[:SIRE]->(c6455),
(c188024)-[:SIRE]->(c189080),
(c189059)-[:SIRE]->(c157256),
(c189073)-[:SIRE]->(c142826),
(c189080)-[:SIRE]->(c143862),
(c189278)-[:SIRE]->(c3649),
(c190160)-[:SIRE]->(c135841),
(c190174)-[:SIRE]->(c6274),
(c190735)-[:SIRE]->(c23842),
(c190736)-[:SIRE]->(c190735),
(c190737)-[:SIRE]->(c23842),
(c192387)-[:SIRE]->(c192388),
(c192427)-[:SIRE]->(c166329),
(c192707)-[:SIRE]->(c184939),
(c193159)-[:SIRE]->(c24470),
(c193161)-[:SIRE]->(c24283),
(c193275)-[:SIRE]->(c155572),
(c193276)-[:SIRE]->(c155572),
(c193666)-[:SIRE]->(c6456),
(c193790)-[:SIRE]->(c132814),
(c193812)-[:SIRE]->(c120659),
(c193844)-[:SIRE]->(c119352),
(c194001)-[:SIRE]->(c157246),
(c194161)-[:SIRE]->(c154457),
(c194266)-[:SIRE]->(c160595),
(c194267)-[:SIRE]->(c171182),
(c1754)-[:DAM]->(c1753),
(c2040)-[:DAM]->(c20975),
(c2075)-[:DAM]->(c12357),
(c2232)-[:DAM]->(c179738),
(c2244)-[:DAM]->(c130510),
(c3047)-[:DAM]->(c3048),
(c3050)-[:DAM]->(c3049),
(c3998)-[:DAM]->(c176476),
(c5324)-[:DAM]->(c132489),
(c5948)-[:DAM]->(c21943),
(c5954)-[:DAM]->(c119766),
(c6456)-[:DAM]->(c126253),
(c6987)-[:DAM]->(c144474),
(c7178)-[:DAM]->(c6987),
(c7609)-[:DAM]->(c7610),
(c8281)-[:DAM]->(c9116),
(c9877)-[:DAM]->(c9903),
(c9879)-[:DAM]->(c187601),
(c9880)-[:DAM]->(c9901),
(c9881)-[:DAM]->(c19909),
(c9883)-[:DAM]->(c138931),
(c9884)-[:DAM]->(c143497),
(c9885)-[:DAM]->(c9886),
(c9886)-[:DAM]->(c9880),
(c9887)-[:DAM]->(c187602),
(c9888)-[:DAM]->(c9902),
(c9889)-[:DAM]->(c9904),
(c9892)-[:DAM]->(c166190),
(c9894)-[:DAM]->(c9903),
(c9896)-[:DAM]->(c137903),
(c9897)-[:DAM]->(c128176),
(c9902)-[:DAM]->(c9887),
(c9903)-[:DAM]->(c9883),
(c9904)-[:DAM]->(c9879),
(c10081)-[:DAM]->(c128188),
(c10645)-[:DAM]->(c21215),
(c11093)-[:DAM]->(c9885),
(c11094)-[:DAM]->(c11095),
(c11095)-[:DAM]->(c9894),
(c11347)-[:DAM]->(c159395),
(c11348)-[:DAM]->(c159395),
(c11349)-[:DAM]->(c159395),
(c11350)-[:DAM]->(c190737),
(c11642)-[:DAM]->(c21943),
(c11739)-[:DAM]->(c11742),
(c11742)-[:DAM]->(c181826),
(c11761)-[:DAM]->(c127289),
(c12357)-[:DAM]->(c2114),
(c12359)-[:DAM]->(c132072),
(c12931)-[:DAM]->(c20165),
(c14202)-[:DAM]->(c187923),
(c14258)-[:DAM]->(c156944),
(c14701)-[:DAM]->(c4011),
(c15218)-[:DAM]->(c15215),
(c15219)-[:DAM]->(c15215),
(c15344)-[:DAM]->(c15351),
(c15351)-[:DAM]->(c15350),
(c15352)-[:DAM]->(c128124),
(c15690)-[:DAM]->(c2630),
(c16257)-[:DAM]->(c5823),
(c16345)-[:DAM]->(c151348),
(c16412)-[:DAM]->(c16419),
(c16413)-[:DAM]->(c16418),
(c16414)-[:DAM]->(c16420),
(c16415)-[:DAM]->(c11350),
(c16416)-[:DAM]->(c176106),
(c16417)-[:DAM]->(c159392),
(c16418)-[:DAM]->(c159392),
(c16419)-[:DAM]->(c11349),
(c16420)-[:DAM]->(c176106),
(c16579)-[:DAM]->(c162912),
(c17443)-[:DAM]->(c143868),
(c17550)-[:DAM]->(c17564),
(c17551)-[:DAM]->(c17559),
(c17556)-[:DAM]->(c17549),
(c17558)-[:DAM]->(c17554),
(c17564)-[:DAM]->(c17558),
(c18085)-[:DAM]->(c18086),
(c18355)-[:DAM]->(c156399),
(c19002)-[:DAM]->(c19003),
(c19004)-[:DAM]->(c19002),
(c19011)-[:DAM]->(c3024),
(c19909)-[:DAM]->(c125539),
(c20045)-[:DAM]->(c4056),
(c20971)-[:DAM]->(c20972),
(c20978)-[:DAM]->(c179215),
(c20979)-[:DAM]->(c20976),
(c21943)-[:DAM]->(c19763),
(c22322)-[:DAM]->(c167137),
(c22323)-[:DAM]->(c167140),
(c22325)-[:DAM]->(c155744),
(c22326)-[:DAM]->(c132812),
(c22329)-[:DAM]->(c131289),
(c22330)-[:DAM]->(c140667),
(c22349)-[:DAM]->(c166322),
(c22544)-[:DAM]->(c167115),
(c23046)-[:DAM]->(c188014),
(c23842)-[:DAM]->(c192387),
(c24283)-[:DAM]->(c20979),
(c24467)-[:DAM]->(c132489),
(c24657)-[:DAM]->(c151442),
(c24942)-[:DAM]->(c120583),
(c26366)-[:DAM]->(c26347),
(c26368)-[:DAM]->(c26347),
(c34120)-[:DAM]->(c14796),
(c36422)-[:DAM]->(c162107),
(c36425)-[:DAM]->(c162107),
(c36429)-[:DAM]->(c36422),
(c36430)-[:DAM]->(c162107),
(c40105)-[:DAM]->(c72909),
(c42864)-[:DAM]->(c183415),
(c45761)-[:DAM]->(c38233),
(c46514)-[:DAM]->(c22323),
(c46515)-[:DAM]->(c22323),
(c46516)-[:DAM]->(c22323),
(c61667)-[:DAM]->(c136339),
(c67954)-[:DAM]->(c61665),
(c67959)-[:DAM]->(c61665),
(c72061)-[:DAM]->(c123061),
(c72065)-[:DAM]->(c123061),
(c72068)-[:DAM]->(c123061),
(c72069)-[:DAM]->(c123061),
(c72071)-[:DAM]->(c123061),
(c72943)-[:DAM]->(c85608),
(c72945)-[:DAM]->(c85608),
(c79793)-[:DAM]->(c172456),
(c79797)-[:DAM]->(c169995),
(c83171)-[:DAM]->(c171819),
(c85535)-[:DAM]->(c36425),
(c85629)-[:DAM]->(c36425),
(c85716)-[:DAM]->(c36425),
(c86755)-[:DAM]->(c131564),
(c86836)-[:DAM]->(c8588),
(c89026)-[:DAM]->(c125399),
(c89078)-[:DAM]->(c125399),
(c89138)-[:DAM]->(c125399),
(c89141)-[:DAM]->(c125399),
(c89147)-[:DAM]->(c125399),
(c89148)-[:DAM]->(c125399),
(c89151)-[:DAM]->(c125399),
(c89157)-[:DAM]->(c125399),
(c89172)-[:DAM]->(c89147),
(c89180)-[:DAM]->(c89147),
(c89189)-[:DAM]->(c89147),
(c89199)-[:DAM]->(c89147),
(c89205)-[:DAM]->(c89147),
(c89211)-[:DAM]->(c85629),
(c89214)-[:DAM]->(c89147),
(c89215)-[:DAM]->(c89147),
(c89217)-[:DAM]->(c85682),
(c89219)-[:DAM]->(c89147),
(c89222)-[:DAM]->(c125399),
(c89227)-[:DAM]->(c89138),
(c89228)-[:DAM]->(c89138),
(c89229)-[:DAM]->(c89147),
(c89239)-[:DAM]->(c89138),
(c89252)-[:DAM]->(c85682),
(c89254)-[:DAM]->(c89147),
(c89257)-[:DAM]->(c151225),
(c89258)-[:DAM]->(c89147),
(c89262)-[:DAM]->(c89147),
(c89263)-[:DAM]->(c89147),
(c89276)-[:DAM]->(c89147),
(c91994)-[:DAM]->(c156773),
(c91999)-[:DAM]->(c27270),
(c98411)-[:DAM]->(c98431),
(c98431)-[:DAM]->(c5031),
(c99601)-[:DAM]->(c123062),
(c99602)-[:DAM]->(c123062),
(c99603)-[:DAM]->(c123062),
(c101922)-[:DAM]->(c101928),
(c101923)-[:DAM]->(c101928),
(c101926)-[:DAM]->(c134580),
(c101929)-[:DAM]->(c101928),
(c101933)-[:DAM]->(c134580),
(c101939)-[:DAM]->(c134580),
(c101942)-[:DAM]->(c121108),
(c101943)-[:DAM]->(c101928),
(c101946)-[:DAM]->(c134580),
(c106246)-[:DAM]->(c19623),
(c108207)-[:DAM]->(c193276),
(c108209)-[:DAM]->(c193276),
(c108212)-[:DAM]->(c193276),
(c108214)-[:DAM]->(c11093),
(c108226)-[:DAM]->(c11093),
(c108228)-[:DAM]->(c193276),
(c108229)-[:DAM]->(c193276),
(c108233)-[:DAM]->(c193276),
(c108234)-[:DAM]->(c11093),
(c112572)-[:DAM]->(c170816),
(c112574)-[:DAM]->(c170816),
(c113073)-[:DAM]->(c37085),
(c113111)-[:DAM]->(c113073),
(c114000)-[:DAM]->(c113989),
(c118049)-[:DAM]->(c163991),
(c118283)-[:DAM]->(c165553),
(c118969)-[:DAM]->(c193812),
(c119372)-[:DAM]->(c187802),
(c119373)-[:DAM]->(c119372),
(c119766)-[:DAM]->(c189073),
(c120657)-[:DAM]->(c133824),
(c120713)-[:DAM]->(c143285),
(c120922)-[:DAM]->(c131376),
(c121070)-[:DAM]->(c136945),
(c121071)-[:DAM]->(c121069),
(c121072)-[:DAM]->(c121069),
(c121073)-[:DAM]->(c6488),
(c121074)-[:DAM]->(c129449),
(c121075)-[:DAM]->(c121071),
(c121251)-[:DAM]->(c4458),
(c121715)-[:DAM]->(c18896),
(c121772)-[:DAM]->(c7224),
(c122798)-[:DAM]->(c122799),
(c123036)-[:DAM]->(c123057),
(c123062)-[:DAM]->(c22349),
(c123063)-[:DAM]->(c22349),
(c123326)-[:DAM]->(c175474),
(c123682)-[:DAM]->(c123679),
(c125399)-[:DAM]->(c125400),
(c125400)-[:DAM]->(c118283),
(c125409)-[:DAM]->(c155573),
(c125539)-[:DAM]->(c125540),
(c125695)-[:DAM]->(c188014),
(c125849)-[:DAM]->(c143286),
(c127239)-[:DAM]->(c20971),
(c127289)-[:DAM]->(c22905),
(c127295)-[:DAM]->(c191007),
(c128175)-[:DAM]->(c128177),
(c128176)-[:DAM]->(c139209),
(c128178)-[:DAM]->(c176317),
(c128179)-[:DAM]->(c128175),
(c128188)-[:DAM]->(c192434),
(c129275)-[:DAM]->(c166018),
(c129449)-[:DAM]->(c11642),
(c130127)-[:DAM]->(c127180),
(c131127)-[:DAM]->(c162397),
(c131289)-[:DAM]->(c11761),
(c132475)-[:DAM]->(c125659),
(c132489)-[:DAM]->(c158333),
(c132520)-[:DAM]->(c141979),
(c132812)-[:DAM]->(c132073),
(c132899)-[:DAM]->(c20045),
(c132943)-[:DAM]->(c5324),
(c133549)-[:DAM]->(c164064),
(c133824)-[:DAM]->(c24892),
(c134427)-[:DAM]->(c157224),
(c134432)-[:DAM]->(c134433),
(c134580)-[:DAM]->(c11642),
(c134795)-[:DAM]->(c19001),
(c134924)-[:DAM]->(c22330),
(c135341)-[:DAM]->(c143399),
(c135841)-[:DAM]->(c160799),
(c136578)-[:DAM]->(c15590),
(c136626)-[:DAM]->(c185829),
(c136701)-[:DAM]->(c1754),
(c136831)-[:DAM]->(c132816),
(c136832)-[:DAM]->(c132816),
(c137139)-[:DAM]->(c23291),
(c137214)-[:DAM]->(c193700),
(c137260)-[:DAM]->(c20477),
(c137416)-[:DAM]->(c137417),
(c137417)-[:DAM]->(c164643),
(c137789)-[:DAM]->(c12359),
(c137854)-[:DAM]->(c146677),
(c137887)-[:DAM]->(c137892),
(c137888)-[:DAM]->(c137908),
(c137889)-[:DAM]->(c137892),
(c137892)-[:DAM]->(c137890),
(c137894)-[:DAM]->(c137905),
(c137896)-[:DAM]->(c137906),
(c137898)-[:DAM]->(c137907),
(c137900)-[:DAM]->(c137899),
(c137901)-[:DAM]->(c137887),
(c137902)-[:DAM]->(c137897),
(c137904)-[:DAM]->(c137900),
(c137907)-[:DAM]->(c128180),
(c137908)-[:DAM]->(c137891),
(c139154)-[:DAM]->(c134759),
(c139209)-[:DAM]->(c139207),
(c140667)-[:DAM]->(c7776),
(c140687)-[:DAM]->(c140688),
(c140747)-[:DAM]->(c140833),
(c140826)-[:DAM]->(c140832),
(c140831)-[:DAM]->(c140828),
(c140832)-[:DAM]->(c140830),
(c140835)-[:DAM]->(c23643),
(c140836)-[:DAM]->(c3047),
(c142288)-[:DAM]->(c159393),
(c142289)-[:DAM]->(c142292),
(c142290)-[:DAM]->(c142291),
(c142292)-[:DAM]->(c154223),
(c142294)-[:DAM]->(c159393),
(c142826)-[:DAM]->(c3046),
(c143286)-[:DAM]->(c5092),
(c143440)-[:DAM]->(c187178),
(c143441)-[:DAM]->(c187178),
(c143497)-[:DAM]->(c175491),
(c144473)-[:DAM]->(c1754),
(c144681)-[:DAM]->(c132489),
(c145017)-[:DAM]->(c145018),
(c145018)-[:DAM]->(c18085),
(c145019)-[:DAM]->(c124711),
(c145020)-[:DAM]->(c11739),
(c145231)-[:DAM]->(c9333),
(c145238)-[:DAM]->(c124587),
(c147843)-[:DAM]->(c151358),
(c148486)-[:DAM]->(c148489),
(c148487)-[:DAM]->(c9886),
(c149961)-[:DAM]->(c90666),
(c150387)-[:DAM]->(c193256),
(c151123)-[:DAM]->(c147644),
(c151225)-[:DAM]->(c135725),
(c151226)-[:DAM]->(c131124),
(c151344)-[:DAM]->(c137521),
(c151348)-[:DAM]->(c151345),
(c153400)-[:DAM]->(c153397),
(c154934)-[:DAM]->(c162155),
(c155570)-[:DAM]->(c9895),
(c155572)-[:DAM]->(c155570),
(c155744)-[:DAM]->(c118212),
(c156056)-[:DAM]->(c136832),
(c156366)-[:DAM]->(c176630),
(c156399)-[:DAM]->(c180051),
(c157198)-[:DAM]->(c192385),
(c157564)-[:DAM]->(c142290),
(c158333)-[:DAM]->(c128166),
(c158361)-[:DAM]->(c8281),
(c158362)-[:DAM]->(c147843),
(c159389)-[:DAM]->(c137854),
(c159390)-[:DAM]->(c19378),
(c159391)-[:DAM]->(c19378),
(c159392)-[:DAM]->(c159398),
(c159394)-[:DAM]->(c159396),
(c159395)-[:DAM]->(c159400),
(c159398)-[:DAM]->(c17455),
(c160132)-[:DAM]->(c150666),
(c160595)-[:DAM]->(c139154),
(c160599)-[:DAM]->(c185632),
(c160622)-[:DAM]->(c134229),
(c161502)-[:DAM]->(c153165),
(c162107)-[:DAM]->(c162196),
(c162125)-[:DAM]->(c140554),
(c162196)-[:DAM]->(c140835),
(c162197)-[:DAM]->(c137854),
(c163812)-[:DAM]->(c133824),
(c164225)-[:DAM]->(c153398),
(c165496)-[:DAM]->(c136462),
(c166188)-[:DAM]->(c166187),
(c166189)-[:DAM]->(c166187),
(c166190)-[:DAM]->(c137888),
(c166324)-[:DAM]->(c192427),
(c166328)-[:DAM]->(c15352),
(c166821)-[:DAM]->(c9435),
(c166822)-[:DAM]->(c1531),
(c167115)-[:DAM]->(c167116),
(c167137)-[:DAM]->(c174546),
(c167138)-[:DAM]->(c167141),
(c167139)-[:DAM]->(c174546),
(c167140)-[:DAM]->(c167141),
(c167141)-[:DAM]->(c174547),
(c167652)-[:DAM]->(c170302),
(c167870)-[:DAM]->(c50250),
(c169984)-[:DAM]->(c122380),
(c170282)-[:DAM]->(c170283),
(c170852)-[:DAM]->(c170851),
(c172435)-[:DAM]->(c170589),
(c172450)-[:DAM]->(c172435),
(c174359)-[:DAM]->(c170649),
(c174541)-[:DAM]->(c126858),
(c174790)-[:DAM]->(c158333),
(c175122)-[:DAM]->(c127239),
(c175208)-[:DAM]->(c175207),
(c175283)-[:DAM]->(c182494),
(c175474)-[:DAM]->(c4056),
(c176015)-[:DAM]->(c132497),
(c176106)-[:DAM]->(c13011),
(c176170)-[:DAM]->(c183897),
(c176630)-[:DAM]->(c14258),
(c179650)-[:DAM]->(c179652),
(c179651)-[:DAM]->(c18355),
(c179652)-[:DAM]->(c18355),
(c180530)-[:DAM]->(c132817),
(c182493)-[:DAM]->(c135272),
(c182942)-[:DAM]->(c182971),
(c182945)-[:DAM]->(c182971),
(c182950)-[:DAM]->(c182971),
(c182951)-[:DAM]->(c182971),
(c182952)-[:DAM]->(c182971),
(c182961)-[:DAM]->(c9888),
(c182962)-[:DAM]->(c9888),
(c182963)-[:DAM]->(c9888),
(c182964)-[:DAM]->(c182971),
(c182965)-[:DAM]->(c9888),
(c182966)-[:DAM]->(c182970),
(c182967)-[:DAM]->(c9888),
(c182968)-[:DAM]->(c182971),
(c182970)-[:DAM]->(c9888),
(c182971)-[:DAM]->(c9888),
(c182972)-[:DAM]->(c9888),
(c183058)-[:DAM]->(c182341),
(c184041)-[:DAM]->(c192575),
(c185631)-[:DAM]->(c185633),
(c185741)-[:DAM]->(c193276),
(c185828)-[:DAM]->(c157526),
(c186021)-[:DAM]->(c157050),
(c186022)-[:DAM]->(c15222),
(c187368)-[:DAM]->(c10125),
(c187480)-[:DAM]->(c1754),
(c187816)-[:DAM]->(c9454),
(c188014)-[:DAM]->(c140094),
(c188024)-[:DAM]->(c179738),
(c189059)-[:DAM]->(c7178),
(c189073)-[:DAM]->(c193666),
(c189080)-[:DAM]->(c177773),
(c189278)-[:DAM]->(c3054),
(c190160)-[:DAM]->(c135341),
(c190174)-[:DAM]->(c188111),
(c190735)-[:DAM]->(c157564),
(c190736)-[:DAM]->(c165496),
(c190737)-[:DAM]->(c157564),
(c192387)-[:DAM]->(c157197),
(c192427)-[:DAM]->(c15214),
(c192707)-[:DAM]->(c176015),
(c193159)-[:DAM]->(c146693),
(c193161)-[:DAM]->(c137789),
(c193275)-[:DAM]->(c179185),
(c193276)-[:DAM]->(c179185),
(c193666)-[:DAM]->(c127282),
(c193790)-[:DAM]->(c142654),
(c193812)-[:DAM]->(c3503),
(c193844)-[:DAM]->(c126143),
(c194001)-[:DAM]->(c185979),
(c194161)-[:DAM]->(c5146),
(c194266)-[:DAM]->(c173006),
(c194267)-[:DAM]->(c89148)

Let the fun begin

Show all breeds in the data set with their breed group association.

MATCH (b:BREED)-->(g:GROUP)
RETURN b,g

Show all Japanese Bobtail males

MATCH (c:Cat)-[:IS_BREED]->(b)
WHERE b.code = 'JBT'  AND c.gender = 'M'
RETURN c

Show only those Japanese bobtail males that have sired kittens

MATCH (kitten:Cat)-[:`SIRE`]->(c:Cat)-[:IS_BREED]->(b)
WHERE b.code = 'JBT'  AND c.gender = 'M'
RETURN DISTINCT c,b

Find any Selkirk Rex Shorthairs (SRS) that have a parent that is Selkirk Rex Longhair (SRL)

MATCH (abreed)<-[:IS_BREED]-(a:Cat)-->(b:Cat)-[:IS_BREED]->(bbreed)
WHERE abreed.code = "SRS" AND bbreed.code = "SRL"
RETURN abreed,a,b,bbreed

Check that Cat 150738 is an ancestor of Cat 9883, and return the shortest path between them.

MATCH p = shortestPath( (a:Cat)-[r:`SIRE`|`DAM`*]->(b:Cat)) WHERE a.id = '9883' AND b.id = '150738' RETURN p

Find the cat that has the most kittes:

MATCH       (n:Cat)<-[r:`SIRE`|`DAM`]-(c:Cat)
RETURN      n.id,
            count(DISTINCT c) AS Kittens
ORDER BY    Kittens DESC
LIMIT       1

More examples of interesting query examples within this domain:

  • Show 3 generation pedigree of cat X (easy query, but difficult to visualize sensibly within the current limits of GraphGist)

  • Show "reverse" pedigree of cat A (i.e. showing all children, grandchildren and so on)

  • Find any common ancestors of A and B to depth n - very useful before deciding whether to mate A to B.

And as a bonus…​

we can’t have all this talk of cats without a little "Handfull of hapiness"

Handful of happiness
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment