From 4ef890eef57e1d62835618c8ed28e4143915f779 Mon Sep 17 00:00:00 2001 From: Christophe Date: Thu, 12 Dec 2024 16:33:28 -0500 Subject: [PATCH] refactor: Rename `node` to `indexer` --- Cargo.lock | 62 +- Cargo.toml | 2 +- api/Cargo.toml | 3 +- api/src/main.rs | 8 +- cli/Cargo.toml | 2 +- cli/src/main.rs | 4 +- codegen/Cargo.toml | 5 +- codegen/src/lib.rs | 10 +- codegen/src/sample.rs | 4 +- core/Cargo.toml | 1 + {node => indexer}/Cargo.toml | 12 +- indexer/replay.log | Bin 0 -> 402481 bytes ...eaql57fjpcwhy25ut3s742qkhuxz4i6meahhrpvnf4 | 1 + ...hx7optzfxtehxotizgqjz5h5vszo7vtmzsnm4ktxjy | 1 + ...rcb747ib6rh7gpnho2rzopdljrtiyafoesyxnrhziq | 1 + indexer/resources/bootstrap.cypher | 96 + indexer/resources/bootstrap_2.cypher | 234 + indexer/resources/bootstrap_3.cypher | 61 + indexer/resources/dump.yaml | 8824 +++++++++++++++++ .../src/bootstrap/bootstrap_root.rs | 0 .../src/bootstrap/bootstrap_templates.rs | 0 {node => indexer}/src/bootstrap/constants.rs | 0 {node => indexer}/src/bootstrap/mod.rs | 0 {node => indexer}/src/events/editor_added.rs | 0 .../src/events/editor_removed.rs | 0 {node => indexer}/src/events/handler.rs | 0 .../src/events/initial_editors_added.rs | 0 {node => indexer}/src/events/member_added.rs | 0 .../src/events/member_removed.rs | 0 {node => indexer}/src/events/mod.rs | 0 .../src/events/proposal_created.rs | 0 .../src/events/proposal_executed.rs | 0 .../src/events/proposal_processed.rs | 0 {node => indexer}/src/events/space_created.rs | 0 .../src/events/subspace_added.rs | 0 .../src/events/subspace_removed.rs | 0 {node => indexer}/src/events/vote_cast.rs | 0 {node => indexer}/src/kg/client.rs | 0 {node => indexer}/src/kg/entity.rs | 0 {node => indexer}/src/kg/mapping.rs | 0 {node => indexer}/src/kg/mod.rs | 0 {node => indexer}/src/lib.rs | 0 {node => indexer}/src/main.rs | 2 +- {node => indexer}/src/neo4j_utils.rs | 0 {node => indexer}/src/ops/batch_set_triple.rs | 0 {node => indexer}/src/ops/conversions.rs | 0 {node => indexer}/src/ops/create_relation.rs | 0 {node => indexer}/src/ops/delete_triple.rs | 0 {node => indexer}/src/ops/mod.rs | 0 {node => indexer}/src/ops/op.rs | 0 {node => indexer}/src/ops/set_triple.rs | 0 51 files changed, 9277 insertions(+), 56 deletions(-) rename {node => indexer}/Cargo.toml (98%) create mode 100644 indexer/replay.log create mode 100644 indexer/resources/bafkreiadpdybqrlieaql57fjpcwhy25ut3s742qkhuxz4i6meahhrpvnf4 create mode 100644 indexer/resources/bafkreif4acly7y46hx7optzfxtehxotizgqjz5h5vszo7vtmzsnm4ktxjy create mode 100644 indexer/resources/bafkreih3oxxoenvhrcb747ib6rh7gpnho2rzopdljrtiyafoesyxnrhziq create mode 100644 indexer/resources/bootstrap.cypher create mode 100644 indexer/resources/bootstrap_2.cypher create mode 100644 indexer/resources/bootstrap_3.cypher create mode 100644 indexer/resources/dump.yaml rename {node => indexer}/src/bootstrap/bootstrap_root.rs (100%) rename {node => indexer}/src/bootstrap/bootstrap_templates.rs (100%) rename {node => indexer}/src/bootstrap/constants.rs (100%) rename {node => indexer}/src/bootstrap/mod.rs (100%) rename {node => indexer}/src/events/editor_added.rs (100%) rename {node => indexer}/src/events/editor_removed.rs (100%) rename {node => indexer}/src/events/handler.rs (100%) rename {node => indexer}/src/events/initial_editors_added.rs (100%) rename {node => indexer}/src/events/member_added.rs (100%) rename {node => indexer}/src/events/member_removed.rs (100%) rename {node => indexer}/src/events/mod.rs (100%) rename {node => indexer}/src/events/proposal_created.rs (100%) rename {node => indexer}/src/events/proposal_executed.rs (100%) rename {node => indexer}/src/events/proposal_processed.rs (100%) rename {node => indexer}/src/events/space_created.rs (100%) rename {node => indexer}/src/events/subspace_added.rs (100%) rename {node => indexer}/src/events/subspace_removed.rs (100%) rename {node => indexer}/src/events/vote_cast.rs (100%) rename {node => indexer}/src/kg/client.rs (100%) rename {node => indexer}/src/kg/entity.rs (100%) rename {node => indexer}/src/kg/mapping.rs (100%) rename {node => indexer}/src/kg/mod.rs (100%) rename {node => indexer}/src/lib.rs (100%) rename {node => indexer}/src/main.rs (98%) rename {node => indexer}/src/neo4j_utils.rs (100%) rename {node => indexer}/src/ops/batch_set_triple.rs (100%) rename {node => indexer}/src/ops/conversions.rs (100%) rename {node => indexer}/src/ops/create_relation.rs (100%) rename {node => indexer}/src/ops/delete_triple.rs (100%) rename {node => indexer}/src/ops/mod.rs (100%) rename {node => indexer}/src/ops/op.rs (100%) rename {node => indexer}/src/ops/set_triple.rs (100%) diff --git a/Cargo.lock b/Cargo.lock index 7160239..c95ed62 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -134,10 +134,10 @@ dependencies = [ "axum", "clap", "futures", + "indexer", "juniper", "juniper_axum", "juniper_graphql_ws", - "kg-node", "serde", "serde_json", "serde_path_to_error", @@ -1333,6 +1333,34 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed" +[[package]] +name = "indexer" +version = "0.1.0" +dependencies = [ + "anyhow", + "chrono", + "clap", + "const_format", + "futures", + "heck", + "ipfs", + "kg-core", + "md-5", + "neo4rs", + "prost", + "prost-types", + "reqwest 0.12.9", + "serde", + "serde_json", + "serde_path_to_error", + "substreams-sink-rust", + "thiserror 2.0.3", + "tokio", + "tracing", + "tracing-subscriber", + "web3-utils", +] + [[package]] name = "indexmap" version = "1.9.3" @@ -1511,10 +1539,10 @@ dependencies = [ "anyhow", "clap", "futures", + "indexer", "ipfs", "kg-codegen", "kg-core", - "kg-node", "tokio", "tracing-subscriber", ] @@ -1526,8 +1554,8 @@ dependencies = [ "anyhow", "futures", "heck", + "indexer", "kg-core", - "kg-node", "swc", "swc_common", "swc_core", @@ -1554,34 +1582,6 @@ dependencies = [ "web3-utils", ] -[[package]] -name = "kg-node" -version = "0.1.0" -dependencies = [ - "anyhow", - "chrono", - "clap", - "const_format", - "futures", - "heck", - "ipfs", - "kg-core", - "md-5", - "neo4rs", - "prost", - "prost-types", - "reqwest 0.12.9", - "serde", - "serde_json", - "serde_path_to_error", - "substreams-sink-rust", - "thiserror 2.0.3", - "tokio", - "tracing", - "tracing-subscriber", - "web3-utils", -] - [[package]] name = "lazy_static" version = "1.5.0" diff --git a/Cargo.toml b/Cargo.toml index 49ef516..0f80334 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [workspace] resolver = "2" members = [ "api", - "cli", "codegen", "core", "ipfs", "node", "sink", "web3-utils", + "cli", "codegen", "core", "ipfs", "indexer", "sink", "web3-utils", ] diff --git a/api/Cargo.toml b/api/Cargo.toml index cb9bd48..5c87305 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -11,12 +11,13 @@ futures = "0.3.31" juniper = "0.16.1" juniper_axum = "0.1.1" juniper_graphql_ws = "0.4.0" -kg-node = { version = "0.1.0", path = "../node" } serde = "1.0.216" serde_json = "1.0.133" tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread"] } tracing = "0.1.41" tracing-subscriber = "0.3.19" +indexer = { version = "0.1.0", path = "../indexer" } + [dev-dependencies] serde_path_to_error = "0.1.16" diff --git a/api/src/main.rs b/api/src/main.rs index 708a418..0b7b00b 100644 --- a/api/src/main.rs +++ b/api/src/main.rs @@ -14,12 +14,12 @@ use juniper::{ Executor, GraphQLScalar, RootNode, ScalarValue, }; use juniper_axum::{extract::JuniperRequest, graphiql, playground, response::JuniperResponse}; -use kg_node::kg; +use indexer::kg; use tokio::net::TcpListener; use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt}; #[derive(Clone)] -pub struct KnowledgeGraph(Arc); +pub struct KnowledgeGraph(Arc); impl juniper::Context for KnowledgeGraph {} @@ -205,7 +205,7 @@ async fn main() -> anyhow::Result<()> { let args = AppArgs::parse(); - let kg_client = kg_node::kg::Client::new( + let kg_client = indexer::kg::Client::new( &args.neo4j_args.neo4j_uri, &args.neo4j_args.neo4j_user, &args.neo4j_args.neo4j_pass, @@ -233,7 +233,7 @@ async fn main() -> anyhow::Result<()> { .layer(Extension(Arc::new(schema))) .layer(Extension(KnowledgeGraph(Arc::new(kg_client)))); - let addr = SocketAddr::from(([127, 0, 0, 1], 8080)); + let addr = SocketAddr::from(([0, 0, 0, 0], 8080)); let listener = TcpListener::bind(addr) .await .unwrap_or_else(|e| panic!("failed to listen on {addr}: {e}")); diff --git a/cli/Cargo.toml b/cli/Cargo.toml index d403b1f..74718ae 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] kg-codegen = { version = "0.1.0", path = "../codegen" } kg-core = { version = "0.1.0", path = "../core" } -kg-node = { version = "0.1.0", path = "../node" } +indexer = { version = "0.1.0", path = "../indexer" } ipfs = { version = "0.1.0", path = "../ipfs" } anyhow = "1.0.91" diff --git a/cli/src/main.rs b/cli/src/main.rs index 9d7085f..543d61a 100644 --- a/cli/src/main.rs +++ b/cli/src/main.rs @@ -3,11 +3,11 @@ use futures::{stream, StreamExt, TryStreamExt}; use ipfs::IpfsClient; use kg_core::ids; use kg_core::pb::grc20; -use kg_node::kg::{ +use indexer::kg::{ self, entity::{Entity, EntityNode}, }; -use kg_node::ops::conversions; +use indexer::ops::conversions; use tracing_subscriber::layer::SubscriberExt; use tracing_subscriber::util::SubscriberInitExt; diff --git a/codegen/Cargo.toml b/codegen/Cargo.toml index c3ab4ac..451bf8c 100644 --- a/codegen/Cargo.toml +++ b/codegen/Cargo.toml @@ -4,8 +4,6 @@ version = "0.1.0" edition = "2021" [dependencies] -kg-core = { version = "0.1.0", path = "../core" } -kg-node = { version = "0.1.0", path = "../node" } anyhow = "1.0.91" futures = "0.3.31" heck = "0.5.0" @@ -16,3 +14,6 @@ swc_ecma_ast = "2.0.0" swc_ecma_codegen = "2.0.0" swc_ecma_parser = { version = "3.0.0", features = ["typescript"] } tracing = "0.1.40" + +kg-core = { version = "0.1.0", path = "../core" } +indexer = { version = "0.1.0", path = "../indexer" } diff --git a/codegen/src/lib.rs b/codegen/src/lib.rs index f9d34a4..602a1a6 100644 --- a/codegen/src/lib.rs +++ b/codegen/src/lib.rs @@ -2,7 +2,7 @@ use std::collections::HashMap; use futures::{stream, StreamExt, TryStreamExt}; use kg_core::system_ids; -use kg_node::kg::mapping::{Named, Node}; +use indexer::kg::mapping::{Named, Node}; use swc::config::SourceMapsConfig; use swc::PrintArgs; use swc_common::{sync::Lrc, SourceMap, Span}; @@ -39,7 +39,7 @@ pub fn ts_type_from_value_type(value_type: &Node) -> TsType { } } -pub fn gen_type_constructor(kg: &kg_node::kg::Client, attributes: &[&(Node, Option>)]) -> Constructor { +pub fn gen_type_constructor(kg: &indexer::kg::Client, attributes: &[&(Node, Option>)]) -> Constructor { let super_constructor = vec![quote_expr!("super(id, driver)")]; let constuctor_setters = attributes.iter().map(|(attr, _)| { @@ -159,7 +159,7 @@ impl EntityExt for Node { /// Generate a TypeScript class declaration from an entity. /// Note: The entity must be a `Type` entity. -pub async fn gen_type(kg: &kg_node::kg::Client, entity: &Node) -> anyhow::Result { +pub async fn gen_type(kg: &indexer::kg::Client, entity: &Node) -> anyhow::Result { let attrs = kg.attribute_nodes::(entity.id()).await?; let typed_attrs = stream::iter(attrs.unique().fix_name_collisions()) @@ -233,7 +233,7 @@ pub async fn gen_type(kg: &kg_node::kg::Client, entity: &Node) -> anyhow: } /// Generate a TypeScript module containing class definitions from all types in the knowledge graph. -pub async fn gen_types(kg: &kg_node::kg::Client) -> anyhow::Result { +pub async fn gen_types(kg: &indexer::kg::Client) -> anyhow::Result { let import_stmts = vec![ quote!("import { Driver, Node } from 'neo4j-driver';" as ModuleItem), quote!("import { Entity } from './kg';" as ModuleItem), @@ -266,7 +266,7 @@ pub async fn gen_types(kg: &kg_node::kg::Client) -> anyhow::Result { } /// Generate and render TypeScript code from the knowledge graph. -pub async fn codegen(kg: &kg_node::kg::Client) -> anyhow::Result { +pub async fn codegen(kg: &indexer::kg::Client) -> anyhow::Result { let cm: Lrc = Default::default(); let compiler = swc::Compiler::new(cm.clone()); diff --git a/codegen/src/sample.rs b/codegen/src/sample.rs index ebb20d9..e44ca08 100644 --- a/codegen/src/sample.rs +++ b/codegen/src/sample.rs @@ -1,8 +1,8 @@ use std::collections::HashMap; use futures::{stream, StreamExt, TryStreamExt}; -use kg_node::kg::grc20; -use kg_node::system_ids; +use indexer::kg::grc20; +use indexer::system_ids; use swc::config::SourceMapsConfig; use swc::PrintArgs; use swc_common::{sync::Lrc, SourceMap, Span, SyntaxContext}; diff --git a/core/Cargo.toml b/core/Cargo.toml index c3d7548..572a656 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -14,4 +14,5 @@ serde = { version = "1.0.215", features = ["derive"] } thiserror = "2.0.3" tracing = "0.1.40" uuid = { version = "1.11.0", features = ["v4"] } + web3-utils = { version = "0.1.0", path = "../web3-utils" } diff --git a/node/Cargo.toml b/indexer/Cargo.toml similarity index 98% rename from node/Cargo.toml rename to indexer/Cargo.toml index 66a7653..ca6d26d 100644 --- a/node/Cargo.toml +++ b/indexer/Cargo.toml @@ -1,14 +1,9 @@ [package] -name = "kg-node" +name = "indexer" version = "0.1.0" edition = "2021" [dependencies] -substreams-sink-rust = { version = "0.1.0", path = "../sink" } -kg-core = { version = "0.1.0", path = "../core" } -ipfs = { version = "0.1.0", path = "../ipfs" } -web3-utils = { version = "0.1.0", path = "../web3-utils" } - anyhow = "1.0.89" chrono = "0.4.38" clap = { version = "4.5.20", features = ["derive"] } @@ -27,6 +22,11 @@ tracing = "0.1.40" tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } const_format = "0.2.33" +substreams-sink-rust = { version = "0.1.0", path = "../sink" } +kg-core = { version = "0.1.0", path = "../core" } +ipfs = { version = "0.1.0", path = "../ipfs" } +web3-utils = { version = "0.1.0", path = "../web3-utils" } + [dev-dependencies] serde_path_to_error = "0.1.16" diff --git a/indexer/replay.log b/indexer/replay.log new file mode 100644 index 0000000000000000000000000000000000000000..cebb8b092eb9dd957593d6bc50d2997f11f903ef GIT binary patch literal 402481 zcmeFa3%p;|RqwkV|JVLMcK&%l0y}Ni|4+1=3T?!m&=2-{GGoi5P{GIba_;f-0i=<# zlR{pkc&ubY15I1BXgL)v+NfyJ(w0{ApcggVgBBH)Q>ju*+t_k?(NmREQE5xd{r<+7 z>;Kw&XNN$o*K_wy_Ik}V=a}O)#~5?WxnBQ+S6-DSwcR^+oWAc{lj_Gm-`uqKhj(s! z*%en`eZ`J#m+icA&&w{q`i(E&^FuG&bIlL#*}Hq&WpCW`vfVo`f7!k>UiLlPc3rb= z&)!vczkhAx?|&~{_od%U&!}Iq?dnUezGm-P?|J{)=ApE?_KlbAykzI@tAFUq9ozO? zvU}SVSMJ%nZTGg#gxw(Wfb1+RJI%M2cx+q&cG%eSAkvDv4(y;q;L z=khmfd*fv+|m+;h$4mv7s%=jz>;?Adu4XO~<~ zSN8(vQJ*dc>^C(}83Xov%T~VE8u?CdL(m>u$>!VB=4uD`2P2%9z5ew;x!BF+fCJGJ zz{NU)suWO1FVXzTw0XifFuS+C@#=kmv-s`h0NT)e(c%Dok5?;@mMhb|Ic=^opvK9# z$i3$Z4xF}tY?I(jmTCT0+I+FVxdOcGzUs28F5h;^&K=iWaphG*4qN8=a$vr+IXi|m zKsaa6*hSvf2%|lR;?0kx&Ax!&xo!8JtFO9j$0e7&{*6~&wV(sXP-eMKoYCAg*@=r{ zqlWXKh8K3`I9?Oio}^A)dDWGBucS}gUVr7@t9S3AZxW=XA1&7fwANS`UgPx+gz0F{ z2ckp`JFnhz*^VK1m?$l{y&N!;e0fn>?+7O>SEl(hL-iej0uE_O@Kmbr$p^~;)@yE{ zlA-z@0LF<|Eh%5VRC8Z*T2$P3^BRMNkgRK-I0ni0tETUyA_1`E!{)ow z=7}Z~B}OmVcI~#yuhCGk#Qo&}DVi@H17v`b*Tjki(6WV^H>Ay#0_=_3-uQ!vPUPo> zx0VBEl22df^)1QAqt6H9Qwc;lAlUdcadSC9CP$yx(8yqL^b!M%j7zv-WbD>*fJ|cK zIZ1XoVwWwBVPxXwa)3P6&jc)KL64J&7Sv&>Pe>8L~L5Xwne8Gv8b8(}1}E3)fMO3;w!6M_ z_mx-e-Emct<=d{>SHoQaUw$!Nx+s_IyzHtgFHh?EJ1TFhq>Vfs`>CYaRGMboONRHe zw3%j=NNGtb*Ax!+Pd`dOtvSyrv^1B~swJ(XoN zrn{W^KkifoqJF3tSd(=1npP#r_?IPWWbDUFQZ`N6O@82$ioL71`KeU6Q_a#UkXPv* zo#Ef08+LmNq@~to0(`AXmS?&B(aGSHJO0n^oj?!3Cg@akl_?>oR%xpzQ|&r8v$p;i z4#6w`@;py7{$wXkO>xRe4%DfUkUvhbR%I;+N-IJXw*bCcX$dAeRjE;?mV1xwd6KN7 zcl5ZP?o8j$Z#7Som9>-d{b`t=Kb*AoC*g^Y+;7Jxb*z6jKe2`oU%mT>v!pbZCY|8q z(d?-1W%9{v5x*t*RJNGAmmJ9!ce|3$X3J>m+^T#@5=AYeY%1cN-7-E z%~`@B*_^d`_V@F8v&C6^F5IGv?g6#bOI3!ODwc+K-=JbAE>&z@EOwU_n_f_?dt+H= z=*~s>)7BGcl>OOtv1^Bu?ft4h3u&*GZ7Gt|lS(Jiq1vnKny&R5`ZEhy>4!_iz+#rZ3@p?k1}1nVu-X}tyMq{@mW&T#AnrTI4LQe zwB9KeHhT6_5fX~Nh8k0ms+WNR-OW0Qo{7Hc=}BTFcJ}_fkr&pTL}M=n@m}V4o)N0k z#mWF%0c;gYs=<())4F?knL1*Uv0{-5Um%(KvNg~-MqxPyEpVG@fs?;}5P!rPSiJz^ zo-2z|3;doHJ7Gbw#kIgOkm4azE31y9W1qG+ryP_gbg`&<`%NRovFfd_Ezdl6{kgcY za~u#qaHHN_2uj3psgRe^+a)QM>R7C8W7OOCA5fzUM}bH&#*3lePFlyniVs--C2-Gm zKsv_$f6UNy@&X>4V8vxR2Hy@lmbMfRU;y9il?0c+OeYuYPf)#5n zRjefJT~@5IRIyEw{`Xih*#nDO0k4Y1mg1)4W|P~Fn@w)L>6pai>%u0-ApiILfxv4# zC;qn)S~Pgtq;W|#yCzcO9VP-;c8e0t?Y3L2OcdTqmW2MGk3gYLbv5tWh^9J6^;~>RP*qaMSg$a$d zRL2${?vFuu9yaDV9#R~mR`^B^p2tA3hki}MbHZ^@>`t>|RxY6u2HxCrqu4PB&le2h z;~5pdk;0QDts53M<;VuP}#_v^GQ+R&3tdjcAu4W@LVgQ zGZ)hC-`KP41HEdth03!qpI#^@&wSZ@3vX55$30$}wwI=dFIBfb`)u<4#2%_!>j(R_ zUbVoHY_)i$_Nrusm0mF{otwMq%~b~0)=@Ek@UKAGag82hm_H~#5+t>SUSO(w!o%r#>NEYrt zJfbkp&zqm0E&>OEt1^sL8HTacYYP|5W{rMg5d|)L2v2D5=vCli3wKFO%t*RkJm38} z{gs#8o}*|b?49cqW@4Bl+|(m{4eu*VfG}iMIgt>K;TM(!F4qt_h->Aomn06BVAGk* zK&zwdSoi0FBx!w>Ao);Y75~azWWh*9eH)2?aqYieHQ|?}U-J-&L(2pO5@>)czJ>S- zqqp3w2v$lsX2K8a5aOW@llEb8kE0RYnJoUAPTI~CtEv>a$ExzNSXExs6sw}r7^})D z=dmj8GH&5g${mifEl;ReIB7RVimgp|Tid>u^09g5qK{1jTFy z{$_zaTt?*x_|SI`N*UMWV?n7Kj-vY?FzH`i5^N;WwOsJ$X$e7y(myZ1>UcHK5rg4) zZ0N&kHpHmML(d0>r$4Kjj>mX>%wSmMg7@U}f#GI@;dr7yV|ch-*6i`p;z5I9`Z)OE zAv2;QEgpS7FdQ)$j)xz{V0hyB!0@#3Q!vRGxj+ZCzJZ?OU>8LxFgW(|4%`bp~ssSw=%|x*R zrwwfw?AF^N))wj)x*+*tlmoY<#ko*1$#_jI%Ix9)<#gLieuu`FX5&=8uvU zt&sGXa0?GT`y=OfunjnE&4p`s>3H5uF9j2C#_G@@UgfrCyUJh2-h7u#nIv30$GBN5 zu*=helevB)fRS52!jOJ;hgm6I-Qrgap-lWxS+=WFql#;H^{4cPynnoG>*`l(E} zN=VB)-46&4dR^e%Ebt;Aufyh8v_^~vHJo`R0lRCnzsPC6**jcTcyOe`^E#QZR)W3a ze87$k)P^8~1x$(oj8G;Qb!06p3XS?V=#BaZ2uTsUdEG8LPR|6Qq257ssDv{0q?a35 zQ-<-RXmmd)l=u{31FKVH7x~=ZYn%<(M2{@|RWvqd4N8VY*n9eevfi!}OYD0SE!(vS z1&zdZ70u9L;v6@LMrv3ZW5x>jo8UmcTz=k6_r?Qs=;R{lekk^=$h&tN|EFe!i@(FQ z1|4M0cg( zB6%Gmp*u`km|Sr@Z>FEmf!zoQ?m+4?QlD$#)YOW+W& z*lvcg?5OK;nn8{f25tR5X;aMHBKSSSBZPr5D^zJ75;X%1ZHuSj4m>KAP@~4dCL`y- zs@7({E9B=$K`IHsWhO#na;0VlqNg+kQ%ZRhqhwT!l$oF=p;;88s>G-&l(i+-i-{4y zj*F3iq9>W@TcL6i4E5U*CUAa?DYFp`Os57K*n7paeN+m1;2lI`4mvyR-=JctN#$ag zR(Gj)o$2rS`N(_YEe77SX7pxk9LnWl4LHZBk;$Kx?g!pc6v`uZ6lM{HnNXOOC`2JG z)I{Sb93j}CLlA_%N4k%ax@FY#VTdjh+4{m;&?3fY*X|1QA41nfCQ}Wj>%?a8M80ot zKXoGEO`Gt7HQ0?o$I2C1PjVwf;%s|v3tbT}&=5CUze`RXe2h;l4mDbG(MB2)u_v)L z(4`byS$Bmeku|mS37z1OTt7+Iw$WfEXUy;xB@*K6SU|LZ@i!#a7&9$oZjT!;@e#L(Qj6|L5jbwi+3 zBM8QPQTL?P`%o>9D9v0eNaaf_0JBCq3ed$Ol?DZ$1MYx?(nLe8P;#?k0D9u$sOEe? z=4?*Hb;XcHu1-g}T2UQCJZSUr^%xWb@Qx`4fK~f+&sBqb{v~0taXt1wSMQ>MM(;-Y z8YN+YdVtb{UN72F7#-3rP!IlIR24%64O%?g`NIf=k~9j4HzUsSQJm!ioaGT`x%dui z&6Ozz&_Ycxjx&h6fJjhaNb8J#lpQ5f<@#z;b#Z$(yIU5X6gy_GuC43+9DYI+kzL)h zeq-&PidGAU^g=Jmx6nVHiQ{saf-oLLL^v_Qqx@Q&+N-$Jno-bD)#k8gkiK*|w{k#C zzR(8ybN|QfH8DcO#fPepH2Nmf`46E=vL#Qb=Rp|n0FUjy!R~l7Y(1dsr0cP^nDgF+6J7x;g-CqxH|dtU;Q% zv$ptL(xKbixEk#yt+(IkyQ8hL3_`MWgITuimymp{qY-*$E%D@S=T$SLe{(*77+sdN9LW zM-4#9I~0omq2;kv!7tI*dPj^+-8ngf74T0-lI^?EkYIxj>T1^;Cc1>2=4M+A@jRqu zZGnj^vFoS%%nB5btE`F9>pD}wWD?^fpi%BD+GyR;V<_gl+ov-mFB%5K6{+xFrFTMj z&cVw&7OUrZa;Dx(c`pte8i0kons6jnkrVvI9;{`PLv`0U_%gUIRi4um^BFmlQHrM- zUC8R3%r_v9J?qzA1Dn-GINo|`sQg*kY%zIRq;gfBF zCsLTTpQ>$4)$O}^HQft$L>e(R0#|(!F6D{#L0Ab_-3{Hk;3BME>SnrrU6D@0Whga} zG+tv|^I>zf@T)rtiGF4+3uR59lZJ=t>UR6vbtpX}J zM6*l>bwCo&{6QQXWpNlw7Y(zH8%1rTCWSJ*CS-7|CTg&nc)hHN%B?0q60VFi1Gdu; zIzlH(zy>Q?`IeI3!FqO~-ZJHJo`q@jtlO`S@I74{u)B;;_#UkE=$R&!>Wo{Ee~4a) zA(ccQsFxv*A}$$1Ei^L6enL7ZK1wlEc4B4Ss^_VXIx+~;5yEBT)I!3<1B=?yF!%t+ z%h}S7Oc+UOzm(x6kSPcj`yImv;U-=CpblEj?^IBuG!Q;Ck2j6R*tZ4cANHT!uXo^? z&_%>w(`ow%dz*%37zn|gfAcOfzWWF>oDuJ<=G$$oPeD2VHI&;8J#pg#8$2DF5hAf9 zjzgtipDSu-OMA=wM@=$Tz^&1Ql>&tjq9jl%{v?nF>^Jbv)a<|opTLw$OUbD8gMJgY ziSb40SKt;u1kM7?ndrWX$-}Zd(jKET2Q~*S{8$YcZLQX;iN`s z(1D$S+@f=|7GT_LD0;v^XQl5&7v7*D0>g|g4fL{t3d2GbdmFd;9 z8I6IVqVZ~1NYCjQyry};zU!pwsDDw7{sqb()QUGMs*&~u94jfxF>KIh4Q2FrWHghN zKunBr5LTjbf&f)<5IBt-q?es}=mKMapCg-&|5#k23Wn^V>koS!Lh=^KvMXV6pm0m% zD9}W!^~ksPh$+l+gzARKvFZXDFc_eyV{jZH1nueeA(*JC>Kv6y*d5pux0-QW{306h zbRpx@q<1@xajMTpOYgRy54ue?nUC>O+v-;t;~E+Pu>d45U20y6Lkcg+hb+T0={Rd@ zNC7_#Defqn0ie)2ATn+aSTj{j5iXVifDbY@Y(pwERSiT)k>PMfM~NyHl}`r+l*xSK z1vBHoalEuR62pGHyhTS8{&-=#%e%Mv(>uls+g+X>@~3yjr?Ifz<>{UN^q%-M7Ph-Q zz1yGO7oWz$c9*C3`qKyE(^%N<@)UUQa!F&DkU4mk-BF zJ8sS%8^3%sUfOYU_W1bak$7px&Dj^mFQ15)cHEpjHGcVIytE^csPW6E23b>j`%bdw!1t%_I6`cQlt3)@|uKIl&$iBDr;yUWvu z{pn-zX)J7adHSe7eLOymh3zg+kNDFs#HX>a-R0>M{`9H%G#0kIJbluiJ`jjxmSC3W|F6uhF*ttZl9np!c)qol#A zRHP<72?&}IuTc;^ivL3-h5yV>yoEA6iCHl0 ztz!@*4!>h_wuUo>OIh6~MU4T&Q^j{RIjXeD?ngAgW)n*ax7ysA*JDF!Pi_|~mLW`2 zMw+u^Zg+nETDe{*W8EgCr-7vsin)zEA_MKg)TZ{O)b(qS4K6_Mxd5v8k=$vEh*q!w zQ*29BipCa{iDs91NW~y0?Y>_%_i_!5*wv=@Om$bg0j+|nh8eJos(TGZr@A_eZ<(*XAKXvTL4w3brU^*#I z?|50!>fWQ`N$b0Y)xrshKL+;o-gVCA-+#Y!(z+tqnw}}gHaz|I!@5HhNnL#UCa$`_ z?$uo|R$UgWgM-dWELl^0VB=#KXdeD?tB35xvJnPPs_Y(su)y}obhugx;Bv3cx|qtE zff!;^*{QO*K*HX>NW_1*lbTeUoe>$?uus7{XrTEB7#PeeosYvB4#*ijGS18+XCeaB zq}j*re{s|r6R1IB6>*xHHd={(IiL%U$d~3z&=wsjkxh{SXWpGA0>?m-yf|z_jwEbm zQM-}{)qqK3WL5M)NC(`QDLiMKGQxObVKJCwelYV1224D8e~b$$D_&RVb%cNQdaR}O ziE*tFi5ub8Y@RW9BnAi;F__}TEn-UBmI{d&OjC~#!vunkh!{v+vPcX_EwYXh zL(^DB3{7$lh#`PQ4Dr!2#K?xkcx#oMmndDE2Al?87><$a^}PXpU|by zM3{4N&wP6+EADUXp{i!H(-a0le>ld4XON2I8nh{zfm$*uAdaLLv#|dHT=Fc=^b@ek zG#u0bL0k%4s5_;a0$!U}(;{PV;Hj7eTK|SXRJ(0F3Jwh-mK?fT#f%HY%ol}jJV2q7 zsf56pP2qM0gbaA%6J8m5B_CEcs09eIvlV7cUY9-Ibvs+B=xmKrl13bFi^fl=cic&mJ@WtcHP+6x7fCNC>R$33YshY zHQqIfdgIxaf`CfGAyzulN$mTj>+6%5q`sx}t%zOX1+P^yFP<3mB=*DN!F2xAydiho zNNvP1o`m{(annE-k7$VBuB3IPqA^l3@JgUGX7-@Fv=_)>N`UZ%F$~jJbEhZDl3uqr zth)x+)P}QaPl>`MbNUhQ0#E7&*Ssr zwbEtk(%?5y?zAK!)43K7QPs3IQW^YYsG&tmm+@CJy3X39r(Oe>FVK8~Lsttk%FmrYiY32qU; zK%HqavS!#!ea5GQ)oAt_P)Z@$G>{^q04-W8mq}%m7pTdqATf*?=UE^r44K;`;*hPR zxZrcCvm~buin!gz3<4Nq05B_zV3YJcsz2`V(vh9*{A9SYm&z3rBB!EORK@}KOZ)=y zA*+T_Pn9skBn{QQC@p2liO>H%fxRI-^s+VvlN*Txm~0Rqg~`>N@;;TMeR{$UG+N(5 z=BX&TwRoE_7#GF#$c@+F+oTl@`g;I@6%Zdnw*&eDTx4wJN7ju6yTqPqn0Gq$X!vgt&vx>m)a{UqBeMIoY<-Pz33Pq zk<<-%7`OFZ>Cn44%wnSIMlq|#F6=1HVZxr8e={?Z0ZnMBhSTN(XOu!`1roC4x^T5M zJ5#&JgePxf_)|Bl;ebDU1yxjOcXKvtXI;*;^UQFE8SNZXdOY6?Ok!sGhUIU}sf$KG z-_GP3U8nO{a&D68fhh{ZBeKVn8);UlrYa_F9+K9VvZ3R%U_&J59-1W6%>18BVo3}< z%u9dCJPL5Pt!!lP6|QRg7}Z(l*bdBmAsM{u5b98|>@ZZ?y@tyHgrGhZIMy>l0tGId z#L63@%aSC{*T5(PT1%N*f48;0A=HF!w|%1MGs4^p&p1}L~>7s%3$uH zch7L}xs?3Yg@FV02Yxk!ltEFKy#$%V)F6fMC<_<8$@Yb!?%c2FQGiP-Vj%#TdYD zR1eDqiPSG0ooj&3HKyBw#Hy%S9bJ%^_+rArf<#3lfNwY?$ZQ%?t*Epv1c9*+R3x&^`=slY$E}nb6u?{_6PU2Xxu`#l;2C*+6rz;(c+T*=9o6{l9#8 zUMtcTuGyie5GGONfFU3nd7vZwp}nQf+@&*LC=)&&>oVRsGJF8;z*yU|S~%&LdmzO1 zkX3jAoYG&TY)a=|$o-{8uszsf>dK+0j3_CiKiva8<;D=V9~5pn;SV3yQ4EB@JY|;4 z0X^adta7tXyT31nQAYQg2m?(`GDuc1+6w8-A`{Y^J~lKZ zr&!GeUa%t@3sd<}Q+|cJ+!Tg|M@|gG%-Dcof=fU}rVmdvj`hVpj$wfjK5vU>7Xw9^ zX(GzHQ10Nh5L{%TInrTsc-X}2*HW4*e+RKkcx({2d?BJl;vJd6%g2a9;`$my!1#I( z)I&=t9r|d>r}dZPQM-y0i&v{c-Lk=D3{MN%Rb!keSN}a^MT;7!QNpr&Oj99>6X9fr ze{2kbb{{q6D%<{r3nz~UVe`m`ay-;~)bfLB)F8&LA^Cb3gvFUpQOESI9BqbbdW~L| z-0DxG`$wvz_4#_*Fs0TVWFPBkA1o-Sn`>g)MnXHY=H&&&Y&EG`OBXECUc({>7#`6# zl9`TM!xAfp6n7q*5YNVHox@6=GM=9j=jNv;vM223hF!fT#Fz?~oKM+isO>EpyRj;B zMGB&K&OKhqcxAU5rtnT#K@Ezx_j=)cqHwOlJYTgp%+EiW?Ai@9^Yago8?L3&_<2m9 z;uUOH<_4(^_6)1VY<%kn7%y`5!W?p?T3jmgq!D)N5Wx|&u`_~1=iYF`#BI=cY}!L8 zN^er_%+6C4OpIwEg34|j> zDA0kYLDljs8=U2K#vATl!!NAjb6xsc7_*ETCW{2eQgacO=mJ z)009A)k1#u450V(={zG0WgbxhbBfu>aNI|I98fCz%*hcWW1qN&hu5NUpafNkw)3`| z6yj^rdkWl{ZuCt68c%|GcaTE0&Q+O0o)C$011B>RHS;Y-YL@T_{`z^4CHM9hsg_6k z=e*F-3A-fK#VmPiT|%Ski-vQKalu%t)#cJS;7_Cvuuacnz>Q^9aMH#215xc<+g{?DTRXA*9x|1lEU1P2h_ z`D>-Gi72Gf|3kxOsQ=eF;UTv8V933#>t(!)cOg4gt=8wD6~z}7@|VrfB?Jg-%OvsW zN=2b_q@8tiO6-%Sm#Ly)ysQ%o z0s#IX#~es=qWpGGJ6Gyb+BF`elX|G>Gn!KdE3SCM#P097D+l-@$lIJj$Ro|Bl1+WAp(98homnVTfGVf(4q)IarKLppXA5B38l5 z^Ce0$f6Rj@8F0-?i(w@qYihh{lL#R@hjsDvSg|V6FyF-0V@#ghCBMo%R>gQPWKB7iZU*+3Zl-UmXryPp?9)`)K)+P_5UjFj>=S zpNxyy?2)v8!kqNG)%H-@Z(az_dGIh1UmYJzdnX2acxT#QyS=xrV1Hv4tEK&uw)fbE z_SF1P+GCmfY<6GTU*CICvA*}>VvR3HGGJ$l6N_YyD9gdE>02%W)V2J+SpUzTDb_2u zeZx$@pjQ5$KZEgjBBnD2UD317N{ItI@kXpK0C{n-VFpdLwwL5g`Dn2mTHiZxg00F@ zqHLw08|(y5!>C+pv>8!G$X0Q3FDXt^8DK0nKui)_5qwh2c_l5TID?t=CauKCR85ss z_+vG!<83|W^$w}RkP8`Z7KJJ$PEe3!g41&6KOtV-PYC_AniMC5d&lkoVt8=$j%oss z6C5%jMxH|gMw8x)1!763CLVy)LZ-EO?HqHy(zf{wr%cCg)J^6+v zas}d>CVY!Pb03?wylJ-{OT~g22Ew`nAL-` zm#J&KRd>vAz{^&2WEEt0%)D0g0wDo1hA&9|x}S{XulH8Vjo~4ct`3ilKJ<#0{!95B zu)@KAhM|g8Bqh96_L8*xs+T88_{-a&ElwYjvpNudZxpL$x&4{n`Rgx|ZJrma@ex@b zl)+uA1EWEA@ERjSxQ^&<)@$&;qD1i@j<;3^*>YSoG_y(_6{`be3GRr{3dQE19%&9B z7;H`enPichwy4v+6Fid(Iq)$Mt-#$1)PY5@rX<+R0>3tf2;7ASh7-iF=nw@uPVizL z+|$<$iW4Hkiql|NtY}V*VQXU8%5Ew@!BZkAUC}*WafVe76AyH#X$3k|7>2d9fU>YN zY;DM}R*Dh6;-Xm#zvtSo*Azsx$jvD#qe*XT;i9>ID@;|m;QQc! znfI|Bj@GK$G8l&BDfq&;S-2rj#CkqJkiweQb2Ofb>WQ=vMYT2}swb*5F&PA?PBd(k zJwK72*SzN^Mp0Gavgc*tg`!$^PU2`7D7$BB&rEuwuJr=^($2B=0wjEKF^7=@aWo6!`HHL2LB%8e8X33 z9dpw8jKx}XV^iG#56?E`u*!q5;kFzmq)4f#ZfKg`nkY+Z8Ux7B7+hJB+juyLXuJL#w$wA5C}Pp(B>tAstEPHZZVu7l2{L(-;`&pe4buWx7VN6wJ<#Vm92P ztMI?k%_lH1pR%h1`q)RA(Xo692X@)OOIg6J4S)fJy_Ea zWk&Z2@>;}yYthv{h}ExN6nOSfteNcO-quxnx{%TYK70Rf-YqYK((TDB*?IPO-+=plf|W5QjR9n z)Z_vzX>T#Bta!nR)F27gTky51xU#fM@aho>ZVgNZb{nO%R6#3TG8aygjQ~t+1-#1` z=VZTe_FSm@*)NrLMJwFMDcdk0lr?Ex;*j8^*E0TI0&|$QJvyQRTUK5#T6r&Fb&z=P zn`P~B{3g}|>bTK8_2LwZ0+1~kd39yv(XMz@6&drYRytyn5U6e`15G^Od-P^Gv&~w2 zr$QvP9d0R&$s#FEmG4x{e&B#!CI=+gj&_!&!Nshq=zdCqD0XMT9D-;GRA>ZEh9*jn zBIg2MXayXBnoCJGSy9f1h0q8sE6%G;7JD~FaCM6wc_YCaKe%%`<{4QyfacYU)js+i4o3NhvG zUt~bG@gV!{qH{KWgjBmm`TOKhc0cW=U%2&clHzsYprR(-&-h(n*u)2qR4}aS{;_TX zC0t_nzi9VQ@cWkI`^*8AJd?*#1rOM~=`A;@nV8(Qc()OdvfIMw3)5|8GZchLJR~Fk z9xC3Y`saN`fK=unSatUxSX3!QL%e0rb?BrSq;g`tk^w~X8sT1*7M?fZKy(L&?sIGM zv89@XKftj!TmF^tkZP7jz}*dU|G?kY)c@oD4Yd>mL7$2)zpj)B5{Ed|IJ@3wIBFivvPeWZlt)gG(cf4Z%fO(gDv$!=>zaBojt zFWpHhOBUJg4nyW48B`i3>8=7fW&kjN*QLH1eT$V#LqI3XkeBlxL)JneFA9N+zDVa5 zf06keaNwKULGDHg(JT9!P7^ve(f$+$V=h?DMu&I63v%IE-OMuK$k>Z`aT5=l&e7&! zd#*CI)WVNW6l;~mR_tFUZCf^7i!o=ON^|VWhD^YTo;7kssW;69tqbR@ zU~I8lmW(Di?W(b_pN9=VuEg1tA>qVxWQT?M(^*|D4VddqJ=k=PQDpuIhN7*XvLHe@ zau;gPj5ckIW-j>T1GWN%Fl+-_)LFW89!oF?z(HRFVam;*DGY2*)hK0UhRPH&J)oJ< ziUAWIF-^NE9FP(p2p0Z5ETaKT3w2*9d3mdZ!i6O>x!>aI(X^xj?4~xPDh8VIwnfAE zpw4Be)RJO`SCmW<85)+c1Z96jrSQveM@nW_G;9sN(TDqv?oa39+(otZ$cntWKj-_l z!<8+S_)v_@o~OzefO9?hRcKrKx2R3?mDnV=n2Pp?RE#0XVK*EBD!ES!dOOnr`Nfja zMYcuv59_qA&4`Ma#>Qg1>7udqdQjO_8gv80M2ZMI^VIyw4^q50MZHs7(>M2<7j-%z z!ILT<^;-ob|L%Tm=1ebJw1^>UZHJtyw@?ljio*1s2lDf0Q6=yp=%3mDkKe4IX&r$VON@@ zNVU*mfboW<$y5AYbc_G0T3?qd_l}&s}}0oo~Qe$5E;@vy*7kC zJ$X@wFGvdQ>qKw%tx@(6tip7bn3v@yJfazR#q)|7|7bza(9{JRi!9lQ0Sa(0LZ^r& z#C;`a8G+RsC-H#3VvNoTjbPy^nS**h)BID8Vezv~rxg)I0Q>ra*u-39zJO7*i8dP`0@Z zHsV}FQ9Cr1c!Eyludl@5VTCcC@%yYq3EFA^?SCYqZX6UIqc z5>V!-(=ZOsW`3FoN_l*+MqVJ~&Zr?^LxvxgvyC;&q#7mxArHnRmT|JlQA}wn<#l*0 zFuY`2p%=&34%%!K<6gcUeSoB3vN1QSd4-h8gVgiQhV=l(A}b50J#7l@PSTv*oT)Zi zTNQ9x4Qx$~`BQeqoMLmh!tgxS9AfP?ZG~Y|!GvbHCeRimHd!9{T`@`vP-CkC2Mua% zASSU@Z0B3kS8Oo1rCRU=&)|R0$6Rv{3j0W*#Z2II-q0hYw!M zGDYllA%@hsI`#q&b83K3!u<6&9Jp5d%8jw9QjjqpSJf&NpqSEV59-io zO1)FHN$i-=k&t7FEpE&p@0J>^6kNecVoAxoPDL7bI74S7tuMFoDe`+##Nss27C~yfHn0ApkwEzWo zqos*D-Y0AXd91pEj2F2*mu;Z8k*4FoF2GQ_j{Q<@5= zo?>dI;G<6TmcfgZOGzgx$3YiiO3>?|Z4`8V+dkW{(Pb zeL2txCoAF_5sdjzG|un0X8IU0zyqGOktWxzq9Z;Nez{3l!JkU+wdRUW89_=4UMxD> z`%~x3xkHD=iD!jpA>7ua$H(3PoWZ}M{MdGRC*QIa{)L-KV7SRnv*BqvIMvf)`T##v zaA`!t*cE!DPIYPN12StnM!zg^iIik zQxtBT-EWHRsJdtx+iBjaXdyNW`dJ_C=Za(PCtmw<{dA^Wyq~tM?F#Q_{p-|E=me(- z3auH@4x9D!XSUn?7UPnhI#Ypuo0VvZy} zMQiEyg@ZmQqW!1}_rszc@V8%kQP?Q(N)BlJO&svQW;tMXZ{&ayFIP`= zC$Lo-rso(r7}&J2J9$L}^7+sNPOQellyA^cPIeukAJ6!;eIXP+&Bz1LL18nH8CRa6 zCF5J#gfPB{>aiSRJ$seSi7+5o);={z^-%pQvBLBbo*q&T*?P*r(_(en?{~JtQ*k*n z<^zRRpbGNsJ=Ptw$whA^4>wxLRZQpAY+*jzFW^Ude~Xn=Z3?wa4(p()SL;7XRI8L6 zwq}Mrj|S;sY!cHuk?F=vIwjk}bRPaFV>!jwXzS&Up2TNN080~M3vSNVQ&u$@QX$|* z@fY`D5HXgF4UrYYLdzwx}ookraU0Y}oeNtUK>z!fv(&4CuKSNp3&s z)M6%4OD303m~ao(A-MVclkE@-G9@t}ll}~B)pF8BbMB#kMsmbJflUNU z1u+ra1e%y5X8B+>a>V5OSpE%VeX3UzDizN-!6ftKu+dUJ#XGW^NJ$F0CXPMMYzbnr z$VrW%A`4q%){1`fHaUeH>wLb#hpZSjO%aKET+1NnbcoKgtVXD=$Wpc1fz+{rFyN|B z^T6H}1F9fTBLfmy9OFx?nap+S=D+suU9XpiD26zI^n|4m#$2=2Xgoo{JC*JouBRVc zlhq0Mo?==qu#r*b3QvT{wiFgB(lTA%yD%)fpB5!+>SaFb7B8N4x2nY{VoSn7^MIQm?_N>M$M4U%|>o6FO9s z&f!pjL&1;Nk0N5D4g`r<$nWf*n_ibUQvGE7uh#8Uf2uVjkSjDgw>oz2udH+3*ts=r z$Lj;#R)nq?Q)1lK1v*pD6K7Iv6U_kv6L;| zAHdfIeE0`t08ufYI5V;+yi5U<5jLR;e1-x{U{D}uoKdo02`C<5!>nkpQ}k6W6w0=g z_4k$6=XpAo$dHHkqU6Qr4-h7R1rU%xUW|}bb`FLRl28cLGlCSSz$9Xrpp3i#TgW*T zzfpxaAY-sB_`s3y<22VmSBMum_DmMb29&z2W)UN2Jj1^WS-(0HPU4#Z)tM1yEXZpg z%zk;JRC{VZi(4HV{*W40475PU(c;GAZ&4ld78hlAla5JtHw^e@F9JwTc!j;N`b<;+ zm0&IUtuu2?EW}$}6{9FeSiy+(hTUh3&C;>wHk2sA-b*s0I$Xss3kO0R#v31-vuZlVJO4(KhhnCHj0RN!1BTr#=>!2lIeamqkmfDnzt&x?JjV5DJ-@RSYP z3dBnINz>K23s^}p&rlWS!P;-5Wml%j_>Xv@tV#Q68pD!D*uB%Z%Yp^vbJVYC7V7$G zYpou|*|xtMDOGBk|7@iyv6O%*31-8~K&dNyqY>*PHo+3d8%+y4o1y3|%i%N*j2x_( zk|%(*qyf2*WfU2xlrdYCddx2?s5ma9e4@k$zyXAc(g?ys)}s=_w1iL}mhmEVg^8Y< z40($@&dcotN;+8tW4B!lE4c}vCtsejPtEk&h~$| z?SdvOE9cmD=LiZq*c}EAA1%!G9u6x66)Ar?Hm>ZkH2ew!jIo=VkfqT8(ao*N*6-Mw zbZlJks#7v8J?V z*hs1-YTk1>pOS%5&Jc{YnZ;_x?F;2VOu!b)jrWYkyk{S=o=JNS04#Aa4qz4)cT|`V zUq+y&kJ^ez4+n2`+}J1^OdPSv%BMSdjwd_#!2J=nU~0I5$qN=}X28XhY~V?18?zo5 zq%Ay2n_=~^NZY2z6I(FV>$obXyHoIDqjaw?z!B8;S4vLm_}GR2+0krmhf*f8c3`qU z%=;?9b(~^lui+54bm~$|BRr_=n*vXhoC6RP(=D<>a3}`s`)XOekFZeehSK|QgnPW= zi+JyCe)obAXjHd0I03>EE}GxSUBDAu50@KD4dA-ND?AEZ(OO!h&vIy~bpHMKD>zY* zKf%nfI{Sb()1B-g{fa#-aZTZg9zNvns)tCUDhBiAy3<8bzhoEbw4k}olU0q8`1}#udRkZCe6Rkv68oOoEG)8*V8g>vhXF&$C+ud16QcUWL|8MPmq1%8tT0 zvsc$UpQY6BcJJYT*6wn)nVlrIGepRejCXIz&EEfkXbtL;9eK;m@M}m* zoR3(bHt;C*D+@%hh^J@>el?n4f^9{V3AP;(%*EJtNZ$cfkB4oS>ehgJ2DLAVqKB72 z5fTa83(=;18m4`e*J0^U3Kk$sP7#<|qD>+Ttj~9?MVM}B#Yf2&ieg~$f)dk_yC0DD zJ9kJ;xEM83>W)WC_(l}vM7J@DT}zTnAVCqEn4m1tphV(%w1)!Ju-2B*WE|O!=r%;T z`d<>=aXmO{ogoJnHk_6DbsEi?TfsyFLdG}C5ei3=xj2HgTPuXX)m(n6lXSOwu7ps1yyZ4qq$Gfr=oF}NS+VBnt``jPL4js$;d2? zi(S|lOjam9mY5#K1U^5`yEcgi+db?y2K&&E#i#goz&^vY|EzSXtulb$a2#3B@0J7u zd;9>QZsasZ`HqD#nu_K!Qz;TN7a-HH!!6k#+~{>={J;ZPXhp`HDW!4=0HstEbQBb@ zyk7^jfMZp$9AI)ugBX}Xn`p(57g1T6Q{>2^X30k~vl-!@{;grHid(Wf{K;1!|V0N|jdI zQHx`qZ_Zu?ilcbFn%?Au?3I|Uw>7n+to#++h4Me(hwtNXn{vaon4d{}4OMw*2AykF z9F`)u7$Zn;ViQHNu<)FLb+6@?6O)?gg>8t-h@de|lZtrHDi7A#PO($8w=a0Zrw0je z5%n5~SEu#SjPL7;nVg{rVlfxi$M6@WIq)3{Amu;bxRNId0ohSR1hbh<&1mDM8Kue9 zCPXVD;G2kd^qO{lZ7?OG!Auu6@ky}8_p2i#qOl{+#}Z2=aEPE3)jeduFzH$g&wlkQ zZ<=G*OwXKP!I~SiM=7BcT0qujN19$MSZb$!a8ERKF@Ury@H$3Aa?3Qk%p(Nq5p6~?IQ?xEdLcT)7qUx`IqKb8%Z)yU?2 zW{x9QQdn+|ryc-@y*N|&+s_Do0~Oveso<1g^U&ko-;*wl)^jZTdrIg>-|5)Z_%^0c znIgy*c;j51vi&`+|2;6lco|i6`t{k>v)t=rsa-vH4N1Uw5kv6+4ek{rK#4xreMApS zM(tG>U+d<`KBAfvDEXk=H0tZJq3LpfoJZGTB#lD)Gr3dM|FB_050>4jYJA6~;poT| ztMmJf@_tRFF#fdr*>J}t668{baU`0y24mjr{+*2$t=~+ov206d#|(I- ztD|!$ri>R};z}xFyY2B#;9FC#0uAMlevH}CoJv)Uwadh&%^7&Riv0jFZwcp_Lkzzt z1#SF2+MIZg4KY9DJqBkb=xYf;{urGM)$q8EWp?Z9z_>#QTKvnXCE5;Pk|#ZyQ@_*( zxWrLo$9h;n)`}n$s)gex)ne;6(sU41Kv`8vu?-YcM|`*?^iPFGX^o{)ztr%QYEVig zc`ue(Y4zS{K%gJG|6tG2vO~&ffS_L4M?x}b5~+7xGqzMY>_L14nXVTp)R0@k&SsfW!WwBiMGaPkZEiN)~#Z$aJT*r zV@DCrAxF3V)7VbYX+#}d;vAshj^hk&Fz%t_kss)Ltgqa14%RL^$Ci0z;Cp&VNmkTHV}aHimX>&X=LHk@*CxUO4NGOXY)r6K6b!MIFfovi1%mMs zRi!=*8LU{0yZY1jsZ;CTNfX5hLyXoreFU)lRnF`?f#*ski<9e|!3Z)?a6NHX5kjG|;%=C2>_~ zvh|ifNtj?La57*H-N(Pkm5z*WpyiQ#?u;Vy{p!{yKb&7zByWCSzs^!4*1bKRT!kx~ z?hOy#a(F(OV{aaPAV}+F2sqrne+TpVUU0Gq8K+tUn{0jd{=azn_cQKPd%Pzz9}HC4 zyd``tkrUxyXtAe~LC4yy9jyVXp`w~i)Qnd`3}+l%2}Ep$Tqv5U5$U&OC9=CMj=|^~ z@ey9aGT!c6B}jlj@=1nD>qynUS46WmYyT}l6RNJVXp_&w&fqVS*%EjBmB&T`pdstdI*Zar?PG zu?o?O&${ly8Rd$kV>zmd9~Au*fZ{&4Dck6!d>84MT4%SLg{^}a(r|t2ZQ@t^=mm#4 zomt+W^}O66w^{bk@m$f84X`Esq%X9k#9T-m9tJazTtKrOa#gLb@>Quxv?w2C3@uFI zCcRX(gBFY^nHM#n#CeO*@l~<9@T!<(_qOlg-*c})E9xug3XL0vu&f@ORoWW9*j zAcDoE$Uq$hQ34~r%fxq}8QvT49A}Z|IEy^T z*?{L1oi`l7a~J}u39WCV3WW5^FonwcY*@))z`mSfP+5P0lD!{P^iGz>AO^cp4mAc% z8N=7SwBqoX@dXb?lf4I12sdjiNnRk3o_IbWy(dS3or0k@&xeiCHZ`}oq_E{Ipm)_- zi$bvWS!Pw2L5;(D4o5umeH{|59WG#x8k3%y@xbg7nskFXrqRnsxugKt;o;WGnFOh8 z;jm)l3P9Jw0e|yVG^Wb5>95Z8m8Em-Oy8Q{VrQByc_q)Nk{zIbT`$5IHE2O`gnsZP zHM<2N

P$H>c^MVrPZFFOU=-;YzcK?-+u=On=HA+`eoN#32_wx4ukn{9W$l&>H(9 zL`-`kiaF{eWRZ~NbSJ}zCJ0ig5yOvEO+<#>QpjwGA5@V&lu1owi3c&JC_PkK@5RV0 z*iXKYEPcDaMtQta_Ez4ZWUtxmanSB9BqN|mx$p=D;zi^X!(NhjPIx0u4 z$o&q_!V;UpUnC%C1#=Qu(B#|89_DS5m~!1eU#5Gg>_bUaq@Qx);;8a)J)4eEGa1oe zwEQ9Fr&J{m1Fx5Mvlc5ZZ1K#mXM@;b31EbK<))PL5sTfzt{LnalCJSi9mhge|tm*up5-TO6p}o;CzZ8x<<|6aC zU^Yzh+!)DM)Pd_|&}mpv7KD@?pM8W!qoVt8p0-QPJpzlF%djHYmKDlyjoZO^%YWH> zQ~Yn59o+QEPEiMwe=w(uso^#R`=W2>D}&>6y6w?9U67>e>kU+YsIt_KnFjHg}gjhkU3^vz(KYKk{rQdEEW^wrfiITN)?^`8=h~wO;XTHVc;@! zj1;}_Q(w3IBm||A!7!y32g6i4HU(-R{VzNPx+qD$F7trPQROG|j5+^uLDFG4yKc3Z zQX*1fTO+wflT)p*lwV~Crp6O;4fwja$A{!~Tdu;}ZJ_;>vTuvZOvnNgcQaUa69ZKz zMc^@MCAVqa%x%7QBrj5lCo>GD!j@t0)djv=o?F%i$I50^)Wd zs!|D3O2w(2nyvE>=;mRqDRu5NP$L|=N<1mhQ^i@yD|N;oa{gr(+EataaQ)OLR^YK1B!?g`gbjm91hx0H?y zL?X}hMz)%kbP8O?46Tc_G#x2&mO7xt6&tkDGD|+=IoC-40&0^Hpc40K=QvnmK?(V< zeB^n63IW36mDX45kunyFA|8DCZulTCRHcyDH zFtYQG?Tk-~n{RU~p|QeEVN0J<>nysz?UX$1CiYQpnl$GJ=#5|=|1Db6r!?RO`^hR8 zdgaCFu?iwv7+a*_aMJw+5u1IKG{o<|g0M}f@99mG{S=;Jh}H3nI%0DFosNv;Ee=`B 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

_)_ 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 + +// Type of Attribute +CREATE (type_attr)-[:TYPE]->(type_type) + +// Type of Entity +CREATE (type_ent)-[:TYPE]->(type_type) + +// Type of Relation +CREATE (type_rel)-[:TYPE]->(type_type) + +// Type of RelationType +CREATE (type_rel_type)-[:TYPE]->(type_type) + +// Attributes and relations of the Entity Type +CREATE (type_ent)-[:ATTRIBUTE]->(attr_name) +CREATE (type_ent)-[:RELATION_TYPE]->(rel_type_type) +CREATE (type_ent)-[:ATTRIBUTE]->(attr_desc) +CREATE (type_ent)-[:ATTRIBUTE]->(attr_cover) +CREATE (type_ent)-[:RELATION_TYPE]->(rel_type_content) + +// Attributes of the Type Type +CREATE (type_type)-[:RELATION_TYPE]->(rel_type_attr) +CREATE (type_type)-[:RELATION_TYPE]->(rel_type_rel_type) + +// // Attributes of the Attribute Type +CREATE (type_attr)-[:ATTRIBUTE]->(attr_value_type) + +// // Attributes of the Relation Type +CREATE (type_rel)-[:ATTRIBUTE]->(attr_from_ent) +CREATE (type_rel)-[:ATTRIBUTE]->(attr_to_ent) +CREATE (type_rel)-[:ATTRIBUTE]->(attr_to_space) +CREATE (type_rel)-[:ATTRIBUTE]->(attr_index) + +// // Attributes of the RelationType Type +CREATE (type_rel_type)-[:RELATION_TYPE]->(rel_type_rel_value_type) + +// // Value types of the Native Types +// CREATE (attr_name) -[:VALUE_TYPE]-> (type_text) +// CREATE (rel_type_type) -[:RELATION_VALUE_TYPE]-> (rel_type) +// CREATE (attr_desc) -[:VALUE_TYPE]-> (type_text) +// CREATE (attr_cover) -[:VALUE_TYPE]-> (type_image) +// CREATE (rel_content) -[:RELATION_VALUE_TYPE]-> (type_block) + +// (:Type {name: "Type"}) -[:RELATION_TYPE]-> (:RelationType {name: "Attribute"}) -[:RELATION_VALUE_TYPE]-> (:Type {name: "Attribute"}) + +// (:Type {name: "Attribute"}) -[:ATTRIBUTE]-> (:Attribute {name: "Value type"}) + +// (:Type {name: "Foo"}) -[:ATTRIBUTE]-> (:Attribute {name: "Bar"}) -[:VALUE_TYPE]-> (:Type {name: "Baz"}) + +// -> + +// (:Foo { +// bar: Baz +// }) + +// (:Type {name: "Foo"}) -[:RELATION_TYPE]-> (:RelationType {name: "Bar"}) -[:RELATION_VALUE_TYPE]-> (:Type {name: "Baz"}) + +// -> + +// (:Foo) -[:BAR]-> (:Baz) \ No newline at end of file diff --git a/indexer/resources/bootstrap_3.cypher b/indexer/resources/bootstrap_3.cypher new file mode 100644 index 0000000..a7efe36 --- /dev/null +++ b/indexer/resources/bootstrap_3.cypher @@ -0,0 +1,61 @@ +// ================================================================ +// Step 0: Type Type +// ================================================================ +CREATE (type_type:Type { + name: 'Type', + id: '8f151ba4de204e3c9cb499ddf96f48f1' +}) +CREATE (type_type) -[:TYPE]-> (type_type) + +// ================================================================ +// Step 1: Attributes +// ================================================================ +CREATE (type_attr:Type { + name: 'Attribute', + id: '808a04ceb21c4d888ad12e240613e5ca', +}) +CREATE (type_attr) -[:TYPE]-> (type_type) + +CREATE (attr_val_type:Attribute { + name: 'Value Type', + id: 'ee26ef23f7f14eb6b7423b0fa38c1fd8', + description: 'The Type a Triple for this Attribute should have. There are Entities for the Native Types.', +}) +CREATE (type_attr) -[:ATTRIBUTE]-> (attr_val_type) + +// ================================================================ +// Step 2: Relation Type +// ================================================================ +CREATE (type_rel:Type { + name: 'Relation', + id: 'c167ef23fb2a40449ed945123ce7d2a9' +}) +CREATE (type_rel) -[:TYPE]-> (type_type) + +// ================================================================ +// Step 2: Relation Type Type +// ================================================================ +CREATE (type_rel_type:Type { + name: 'Relation Type', + id: '14611456b4664cab920d2245f59ce828' +}) +CREATE (type_rel_type) -[:TYPE]-> (type_type) + +CREATE (attr_rel_value_type:) + +CREATE (rel_type_rel_type:RelationType { + name: 'Relation Type', + id: '01412f8381894ab1836565c7fd358cc1' +}) +CREATE (rel_type_attr:RelationType { + name: 'Attribute', + id: 'd747a35a6aa14f468f76e6c2064c7036' +}) +CREATE (type_type) -[:RELATION_TYPE]-> (rel_type_rel_type) +CREATE (type_type) -[:RELATION_TYPE]-> (rel_type_attr) + + + +// ================================================================ +// Step 1 +// ================================================================ \ No newline at end of file diff --git a/indexer/resources/dump.yaml b/indexer/resources/dump.yaml new file mode 100644 index 0000000..83fbaf2 --- /dev/null +++ b/indexer/resources/dump.yaml @@ -0,0 +1,8824 @@ +SetTriple: e8010874d3304a4d990762e89a19371a, Description, Value { r#type: Text, value: "A website URL with https://" } +SetTriple: 0390a8a6b48d4d66a3f1e515ea8fe71e, Description, Value { r#type: Text, value: "Value type for text values" } +SetTriple: 0390a8a6b48d4d66a3f1e515ea8fe71e, Name, Value { r#type: Text, value: "Text" } +SetTriple: 1fe3b5003f7844058a5728c36b06bd99, Description, Value { r#type: Text, value: "Value type for relationships" } +SetTriple: 1fe3b5003f7844058a5728c36b06bd99, Name, Value { r#type: Text, value: "Relation" } +SetTriple: e8010874d3304a4d990762e89a19371a, Name, Value { r#type: Text, value: "Web URL" } +SetTriple: 3ad4df27132f4ef687f8070f063b074c, 457a27af7b0b485cac07aa37756adafa, Value { r#type: Text, value: "" } +SetTriple: c9935cc57e2e4be68c3cd7acc6ed7b12, Name, Value { r#type: Text, value: "Location" } +SetTriple: Location, Description, Value { r#type: Text, value: "A city, state, or country" } +SetTriple: 58d9bb94f15747308a4478e6fe8f8a22, Name, Value { r#type: Text, value: "Company" } +SetTriple: 457a27af7b0b485cac07aa37756adafa, Name, Value { r#type: Text, value: "Image" } +SetTriple: Company, Description, Value { r#type: Text, value: "A reference to a company" } +SetTriple: 7816be62a9cf4684a40174d23a43ae49, Image, Value { r#type: Text, value: "https://cdn.discordapp.com/attachments/882371689244143687/1068584818910167101/abundance.png" } +SetTriple: f724b80589e1424bb149acff9ecfd0f7, Description, Value { r#type: Text, value: "A web URL to a website" } +SetTriple: f724b80589e1424bb149acff9ecfd0f7, Name, Value { r#type: Text, value: "Website" } +SetTriple: 7b91dc2269ac4c938b10290927cd7ef5, Image, Value { r#type: Text, value: "https://cdn.discordapp.com/attachments/882371689244143687/1068584843316830249/end-homelessness.png" } +SetTriple: 71a5569e688e4e0f8eb0d8c361211e7c, Description, Value { r#type: Text, value: "A web URL to a twitter account" } +SetTriple: a49d054e11a6494cbbe1ee6d3507663c, Image, Value { r#type: Text, value: "https://images.unsplash.com/photo-1617791160536-598cf32026fb" } +SetTriple: 3ad4df27132f4ef687f8070f063b074c, Image, Value { r#type: Text, value: "https://cdn.discordapp.com/attachments/1010259815395754147/1047945562336534588/SF-image.png" } +SetTriple: 3ad4df27132f4ef687f8070f063b074c, Image, Value { r#type: Text, value: "" } +SetTriple: 82ae5e2be07d4461a88b1158931e69b8, Image, Value { r#type: Text, value: "https://images.unsplash.com/photo-1535914254981-b5012eebbd15" } +SetTriple: e6eb4528cb4d45838efb1791f698b8f8, Description, Value { r#type: Text, value: "Enforces the type of relationship values between entities." } +SetTriple: e6eb4528cb4d45838efb1791f698b8f8, Name, Value { r#type: Text, value: "Value type" } +SetTriple: d7225a51aa8c42d59bb056f8a16a78f0, Name, Value { r#type: Text, value: "Transitional Housing in San Francisco Bay Area" } +SetTriple: f88047cebd8d4fbf83f658e84ee533e4, Description, Value { r#type: Text, value: "Content of a text block" } +SetTriple: Project, Description, Value { r#type: Text, value: "A company, protocol, or non profit." } +SetTriple: 7314c5546f274bfe9b650a0193f664e0, Description, Value { r#type: Text, value: "A defining symbol for a brand used as an avatar." } +SetTriple: 9cc8a65ddf924c0c8d9024980e822dc0, Description, Value { r#type: Text, value: "A legal entity with a specific mission. " } +SetTriple: bc2a4e5b115e44e99758c639a13f32a4, Description, Value { r#type: Text, value: "An available job at a company" } +SetTriple: dd10f854888f453bb789622d8e1df861, Description, Value { r#type: Text, value: "An ability that's learned through training and practice" } +SetTriple: 63352fac43ee4dbca4cb3c3827d15208, Description, Value { r#type: Text, value: "A place where an event is taking place" } +SetTriple: 38fea29845a648d6bf253c608dcca3fb, Description, Value { r#type: Text, value: "An in person or online gathering" } +SetTriple: f6e3fc58555f4ca793407d3d282b1841, Description, Value { r#type: Text, value: "The project that's organizing an event" } +SetTriple: f6e3fc58555f4ca793407d3d282b1841, Description, Value { r#type: Text, value: "The projects that are organizing an event" } +SetTriple: 3ad4df27132f4ef687f8070f063b074c, Space, Value { r#type: Text, value: "0xc46618C200f02EF1EEA28923FC3828301e63C4Bd" } +SetTriple: 82ae5e2be07d4461a88b1158931e69b8, Space, Value { r#type: Text, value: "0xe3d08763498e3247EC00A481F199B018f2148723" } +SetTriple: 3ad4df27132f4ef687f8070f063b074c, Image, Value { r#type: Text, value: "" } +SetTriple: 71a5569e688e4e0f8eb0d8c361211e7c, Name, Value { r#type: Text, value: "Twitter" } +SetTriple: 2faf55152ec84d6eac9d11f6d06a57da, Description, Value { r#type: Text, value: "The categories that a project or thing belongs to" } +SetTriple: 2faf55152ec84d6eac9d11f6d06a57da, Name, Value { r#type: Text, value: "Categories" } +SetTriple: Transitional Housing in San Francisco Bay Area, Image, Value { r#type: Text, value: "https://cdn.discordapp.com/attachments/1070516168827346944/1088205475130118204/CF5E6AF1-154B-435D-9C0B-9FA9D674F4BC.jpg" } +SetTriple: 235ba0e8dc7e4bdda1e16d0d4497f133, Name, Value { r#type: Text, value: "Avatar" } +SetTriple: Cover, Name, Value { r#type: Text, value: "Cover" } +SetTriple: f71912463dca4e778a79d9cdc9804127, Description, Value { r#type: Text, value: "A future result worth striving to attain" } +SetTriple: f71912463dca4e778a79d9cdc9804127, Name, Value { r#type: Text, value: "Goal" } +SetTriple: Transitional Housing in San Francisco Bay Area, Name, Value { r#type: Text, value: "Transitional Housing in San Francisco" } +SetTriple: Transitional Housing in San Francisco, Space, Value { r#type: Text, value: "0xdb1c4a316933cd481860cfCa078eE07ea7Ad4EdD" } +SetTriple: dd10f854888f453bb789622d8e1df861, Name, Value { r#type: Text, value: "Skill" } +SetTriple: f6e3fc58555f4ca793407d3d282b1841, Name, Value { r#type: Text, value: "Organizers" } +SetTriple: Organizers, Name, Value { r#type: Text, value: "Organizer" } +SetTriple: 38fea29845a648d6bf253c608dcca3fb, Name, Value { r#type: Text, value: "Event" } +SetTriple: 63352fac43ee4dbca4cb3c3827d15208, Name, Value { r#type: Text, value: "Venue" } +SetTriple: Venue, Name, Value { r#type: Text, value: "" } +SetTriple: , Name, Value { r#type: Text, value: "A place where an event is taking place" } +SetTriple: df7d108c6c3c4cbbb93ee318d12de1fa, Name, Value { r#type: Text, value: "Skills" } +SetTriple: 7314c5546f274bfe9b650a0193f664e0, Name, Value { r#type: Text, value: "Logo" } +SetTriple: f88047cebd8d4fbf83f658e84ee533e4, Description, Value { r#type: Text, value: "" } +SetTriple: f88047cebd8d4fbf83f658e84ee533e4, Description, Value { r#type: Text, value: "Editor content for a text block" } +SetTriple: Image, Name, Value { r#type: Text, value: "Image" } +SetTriple: be74597305a94cd0a46d1c5538270faf, Name, Value { r#type: Text, value: "Foreign Types" } +SetTriple: Skills, Name, Value { r#type: Text, value: "Skill" } +SetTriple: 530f696c94a84c5fa881649e456e5e34, Description, Value { r#type: Text, value: "The job position a person currently holds" } +SetTriple: 6904c3bbed784ee9aa6075028dbdc2cd, Description, Value { r#type: Text, value: "A reference to a role" } +SetTriple: b6798099627c440c9b744311a3cd74ed, Description, Value { r#type: Text, value: "A reference to a project" } +SetTriple: 780a62cfa2db4b7cb7dbe33dddfa1eca, Name, Value { r#type: Text, value: "Software engineer" } +SetTriple: bc2a4e5b115e44e99758c639a13f32a4, Name, Value { r#type: Text, value: "Job opening" } +SetTriple: 6ef811d51f3143079fc90ca139d99b6a, Name, Value { r#type: Text, value: "Community lead" } +SetTriple: 9cc8a65ddf924c0c8d9024980e822dc0, Name, Value { r#type: Text, value: "Company" } +SetTriple: 1dd7c5dce9cb47638f2bb715e257551f, Name, Value { r#type: Text, value: "Head of Design" } +SetTriple: Project, Name, Value { r#type: Text, value: "Project" } +SetTriple: dd4999b977f04c2ba02b5a26b233854e, Name, Value { r#type: Text, value: "Parent Entity" } +SetTriple: 0b36882dee8448999d33a592217272d2, Description, Value { r#type: Text, value: "Chief executive officer" } +SetTriple: 0b36882dee8448999d33a592217272d2, Name, Value { r#type: Text, value: "CEO" } +SetTriple: a36de44dff584511b73405f5b3911001, Description, Value { r#type: Text, value: "A role that somebody held or currently holds at an organization" } +SetTriple: a36de44dff584511b73405f5b3911001, Name, Value { r#type: Text, value: "Job function" } +SetTriple: c63271bfe4f34d74b4797dca335c280a, Name, Value { r#type: Text, value: "End date" } +SetTriple: b6009f6600b04baab86f97db7bcbb14a, Description, Value { r#type: Text, value: "When something started" } +SetTriple: Parent Entity, Name, Value { r#type: Text, value: "Entity Page" } +SetTriple: f0553d4d4838425ebcd7613bd8f475a5, Name, Value { r#type: Text, value: "Image Block" } +SetTriple: 88d5925217ae4d9aa36724710129eb47, Name, Value { r#type: Text, value: "Table Block" } +SetTriple: b6009f6600b04baab86f97db7bcbb14a, Name, Value { r#type: Text, value: "Start date" } +SetTriple: 9c1922f1d7a247d1841d234cb2f56991, Description, Value { r#type: Text, value: "A job function at an organization" } +SetTriple: 9c1922f1d7a247d1841d234cb2f56991, Name, Value { r#type: Text, value: "Role" } +SetTriple: 22c5fa356f814ba0a4df61e49f19f6cd, Description, Value { r#type: Text, value: "The time a place closes" } +SetTriple: 22c5fa356f814ba0a4df61e49f19f6cd, Name, Value { r#type: Text, value: "Closes" } +SetTriple: fad5fe12d36b4f9591bc9adc21e42dd2, Description, Value { r#type: Text, value: "The time a place opens" } +SetTriple: fad5fe12d36b4f9591bc9adc21e42dd2, Name, Value { r#type: Text, value: "Opens" } +SetTriple: 3ad4df27132f4ef687f8070f063b074c, Image, Value { r#type: Text, value: "" } +SetTriple: 170f12d63b864c74bd74dca8199fb99d, Image, Value { r#type: Text, value: "" } +SetTriple: 91b6e87f46e14668afbf48ab319ce2b1, Name, Value { r#type: Text, value: "Designer" } +SetTriple: Job function, Name, Value { r#type: Text, value: "Job position" } +SetTriple: b6798099627c440c9b744311a3cd74ed, Name, Value { r#type: Text, value: "Project" } +SetTriple: 6904c3bbed784ee9aa6075028dbdc2cd, Name, Value { r#type: Text, value: "Role" } +SetTriple: 530f696c94a84c5fa881649e456e5e34, Name, Value { r#type: Text, value: "Current role" } +SetTriple: 089bd77efeb848f0a2f84e8d1a4576be, Name, Value { r#type: Text, value: "Founder" } +SetTriple: 7902dbef1eaf47cfb7e41e300050bd03, Name, Value { r#type: Text, value: "Cofounder" } +SetTriple: Job position, Name, Value { r#type: Text, value: "Job history" } +SetTriple: 1d5d0c2adb23466ca0b09abe879df457, Name, Value { r#type: Text, value: "Space Configuration" } +SetTriple: Image Block, Name, Value { r#type: Text, value: "Block Type" } +SetTriple: f88047cebd8d4fbf83f658e84ee533e4, Name, Value { r#type: Text, value: "Content" } +SetTriple: Content, Name, Value { r#type: Text, value: "Editor Content" } +SetTriple: Editor Content, Name, Value { r#type: Text, value: "Markdown Content" } +SetTriple: 8426caa143d647d4a6f100c7c1a9a320, Name, Value { r#type: Text, value: "Text Block" } +SetTriple: 577bd9fbb29e4e2bb5f8f48aedbd26ac, Name, Value { r#type: Text, value: "Row Type" } +SetTriple: Content, Name, Value { r#type: Text, value: "Blocks" } +SetTriple: 82ae5e2be07d4461a88b1158931e69b8, Image, Value { r#type: Text, value: "" } +SetTriple: edd686eff11d4855bd49d22822a3f434, Description, Value { r#type: Text, value: "The projects a person is working on" } +SetTriple: edd686eff11d4855bd49d22822a3f434, Name, Value { r#type: Text, value: "Projects" } +SetTriple: cb36140946954676b62fc2290613a430, Name, Value { r#type: Text, value: "Phone number" } +SetTriple: 7b91dc2269ac4c938b10290927cd7ef5, Space, Value { r#type: Text, value: "0xEC07c19743179f1AC904Fee97a1A99310e500aB6" } +SetTriple: 82ae5e2be07d4461a88b1158931e69b8, Image, Value { r#type: Text, value: "" } +SetTriple: 3ad4df27132f4ef687f8070f063b074c, Image, Value { r#type: Text, value: "" } +SetTriple: 3ad4df27132f4ef687f8070f063b074c, Image, Value { r#type: Text, value: "" } +SetTriple: 7b91dc2269ac4c938b10290927cd7ef5, Name, Value { r#type: Text, value: "End Homelessness in San Francisco" } +SetTriple: 7816be62a9cf4684a40174d23a43ae49, Space, Value { r#type: Text, value: "0x276187Ac0D3a61EAAf3D5Af443dA932EFba7A661" } +SetTriple: 7816be62a9cf4684a40174d23a43ae49, Name, Value { r#type: Text, value: "Abundant Housing in San Francisco" } +SetTriple: 61c7b5e5dc094146a662a2a034ad5f35, Space, Value { r#type: Text, value: "0xb4476A42A66eC1356A58D300555169E17db6756c" } +SetTriple: Image, Name, Value { r#type: Text, value: "" } +SetTriple: , Name, Value { r#type: Text, value: "Image" } +SetTriple: 61c7b5e5dc094146a662a2a034ad5f35, Image, Value { r#type: Text, value: "https://cdn.discordapp.com/attachments/882371689244143687/1068582532611833936/people.png" } +SetTriple: 61c7b5e5dc094146a662a2a034ad5f35, Name, Value { r#type: Text, value: "People" } +SetTriple: aeebbd5e4d794d24ae99239e9142d9ed, Description, Value { r#type: Text, value: "The default type that should be selected on a space Entity Table" } +SetTriple: aeebbd5e4d794d24ae99239e9142d9ed, Name, Value { r#type: Text, value: "Default Type" } +SetTriple: 721ef6981ae043fb8ad5456de47c950a, Space, Value { r#type: Text, value: "0x1A39E2Fe299Ef8f855ce43abF7AC85D6e69E05F5" } +SetTriple: 721ef6981ae043fb8ad5456de47c950a, Name, Value { r#type: Text, value: "Crypto" } +SetTriple: 306598522df542f69ad72921c33ad84b, Name, Value { r#type: Text, value: "Space" } +SetTriple: Text, Name, Value { r#type: Text, value: "Text" } +SetTriple: Relation Type, Name, Value { r#type: Text, value: "Relation" } +SetTriple: a49d054e11a6494cbbe1ee6d3507663c, Space, Value { r#type: Text, value: "0xB4B3d95e9c82cb26A5bd4BC73ffBa46F1e979f16" } +SetTriple: a49d054e11a6494cbbe1ee6d3507663c, Name, Value { r#type: Text, value: "Philosophy" } +SetTriple: 9bf72ae92a1d4aacae235c31136e0255, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9bf72ae92a1d4aacae235c31136e0255, From entity, Value { r#type: Entity, value: "b0f2d71a79ca4dc49218e3e40dfed103" } +SetTriple: 340a2dfab61e4471a8b092fe349527a6, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: 340a2dfab61e4471a8b092fe349527a6, From entity, Value { r#type: Entity, value: "b0f2d71a79ca4dc49218e3e40dfed103" } +SetTriple: 9bf72ae92a1d4aacae235c31136e0255, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 9bf72ae92a1d4aacae235c31136e0255, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9bf72ae92a1d4aacae235c31136e0255, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: b0f2d71a79ca4dc49218e3e40dfed103, Name, Value { r#type: Text, value: "Filter" } +SetTriple: 340a2dfab61e4471a8b092fe349527a6, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: Filter, Description, Value { r#type: Text, value: "Filters are used to filter data within a TableBlock" } +SetTriple: 340a2dfab61e4471a8b092fe349527a6, Index, Value { r#type: Text, value: "a0" } +SetTriple: 340a2dfab61e4471a8b092fe349527a6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3669bf9d75de4c5286cac7987eda16e5, To entity, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 3669bf9d75de4c5286cac7987eda16e5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3669bf9d75de4c5286cac7987eda16e5, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3669bf9d75de4c5286cac7987eda16e5, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 3669bf9d75de4c5286cac7987eda16e5, From entity, Value { r#type: Entity, value: "1d5d0c2adb23466ca0b09abe879df457" } +SetTriple: 19901545b1404e5aa831fdc975016966, Index, Value { r#type: Text, value: "a0" } +SetTriple: 19901545b1404e5aa831fdc975016966, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: 19901545b1404e5aa831fdc975016966, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 19901545b1404e5aa831fdc975016966, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 19901545b1404e5aa831fdc975016966, From entity, Value { r#type: Entity, value: "1d5d0c2adb23466ca0b09abe879df457" } +SetTriple: Space Configuration, Name, Value { r#type: Text, value: "Space" } +SetTriple: 3a825408f049459da46cfbbbebbc9c52, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4a9e41407aa745298dfe8f5adcc13a64, From entity, Value { r#type: Entity, value: "1ed5b976f8a4451ba2cc531f85b59cab" } +SetTriple: 4a9e41407aa745298dfe8f5adcc13a64, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 4a9e41407aa745298dfe8f5adcc13a64, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4a9e41407aa745298dfe8f5adcc13a64, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4a9e41407aa745298dfe8f5adcc13a64, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 3a825408f049459da46cfbbbebbc9c52, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 3a825408f049459da46cfbbbebbc9c52, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3a825408f049459da46cfbbbebbc9c52, From entity, Value { r#type: Entity, value: "1ed5b976f8a4451ba2cc531f85b59cab" } +SetTriple: 1ed5b976f8a4451ba2cc531f85b59cab, Description, Value { r#type: Text, value: "Configuration for hidden columns of table blocks." } +SetTriple: 1ed5b976f8a4451ba2cc531f85b59cab, Name, Value { r#type: Text, value: "Hidden Columns" } +SetTriple: 3a825408f049459da46cfbbbebbc9c52, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 9b932c2801704bc28b1c2dca2eb82a53, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9b932c2801704bc28b1c2dca2eb82a53, From entity, Value { r#type: Entity, value: "88d5925217ae4d9aa36724710129eb47" } +SetTriple: 9b932c2801704bc28b1c2dca2eb82a53, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9b932c2801704bc28b1c2dca2eb82a53, To entity, Value { r#type: Entity, value: "1ed5b976f8a4451ba2cc531f85b59cab" } +SetTriple: 9b932c2801704bc28b1c2dca2eb82a53, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: Crypto, Image, Value { r#type: Text, value: "https://api.thegraph.com/ipfs/api/v0/cat?arg=QmTW7BiNhXt3kaQALCRHXEMytkD2P1DHv8GB3vRFj3L1jo" } +SetTriple: f1b9fd886388436e95b551aafaea77e5, Description, Value { r#type: Text, value: "The Root space is the top level space for the canonical global graph." } +SetTriple: 142b0a8990624cb19cec34661b3f822a, From entity, Value { r#type: Entity, value: "f1b9fd886388436e95b551aafaea77e5" } +SetTriple: 142b0a8990624cb19cec34661b3f822a, To entity, Value { r#type: Entity, value: "e9b2ca5149f743b7ab1e57f5a65d8009" } +SetTriple: 5eb4067111dc4e749d16fac3123c02cf, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 5eb4067111dc4e749d16fac3123c02cf, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5eb4067111dc4e749d16fac3123c02cf, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5eb4067111dc4e749d16fac3123c02cf, To entity, Value { r#type: Entity, value: "1d5d0c2adb23466ca0b09abe879df457" } +SetTriple: 5eb4067111dc4e749d16fac3123c02cf, From entity, Value { r#type: Entity, value: "f1b9fd886388436e95b551aafaea77e5" } +SetTriple: 27468ac0d9924182a211b81f85ec4030, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 27468ac0d9924182a211b81f85ec4030, Index, Value { r#type: Text, value: "a0" } +SetTriple: 27468ac0d9924182a211b81f85ec4030, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 27468ac0d9924182a211b81f85ec4030, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: 27468ac0d9924182a211b81f85ec4030, From entity, Value { r#type: Entity, value: "e9b2ca5149f743b7ab1e57f5a65d8009" } +SetTriple: d7957338b52545ee9fa029e7078b40e6, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: d7957338b52545ee9fa029e7078b40e6, Index, Value { r#type: Text, value: "a0" } +SetTriple: d7957338b52545ee9fa029e7078b40e6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d7957338b52545ee9fa029e7078b40e6, To entity, Value { r#type: Entity, value: "f1b9fd886388436e95b551aafaea77e5" } +SetTriple: d7957338b52545ee9fa029e7078b40e6, From entity, Value { r#type: Entity, value: "e9b2ca5149f743b7ab1e57f5a65d8009" } +SetTriple: 142b0a8990624cb19cec34661b3f822a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 142b0a8990624cb19cec34661b3f822a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 142b0a8990624cb19cec34661b3f822a, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: f1b9fd886388436e95b551aafaea77e5, Name, Value { r#type: Text, value: "Root" } +SetTriple: 6f71faae38b343f595a20c5df791bb8f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 6f71faae38b343f595a20c5df791bb8f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6f71faae38b343f595a20c5df791bb8f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6f71faae38b343f595a20c5df791bb8f, To entity, Value { r#type: Entity, value: "" } +SetTriple: 6f71faae38b343f595a20c5df791bb8f, From entity, Value { r#type: Entity, value: "4f311ee9ae4f490f839741044e559fcb" } +SetTriple: d75ca73ff8244b64aa3cb45c7f488661, Relation type, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: d75ca73ff8244b64aa3cb45c7f488661, Index, Value { r#type: Text, value: "a0" } +SetTriple: d75ca73ff8244b64aa3cb45c7f488661, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d75ca73ff8244b64aa3cb45c7f488661, To entity, Value { r#type: Entity, value: "4f311ee9ae4f490f839741044e559fcb" } +SetTriple: d75ca73ff8244b64aa3cb45c7f488661, From entity, Value { r#type: Entity, value: "f1b9fd886388436e95b551aafaea77e5" } +SetTriple: e9b2ca5149f743b7ab1e57f5a65d8009, Markdown Content, Value { r#type: Text, value: "The Root space is the top level space for the canonical global graph. Its subspaces are the top level spaces that people see on the home page. It also defines Types, Attributes, Goals, and Policies that are global in nature and can be used by other spaces.\n\n" } +SetTriple: e9b2ca5149f743b7ab1e57f5a65d8009, Name, Value { r#type: Text, value: "The Root space is th" } +SetTriple: 4f311ee9ae4f490f839741044e559fcb, 03d3a32b258f492e8d81c9ee2bc01461, Value { r#type: Text, value: "png" } +SetTriple: 4f311ee9ae4f490f839741044e559fcb, 58747e352a1c4c76ae64bfe08d28d0a4, Value { r#type: Text, value: "640" } +SetTriple: 4f311ee9ae4f490f839741044e559fcb, 18a7f15ea93b4e15bacf4d57052741e9, Value { r#type: Text, value: "2384" } +SetTriple: 4f311ee9ae4f490f839741044e559fcb, 334b8ac01be14079b1707e11d0f9eb8d, Value { r#type: Uri, value: "ipfs://bafkreidcmjud2wquyfxt3i7e3p5ttx2n32ojaqxmqa35shk3rk6l3twelu" } +SetTriple: 1d7f027e415c4f69800e460fde65feb9, Description, Value { r#type: Text, value: "A general concept that can be used to group similar things together" } +SetTriple: c5f7a48f0a1c40f387e9c2935d09da13, Index, Value { r#type: Text, value: "a0" } +SetTriple: c5f7a48f0a1c40f387e9c2935d09da13, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c5f7a48f0a1c40f387e9c2935d09da13, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 1d7f027e415c4f69800e460fde65feb9, Name, Value { r#type: Text, value: "Topic" } +SetTriple: c5f7a48f0a1c40f387e9c2935d09da13, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: c5f7a48f0a1c40f387e9c2935d09da13, From entity, Value { r#type: Entity, value: "1d7f027e415c4f69800e460fde65feb9" } +SetTriple: 26f837dc6c3e4cdb87017df94f3c9f18, Index, Value { r#type: Text, value: "a0" } +SetTriple: 26f837dc6c3e4cdb87017df94f3c9f18, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 26f837dc6c3e4cdb87017df94f3c9f18, To entity, Value { r#type: Entity, value: "cd598fe88dc540fbafc727d363aa2b31" } +SetTriple: c91c101744924379a1dbaf8e0e722c92, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c91c101744924379a1dbaf8e0e722c92, Index, Value { r#type: Text, value: "a0" } +SetTriple: 26f837dc6c3e4cdb87017df94f3c9f18, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 7d2093d786754888bec187c580e4780f, From entity, Value { r#type: Entity, value: "fa8e8e54f7424c00b73c05adee2b4545" } +SetTriple: 7d2093d786754888bec187c580e4780f, To entity, Value { r#type: Entity, value: "0c0a2a9519284ec4876dcc04075b7927" } +SetTriple: cd598fe88dc540fbafc727d363aa2b31, Description, Value { r#type: Text, value: "Claims that support a given claim" } +SetTriple: 7d2093d786754888bec187c580e4780f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: cd598fe88dc540fbafc727d363aa2b31, Name, Value { r#type: Text, value: "Supporting arguments" } +SetTriple: 5742a7038b734eb6b3df4378c1b512c6, Description, Value { r#type: Text, value: "A set of related topics" } +SetTriple: fa8e8e54f7424c00b73c05adee2b4545, Description, Value { r#type: Text, value: "A statement about a set of topics that may or may not be true" } +SetTriple: 0c0a2a9519284ec4876dcc04075b7927, Name, Value { r#type: Text, value: "Opposing arguments" } +SetTriple: 5742a7038b734eb6b3df4378c1b512c6, Name, Value { r#type: Text, value: "Topics" } +SetTriple: fa8e8e54f7424c00b73c05adee2b4545, Name, Value { r#type: Text, value: "Claim" } +SetTriple: 7d2093d786754888bec187c580e4780f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7d2093d786754888bec187c580e4780f, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: Opposing arguments, Description, Value { r#type: Text, value: "Claims that oppose a given claim" } +SetTriple: 2c3c10d50a894da683927809f5a55a75, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 1305a9c081f74d1fb31a7681dfef1515, From entity, Value { r#type: Entity, value: "0c0a2a9519284ec4876dcc04075b7927" } +SetTriple: 1305a9c081f74d1fb31a7681dfef1515, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 1305a9c081f74d1fb31a7681dfef1515, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1305a9c081f74d1fb31a7681dfef1515, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1305a9c081f74d1fb31a7681dfef1515, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: f24b6c79882d40b6af533e72d1974e5b, Index, Value { r#type: Text, value: "a0" } +SetTriple: f24b6c79882d40b6af533e72d1974e5b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f24b6c79882d40b6af533e72d1974e5b, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: f24b6c79882d40b6af533e72d1974e5b, From entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: c91c101744924379a1dbaf8e0e722c92, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: a47d400e024a48de9266cd66298f463f, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: a47d400e024a48de9266cd66298f463f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a47d400e024a48de9266cd66298f463f, Index, Value { r#type: Text, value: "a0" } +SetTriple: a47d400e024a48de9266cd66298f463f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 5f7f5680528b4a738d2ccb3a848db7e9, From entity, Value { r#type: Entity, value: "cd598fe88dc540fbafc727d363aa2b31" } +SetTriple: 5f7f5680528b4a738d2ccb3a848db7e9, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 5f7f5680528b4a738d2ccb3a848db7e9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5f7f5680528b4a738d2ccb3a848db7e9, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5f7f5680528b4a738d2ccb3a848db7e9, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 2c3c10d50a894da683927809f5a55a75, From entity, Value { r#type: Entity, value: "0c0a2a9519284ec4876dcc04075b7927" } +SetTriple: 2c3c10d50a894da683927809f5a55a75, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 2c3c10d50a894da683927809f5a55a75, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2c3c10d50a894da683927809f5a55a75, Index, Value { r#type: Text, value: "a0" } +SetTriple: 76ef8c1a346549f3aa650598d742fc7d, From entity, Value { r#type: Entity, value: "fa8e8e54f7424c00b73c05adee2b4545" } +SetTriple: e56b6cf8b5eb43f7a1a0cefebab74e6e, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 76ef8c1a346549f3aa650598d742fc7d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 76ef8c1a346549f3aa650598d742fc7d, To entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: e56b6cf8b5eb43f7a1a0cefebab74e6e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 76ef8c1a346549f3aa650598d742fc7d, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 76ef8c1a346549f3aa650598d742fc7d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e56b6cf8b5eb43f7a1a0cefebab74e6e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e56b6cf8b5eb43f7a1a0cefebab74e6e, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: e56b6cf8b5eb43f7a1a0cefebab74e6e, From entity, Value { r#type: Entity, value: "fa8e8e54f7424c00b73c05adee2b4545" } +SetTriple: c91c101744924379a1dbaf8e0e722c92, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 26f837dc6c3e4cdb87017df94f3c9f18, From entity, Value { r#type: Entity, value: "fa8e8e54f7424c00b73c05adee2b4545" } +SetTriple: c91c101744924379a1dbaf8e0e722c92, From entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: a47d400e024a48de9266cd66298f463f, From entity, Value { r#type: Entity, value: "cd598fe88dc540fbafc727d363aa2b31" } +SetTriple: f24b6c79882d40b6af533e72d1974e5b, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: bfc8cb5ab109450dab1a49632ad8f145, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bfc8cb5ab109450dab1a49632ad8f145, Index, Value { r#type: Text, value: "a0" } +SetTriple: bfc8cb5ab109450dab1a49632ad8f145, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 5dbc0aa3ab304d30987ebc4ae4e369c7, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5dbc0aa3ab304d30987ebc4ae4e369c7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bfc8cb5ab109450dab1a49632ad8f145, From entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 90dcfc330cdb4252a7c3f653d4f54e26, Name, Value { r#type: Text, value: "Tags" } +SetTriple: 5dbc0aa3ab304d30987ebc4ae4e369c7, From entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 5dbc0aa3ab304d30987ebc4ae4e369c7, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: bfc8cb5ab109450dab1a49632ad8f145, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 5dbc0aa3ab304d30987ebc4ae4e369c7, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 7e7b7139da63429f9020b043bda340c7, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7e7b7139da63429f9020b043bda340c7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7e7b7139da63429f9020b043bda340c7, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: 7e7b7139da63429f9020b043bda340c7, From entity, Value { r#type: Entity, value: "2e59ef47b8df4c24a377f35724583418" } +SetTriple: 2e59ef47b8df4c24a377f35724583418, Space, Value { r#type: Text, value: "0x1b7a66284C31A8D11a790ec79916c425Ef6E7886" } +SetTriple: 2e59ef47b8df4c24a377f35724583418, Name, Value { r#type: Text, value: "The Graph" } +SetTriple: 7e7b7139da63429f9020b043bda340c7, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 3ef6eeb0b0724999a5a45aefa06bcea2, Name, Value { r#type: Text, value: "AI" } +SetTriple: f4b907c3ef8b47cfaeb1d939ffb488ae, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: f4b907c3ef8b47cfaeb1d939ffb488ae, Index, Value { r#type: Text, value: "a0" } +SetTriple: f4b907c3ef8b47cfaeb1d939ffb488ae, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f4b907c3ef8b47cfaeb1d939ffb488ae, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: f4b907c3ef8b47cfaeb1d939ffb488ae, From entity, Value { r#type: Entity, value: "3ef6eeb0b0724999a5a45aefa06bcea2" } +SetTriple: AI, Space, Value { r#type: Text, value: "0x6144659cc8FCcBb7Bb41c94Fc8429Aec201A3ff5" } +SetTriple: AI, Image, Value { r#type: Text, value: "https://api.thegraph.com/ipfs/api/v0/cat?arg=QmS9ogyiSQgH1YBeAQ5LcYemuorgTU5rBnq3dxGL4w8AA3" } +SetTriple: 029c0c90698242469e4aa0e5762fba01, Space, Value { r#type: Text, value: "0x44a6e58B483d4c569bAaB9DD1FC7fA445C1f1Ea9" } +SetTriple: d2158884920b4d1fa6b758cc26575dd5, Index, Value { r#type: Text, value: "a0" } +SetTriple: d2158884920b4d1fa6b758cc26575dd5, From entity, Value { r#type: Entity, value: "029c0c90698242469e4aa0e5762fba01" } +SetTriple: d2158884920b4d1fa6b758cc26575dd5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 029c0c90698242469e4aa0e5762fba01, Image, Value { r#type: Text, value: "https://api.thegraph.com/ipfs/api/v0/cat?arg=QmV9fpq4RvBoSVS4aUaT2vYfuysoTUHQkd1FVgPUfQug12" } +SetTriple: d2158884920b4d1fa6b758cc26575dd5, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: d2158884920b4d1fa6b758cc26575dd5, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: 029c0c90698242469e4aa0e5762fba01, Name, Value { r#type: Text, value: "History" } +SetTriple: 1e20a56cbff6435ebeddf4fd7a248e1c, From entity, Value { r#type: Entity, value: "9c8c07dd74884b179e3dbc2ca67adcb9" } +SetTriple: 1e20a56cbff6435ebeddf4fd7a248e1c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9c8c07dd74884b179e3dbc2ca67adcb9, Space, Value { r#type: Text, value: "0x35D15c85AF6A00aBdc3AbFa4178C719e0220838e" } +SetTriple: 1e20a56cbff6435ebeddf4fd7a248e1c, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 1e20a56cbff6435ebeddf4fd7a248e1c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9c8c07dd74884b179e3dbc2ca67adcb9, Name, Value { r#type: Text, value: "Sustainability" } +SetTriple: Sustainability, Image, Value { r#type: Text, value: "https://api.thegraph.com/ipfs/api/v0/cat?arg=QmQW1MD2zioVYpBAB3mS3Mo4fNsQLdFxRzjQKwkWhtwwk1" } +SetTriple: 1e20a56cbff6435ebeddf4fd7a248e1c, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: 0ef375994e5c455793201cb9c105a3ba, Space, Value { r#type: Text, value: "0x62b5b813B74C4166DA4f3f88Af6E8E4e657a9458" } +SetTriple: 0ef375994e5c455793201cb9c105a3ba, Name, Value { r#type: Text, value: "Energy" } +SetTriple: Energy, Image, Value { r#type: Text, value: "https://api.thegraph.com/ipfs/api/v0/cat?arg=QmdUbexUDLqpYQ4D9T14guMMbCFJGDHRQmXg5oRaE81pze" } +SetTriple: 3171b662e8e44aaaaf495d0afefc1475, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 3171b662e8e44aaaaf495d0afefc1475, From entity, Value { r#type: Entity, value: "0ef375994e5c455793201cb9c105a3ba" } +SetTriple: 3171b662e8e44aaaaf495d0afefc1475, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3171b662e8e44aaaaf495d0afefc1475, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3171b662e8e44aaaaf495d0afefc1475, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: The Graph, Image, Value { r#type: Text, value: "https://api.thegraph.com/ipfs/api/v0/cat?arg=Qmboi71hpPAFFjZxdyTmkNMni8pttUfNjuExkNtY6FhUS8" } +SetTriple: f29a0b99f7874be99c7db21f32708acb, Index, Value { r#type: Text, value: "a0" } +SetTriple: 71a2df9832ec40c5bedb2e47164ed62d, Name, Value { r#type: Text, value: "Bug" } +SetTriple: 4144054c27d7497abe1e7f169e521e4f, Name, Value { r#type: Text, value: "Feature" } +SetTriple: fe27d6d8654c4c80a39ee65bd6826e70, Name, Value { r#type: Text, value: "Working group" } +SetTriple: ff86d35bed174998a4ea82ce462a5474, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ff86d35bed174998a4ea82ce462a5474, Index, Value { r#type: Text, value: "a0" } +SetTriple: ff86d35bed174998a4ea82ce462a5474, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: f29a0b99f7874be99c7db21f32708acb, From entity, Value { r#type: Entity, value: "4144054c27d7497abe1e7f169e521e4f" } +SetTriple: f29a0b99f7874be99c7db21f32708acb, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: f29a0b99f7874be99c7db21f32708acb, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ff86d35bed174998a4ea82ce462a5474, From entity, Value { r#type: Entity, value: "fe27d6d8654c4c80a39ee65bd6826e70" } +SetTriple: ff86d35bed174998a4ea82ce462a5474, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: f29a0b99f7874be99c7db21f32708acb, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: caa95f1fa2794bd1b88d67fc6bf03b5d, From entity, Value { r#type: Entity, value: "71a2df9832ec40c5bedb2e47164ed62d" } +SetTriple: caa95f1fa2794bd1b88d67fc6bf03b5d, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: caa95f1fa2794bd1b88d67fc6bf03b5d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: caa95f1fa2794bd1b88d67fc6bf03b5d, Index, Value { r#type: Text, value: "a0" } +SetTriple: caa95f1fa2794bd1b88d67fc6bf03b5d, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 5016e4b29d4d4401b7c053e43e6f99ec, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 403b9f42645249d4ab02ff63df66a06c, Name, Value { r#type: Text, value: "Social Work" } +SetTriple: 5016e4b29d4d4401b7c053e43e6f99ec, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 5016e4b29d4d4401b7c053e43e6f99ec, Index, Value { r#type: Text, value: "a0" } +SetTriple: Social Work, Space, Value { r#type: Text, value: "0xC46a79dD4Cf9635011ba3A68Fb3CE6b6f8008cC0" } +SetTriple: 5016e4b29d4d4401b7c053e43e6f99ec, From entity, Value { r#type: Entity, value: "403b9f42645249d4ab02ff63df66a06c" } +SetTriple: 5016e4b29d4d4401b7c053e43e6f99ec, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: b500ab81f01d48bfa608d3e1acd989e6, Name, Value { r#type: Text, value: "Construction" } +SetTriple: aac54bee35ed4ec49e5c095b581c39c0, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: aac54bee35ed4ec49e5c095b581c39c0, Index, Value { r#type: Text, value: "a0" } +SetTriple: Construction, Space, Value { r#type: Text, value: "0x74519E6EEc5BCFBC4Eb8F1A6d0C6D343173A286b" } +SetTriple: aac54bee35ed4ec49e5c095b581c39c0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: aac54bee35ed4ec49e5c095b581c39c0, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: aac54bee35ed4ec49e5c095b581c39c0, From entity, Value { r#type: Entity, value: "b500ab81f01d48bfa608d3e1acd989e6" } +SetTriple: Construction, Image, Value { r#type: Text, value: "https://api.thegraph.com/ipfs/api/v0/cat?arg=QmcTVmKSngzvPzN2ajHjZYKfMGJbpXzhVeA6pFRSoKoFkn" } +SetTriple: Hidden Columns, Description, Value { r#type: Text, value: "Configuration for shown columns of table blocks." } +SetTriple: Hidden Columns, Name, Value { r#type: Text, value: "Shown Columns" } +SetTriple: 35176527ada34a55b351cd984a307d3f, From entity, Value { r#type: Entity, value: "388ad59b1cc7413ca0bb34a4de48c758" } +SetTriple: 35176527ada34a55b351cd984a307d3f, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: Shown Columns, Name, Value { r#type: Text, value: "Hidden Columns" } +SetTriple: 9a4061276ab747ba89c84d1efae8769b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9a4061276ab747ba89c84d1efae8769b, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 35176527ada34a55b351cd984a307d3f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9a4061276ab747ba89c84d1efae8769b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 35176527ada34a55b351cd984a307d3f, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 9a4061276ab747ba89c84d1efae8769b, From entity, Value { r#type: Entity, value: "388ad59b1cc7413ca0bb34a4de48c758" } +SetTriple: Hidden Columns, Description, Value { r#type: Text, value: "Legacy configuration for hidden columns of table blocks." } +SetTriple: 388ad59b1cc7413ca0bb34a4de48c758, Name, Value { r#type: Text, value: "Shown Columns" } +SetTriple: Shown Columns, Description, Value { r#type: Text, value: "Configuration for shown columns of table blocks." } +SetTriple: 35176527ada34a55b351cd984a307d3f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9a4061276ab747ba89c84d1efae8769b, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: f28222422b7f42daa2f579857b202850, To entity, Value { r#type: Entity, value: "388ad59b1cc7413ca0bb34a4de48c758" } +SetTriple: f28222422b7f42daa2f579857b202850, From entity, Value { r#type: Entity, value: "88d5925217ae4d9aa36724710129eb47" } +SetTriple: f28222422b7f42daa2f579857b202850, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f28222422b7f42daa2f579857b202850, Index, Value { r#type: Text, value: "a0" } +SetTriple: f28222422b7f42daa2f579857b202850, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 8ed798a645724072a1f7996b147c826f, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 8ed798a645724072a1f7996b147c826f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8ed798a645724072a1f7996b147c826f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f107a6f221e9475b84d752dd7dcae912, Name, Value { r#type: Text, value: "Objective" } +SetTriple: 8ed798a645724072a1f7996b147c826f, To entity, Value { r#type: Entity, value: "377ac7e818ab443cbc2629ff04745f99" } +SetTriple: 8ed798a645724072a1f7996b147c826f, From entity, Value { r#type: Entity, value: "f71912463dca4e778a79d9cdc9804127" } +SetTriple: 577e1ed11fe2461f8f43de65a16898c6, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: Objective, Description, Value { r#type: Text, value: "A time-limited, measurable action with tangible outcomes that helps push progress toward broader goals." } +SetTriple: f9804f7c0e2e4658a8489aa65bbe411b, Description, Value { r#type: Text, value: "A related set of goals" } +SetTriple: 577e1ed11fe2461f8f43de65a16898c6, Index, Value { r#type: Text, value: "a0" } +SetTriple: f9804f7c0e2e4658a8489aa65bbe411b, Name, Value { r#type: Text, value: "Goals" } +SetTriple: 577e1ed11fe2461f8f43de65a16898c6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 577e1ed11fe2461f8f43de65a16898c6, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 577e1ed11fe2461f8f43de65a16898c6, From entity, Value { r#type: Entity, value: "f71912463dca4e778a79d9cdc9804127" } +SetTriple: 70d3dc54670c46899e2ea67ca334ab96, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 70d3dc54670c46899e2ea67ca334ab96, Index, Value { r#type: Text, value: "a0" } +SetTriple: 70d3dc54670c46899e2ea67ca334ab96, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 70d3dc54670c46899e2ea67ca334ab96, To entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: 70d3dc54670c46899e2ea67ca334ab96, From entity, Value { r#type: Entity, value: "f71912463dca4e778a79d9cdc9804127" } +SetTriple: 9eb7c19c80be43a2ba5b8616fb6671ac, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 9eb7c19c80be43a2ba5b8616fb6671ac, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9eb7c19c80be43a2ba5b8616fb6671ac, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9eb7c19c80be43a2ba5b8616fb6671ac, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 9eb7c19c80be43a2ba5b8616fb6671ac, From entity, Value { r#type: Entity, value: "2bd0960f5af94b0c893920e9edf31ede" } +SetTriple: 546b042d6aae4919aa6be0cf21324208, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 546b042d6aae4919aa6be0cf21324208, Index, Value { r#type: Text, value: "a0" } +SetTriple: 546b042d6aae4919aa6be0cf21324208, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 546b042d6aae4919aa6be0cf21324208, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 546b042d6aae4919aa6be0cf21324208, From entity, Value { r#type: Entity, value: "2bd0960f5af94b0c893920e9edf31ede" } +SetTriple: d67582daf6074280a5a31a74f99ea674, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: d67582daf6074280a5a31a74f99ea674, Index, Value { r#type: Text, value: "a0" } +SetTriple: d67582daf6074280a5a31a74f99ea674, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d67582daf6074280a5a31a74f99ea674, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: d67582daf6074280a5a31a74f99ea674, From entity, Value { r#type: Entity, value: "377ac7e818ab443cbc2629ff04745f99" } +SetTriple: 341bb5d5485b4e39ad31f911b96b8344, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 341bb5d5485b4e39ad31f911b96b8344, Index, Value { r#type: Text, value: "a0" } +SetTriple: 341bb5d5485b4e39ad31f911b96b8344, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 341bb5d5485b4e39ad31f911b96b8344, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 341bb5d5485b4e39ad31f911b96b8344, From entity, Value { r#type: Entity, value: "377ac7e818ab443cbc2629ff04745f99" } +SetTriple: 627fbd98568e4811a928bc4349a9a50a, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 627fbd98568e4811a928bc4349a9a50a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 627fbd98568e4811a928bc4349a9a50a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 627fbd98568e4811a928bc4349a9a50a, To entity, Value { r#type: Entity, value: "88d5925217ae4d9aa36724710129eb47" } +SetTriple: 627fbd98568e4811a928bc4349a9a50a, From entity, Value { r#type: Entity, value: "d5b7cf8fb6904af893b29ad1d1822534" } +SetTriple: 4aa93966b8284d08a3d490d8812cc450, Relation type, Value { r#type: Entity, value: "577bd9fbb29e4e2bb5f8f48aedbd26ac" } +SetTriple: 4aa93966b8284d08a3d490d8812cc450, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4aa93966b8284d08a3d490d8812cc450, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4aa93966b8284d08a3d490d8812cc450, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 4aa93966b8284d08a3d490d8812cc450, From entity, Value { r#type: Entity, value: "d5b7cf8fb6904af893b29ad1d1822534" } +SetTriple: 10c04a74e7ef418b823129365d56730c, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 10c04a74e7ef418b823129365d56730c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 10c04a74e7ef418b823129365d56730c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 10c04a74e7ef418b823129365d56730c, To entity, Value { r#type: Entity, value: "f1b9fd886388436e95b551aafaea77e5" } +SetTriple: 10c04a74e7ef418b823129365d56730c, From entity, Value { r#type: Entity, value: "d5b7cf8fb6904af893b29ad1d1822534" } +SetTriple: 5b4e9b7455f44e57b0b358da71188191, Name, Value { r#type: Text, value: "Sources" } +SetTriple: Sources, Description, Value { r#type: Text, value: "People, places, or things where things or ideas originated" } +SetTriple: 017c5749ea46465a966904ed17344671, Name, Value { r#type: Text, value: "Policy" } +SetTriple: Policy, Description, Value { r#type: Text, value: "A rule or procedure that should be followed within a space" } +SetTriple: 377ac7e818ab443cbc2629ff04745f99, Name, Value { r#type: Text, value: "Subgoals" } +SetTriple: Subgoals, Description, Value { r#type: Text, value: "More detailed goals for drilling down" } +SetTriple: 2bd0960f5af94b0c893920e9edf31ede, Name, Value { r#type: Text, value: "Broader goals" } +SetTriple: b97f50771533432d84fe68875ebae750, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: b97f50771533432d84fe68875ebae750, Index, Value { r#type: Text, value: "a0" } +SetTriple: d5b7cf8fb6904af893b29ad1d1822534, Filter, Value { r#type: Text, value: "{typeIds_contains_nocase: [\"d7ab40920ab5441e88c35c27952de773\"], entityOf_: {space: \"ab7d4b9e02f840dab9746d352acb0ac6\"}}" } +SetTriple: b97f50771533432d84fe68875ebae750, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b97f50771533432d84fe68875ebae750, To entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: b97f50771533432d84fe68875ebae750, From entity, Value { r#type: Entity, value: "017c5749ea46465a966904ed17344671" } +SetTriple: fc47e95376c146ff963337b2da5d707e, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: fc47e95376c146ff963337b2da5d707e, Index, Value { r#type: Text, value: "a0" } +SetTriple: fc47e95376c146ff963337b2da5d707e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: fc47e95376c146ff963337b2da5d707e, To entity, Value { r#type: Entity, value: "5b4e9b7455f44e57b0b358da71188191" } +SetTriple: fc47e95376c146ff963337b2da5d707e, From entity, Value { r#type: Entity, value: "fa8e8e54f7424c00b73c05adee2b4545" } +SetTriple: 3ebe98332d9d4274897225723c316cca, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 1f51d54ff0bc4ddca649f716db0feafb, To entity, Value { r#type: Entity, value: "d5b7cf8fb6904af893b29ad1d1822534" } +SetTriple: 1f51d54ff0bc4ddca649f716db0feafb, From entity, Value { r#type: Entity, value: "f1b9fd886388436e95b551aafaea77e5" } +SetTriple: 3ebe98332d9d4274897225723c316cca, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3ebe98332d9d4274897225723c316cca, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3ebe98332d9d4274897225723c316cca, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 3ebe98332d9d4274897225723c316cca, From entity, Value { r#type: Entity, value: "5b4e9b7455f44e57b0b358da71188191" } +SetTriple: 0d70bcc6f77c41b087491ad2a8b77ab3, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 0d70bcc6f77c41b087491ad2a8b77ab3, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0d70bcc6f77c41b087491ad2a8b77ab3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0d70bcc6f77c41b087491ad2a8b77ab3, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 0d70bcc6f77c41b087491ad2a8b77ab3, From entity, Value { r#type: Entity, value: "5b4e9b7455f44e57b0b358da71188191" } +SetTriple: 6794883a866c4489a03f85c78daef434, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 6794883a866c4489a03f85c78daef434, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1f51d54ff0bc4ddca649f716db0feafb, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 1f51d54ff0bc4ddca649f716db0feafb, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1f51d54ff0bc4ddca649f716db0feafb, Index, Value { r#type: Text, value: "a1" } +SetTriple: 6794883a866c4489a03f85c78daef434, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6794883a866c4489a03f85c78daef434, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: d5b7cf8fb6904af893b29ad1d1822534, Name, Value { r#type: Text, value: "Types" } +SetTriple: 6794883a866c4489a03f85c78daef434, From entity, Value { r#type: Entity, value: "fa8e8e54f7424c00b73c05adee2b4545" } +SetTriple: 0df405557cd948d8a0167b63a311bd2e, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 0df405557cd948d8a0167b63a311bd2e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0df405557cd948d8a0167b63a311bd2e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0df405557cd948d8a0167b63a311bd2e, To entity, Value { r#type: Entity, value: "f9804f7c0e2e4658a8489aa65bbe411b" } +SetTriple: 0df405557cd948d8a0167b63a311bd2e, From entity, Value { r#type: Entity, value: "f107a6f221e9475b84d752dd7dcae912" } +SetTriple: 098898d9da4a4a59b36394183737bc40, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 098898d9da4a4a59b36394183737bc40, Index, Value { r#type: Text, value: "a0" } +SetTriple: 098898d9da4a4a59b36394183737bc40, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 098898d9da4a4a59b36394183737bc40, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 098898d9da4a4a59b36394183737bc40, From entity, Value { r#type: Entity, value: "f9804f7c0e2e4658a8489aa65bbe411b" } +SetTriple: 03b75bd8fdeb42a5a89766b3421dda15, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 03b75bd8fdeb42a5a89766b3421dda15, Index, Value { r#type: Text, value: "a0" } +SetTriple: 03b75bd8fdeb42a5a89766b3421dda15, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 03b75bd8fdeb42a5a89766b3421dda15, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 03b75bd8fdeb42a5a89766b3421dda15, From entity, Value { r#type: Entity, value: "f9804f7c0e2e4658a8489aa65bbe411b" } +SetTriple: 230fbc5928a24ba19bb21d4f3f736e1c, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 230fbc5928a24ba19bb21d4f3f736e1c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 230fbc5928a24ba19bb21d4f3f736e1c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 230fbc5928a24ba19bb21d4f3f736e1c, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 230fbc5928a24ba19bb21d4f3f736e1c, From entity, Value { r#type: Entity, value: "f107a6f221e9475b84d752dd7dcae912" } +SetTriple: f7effe891ca54b7f811b4ec1bf2d62ba, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: f7effe891ca54b7f811b4ec1bf2d62ba, Index, Value { r#type: Text, value: "a0" } +SetTriple: f7effe891ca54b7f811b4ec1bf2d62ba, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f7effe891ca54b7f811b4ec1bf2d62ba, To entity, Value { r#type: Entity, value: "2bd0960f5af94b0c893920e9edf31ede" } +SetTriple: f7effe891ca54b7f811b4ec1bf2d62ba, From entity, Value { r#type: Entity, value: "f71912463dca4e778a79d9cdc9804127" } +SetTriple: Broader goals, Description, Value { r#type: Text, value: "Higher level goals for drilling up" } +SetTriple: d4f4fa1badb945578e7878c3d674fa14, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: af112a627ab340f28b18d50cceb95c12, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 9438ee038c1145af9bf66b7ba8d4c1f3, Name, Value { r#type: Text, value: "Position" } +SetTriple: Position, Description, Value { r#type: Text, value: "A top level statement of where a person or entity stands on an issue" } +SetTriple: 21be6a84312544a2bb2e3c23928ce4aa, Name, Value { r#type: Text, value: "Subtopics" } +SetTriple: Subtopics, Description, Value { r#type: Text, value: "A more specific set of topics for drilling down" } +SetTriple: af112a627ab340f28b18d50cceb95c12, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9c2ef1313a1547e9ac5d0fce07e792a1, Name, Value { r#type: Text, value: "Broader topics" } +SetTriple: Broader topics, Description, Value { r#type: Text, value: "A larger set of containing topics for drilling up" } +SetTriple: 3d31f766b65148afa357271343a773de, Name, Value { r#type: Text, value: "Tag" } +SetTriple: Tag, Description, Value { r#type: Text, value: "A label that describes something" } +SetTriple: b0379af244de4106b4522203ec49418c, Name, Value { r#type: Text, value: "Value" } +SetTriple: Value, Description, Value { r#type: Text, value: "A principle or standard of behavior." } +SetTriple: f0ff2d4071ad4fa697e65d7fa5d0e226, Name, Value { r#type: Text, value: "Mission" } +SetTriple: Mission, Description, Value { r#type: Text, value: "The reason or purpose that something exists." } +SetTriple: 587429e126b04aa9893e4ea21b2d8287, Name, Value { r#type: Text, value: "Vision" } +SetTriple: Vision, Description, Value { r#type: Text, value: "An illustrative desired future state that's worth working toward." } +SetTriple: c7ce21d5d91544e6ac0bad109a51026b, Name, Value { r#type: Text, value: "Answers" } +SetTriple: Answers, Description, Value { r#type: Text, value: "A set of possible answers to a given question" } +SetTriple: 0913adbf9a7840599aba4c788a681255, Name, Value { r#type: Text, value: "Question" } +SetTriple: Question, Description, Value { r#type: Text, value: "A question that may have one or more answers" } +SetTriple: af112a627ab340f28b18d50cceb95c12, From entity, Value { r#type: Entity, value: "3d31f766b65148afa357271343a773de" } +SetTriple: 13a4ec3dd08344aaa59f3dc35b7f2142, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 13a4ec3dd08344aaa59f3dc35b7f2142, Index, Value { r#type: Text, value: "a0" } +SetTriple: 13a4ec3dd08344aaa59f3dc35b7f2142, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 13a4ec3dd08344aaa59f3dc35b7f2142, To entity, Value { r#type: Entity, value: "21be6a84312544a2bb2e3c23928ce4aa" } +SetTriple: 13a4ec3dd08344aaa59f3dc35b7f2142, From entity, Value { r#type: Entity, value: "1d7f027e415c4f69800e460fde65feb9" } +SetTriple: 13f571ca092741d49b4ec73e41e731c4, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 13f571ca092741d49b4ec73e41e731c4, Index, Value { r#type: Text, value: "a0" } +SetTriple: 13f571ca092741d49b4ec73e41e731c4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 13f571ca092741d49b4ec73e41e731c4, To entity, Value { r#type: Entity, value: "9c2ef1313a1547e9ac5d0fce07e792a1" } +SetTriple: 13f571ca092741d49b4ec73e41e731c4, From entity, Value { r#type: Entity, value: "1d7f027e415c4f69800e460fde65feb9" } +SetTriple: d6f76297e8a54f9285ff4dd816f0efc6, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: d6f76297e8a54f9285ff4dd816f0efc6, Index, Value { r#type: Text, value: "a0" } +SetTriple: d6f76297e8a54f9285ff4dd816f0efc6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d6f76297e8a54f9285ff4dd816f0efc6, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: d6f76297e8a54f9285ff4dd816f0efc6, From entity, Value { r#type: Entity, value: "9c2ef1313a1547e9ac5d0fce07e792a1" } +SetTriple: 948f0c64a2bd484dbeebdfc2d5d4a9b3, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 948f0c64a2bd484dbeebdfc2d5d4a9b3, Index, Value { r#type: Text, value: "a0" } +SetTriple: 948f0c64a2bd484dbeebdfc2d5d4a9b3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 948f0c64a2bd484dbeebdfc2d5d4a9b3, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 948f0c64a2bd484dbeebdfc2d5d4a9b3, From entity, Value { r#type: Entity, value: "9c2ef1313a1547e9ac5d0fce07e792a1" } +SetTriple: a19ceceecede4eb48983e1b2bfd73806, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: a19ceceecede4eb48983e1b2bfd73806, Index, Value { r#type: Text, value: "a0" } +SetTriple: af112a627ab340f28b18d50cceb95c12, Index, Value { r#type: Text, value: "a0" } +SetTriple: a19ceceecede4eb48983e1b2bfd73806, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a19ceceecede4eb48983e1b2bfd73806, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: a19ceceecede4eb48983e1b2bfd73806, From entity, Value { r#type: Entity, value: "21be6a84312544a2bb2e3c23928ce4aa" } +SetTriple: cd42b80e8933406eb105b14b716110f4, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: cd42b80e8933406eb105b14b716110f4, Index, Value { r#type: Text, value: "a0" } +SetTriple: cd42b80e8933406eb105b14b716110f4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: cd42b80e8933406eb105b14b716110f4, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: cd42b80e8933406eb105b14b716110f4, From entity, Value { r#type: Entity, value: "9438ee038c1145af9bf66b7ba8d4c1f3" } +SetTriple: 51e0f441451b4d128b61c203b7a98e7f, Index, Value { r#type: Text, value: "a0" } +SetTriple: af112a627ab340f28b18d50cceb95c12, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 59ba298bf1544af79a1d5a9c577b32ef, From entity, Value { r#type: Entity, value: "b0379af244de4106b4522203ec49418c" } +SetTriple: 59ba298bf1544af79a1d5a9c577b32ef, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 59ba298bf1544af79a1d5a9c577b32ef, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ce70c62b3d084a65be1ed819085bd327, From entity, Value { r#type: Entity, value: "f0ff2d4071ad4fa697e65d7fa5d0e226" } +SetTriple: ce70c62b3d084a65be1ed819085bd327, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: ce70c62b3d084a65be1ed819085bd327, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ce70c62b3d084a65be1ed819085bd327, Index, Value { r#type: Text, value: "a0" } +SetTriple: ce70c62b3d084a65be1ed819085bd327, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 1b0eb9757bf443a0bfcef48c83e077f2, From entity, Value { r#type: Entity, value: "587429e126b04aa9893e4ea21b2d8287" } +SetTriple: 1b0eb9757bf443a0bfcef48c83e077f2, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 1b0eb9757bf443a0bfcef48c83e077f2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1b0eb9757bf443a0bfcef48c83e077f2, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1b0eb9757bf443a0bfcef48c83e077f2, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 1133d7033c3c44fca7efe8dbeaea3b0f, From entity, Value { r#type: Entity, value: "c7ce21d5d91544e6ac0bad109a51026b" } +SetTriple: 1133d7033c3c44fca7efe8dbeaea3b0f, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 1133d7033c3c44fca7efe8dbeaea3b0f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1133d7033c3c44fca7efe8dbeaea3b0f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1133d7033c3c44fca7efe8dbeaea3b0f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 51e0f441451b4d128b61c203b7a98e7f, From entity, Value { r#type: Entity, value: "c7ce21d5d91544e6ac0bad109a51026b" } +SetTriple: 51e0f441451b4d128b61c203b7a98e7f, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 59ba298bf1544af79a1d5a9c577b32ef, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 59ba298bf1544af79a1d5a9c577b32ef, Index, Value { r#type: Text, value: "a0" } +SetTriple: 51e0f441451b4d128b61c203b7a98e7f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 51e0f441451b4d128b61c203b7a98e7f, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 4f217bf39b844b93bac5b6de8dff16b6, From entity, Value { r#type: Entity, value: "0913adbf9a7840599aba4c788a681255" } +SetTriple: 4f217bf39b844b93bac5b6de8dff16b6, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 4f217bf39b844b93bac5b6de8dff16b6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4f217bf39b844b93bac5b6de8dff16b6, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4f217bf39b844b93bac5b6de8dff16b6, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 65c276a109b6495292eb167126451b19, From entity, Value { r#type: Entity, value: "0913adbf9a7840599aba4c788a681255" } +SetTriple: 65c276a109b6495292eb167126451b19, To entity, Value { r#type: Entity, value: "c7ce21d5d91544e6ac0bad109a51026b" } +SetTriple: 65c276a109b6495292eb167126451b19, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 65c276a109b6495292eb167126451b19, Index, Value { r#type: Text, value: "a0" } +SetTriple: 65c276a109b6495292eb167126451b19, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: d4f4fa1badb945578e7878c3d674fa14, From entity, Value { r#type: Entity, value: "0913adbf9a7840599aba4c788a681255" } +SetTriple: d4f4fa1badb945578e7878c3d674fa14, To entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: d4f4fa1badb945578e7878c3d674fa14, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d4f4fa1badb945578e7878c3d674fa14, Index, Value { r#type: Text, value: "a0" } +SetTriple: 13f8b421ccc54a67be6436ebf6274151, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 88314b3c8c9643e79c23e194f67c0302, Markdown Content, Value { r#type: Text, value: "The value type of Price should be changed once we have Number with Currency formatting.\n\n" } +SetTriple: 8386a03963c04df6baa63975be07f7d3, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8386a03963c04df6baa63975be07f7d3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8386a03963c04df6baa63975be07f7d3, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 258905e12d814e14b0a0949d567377ea, Index, Value { r#type: Text, value: "a0" } +SetTriple: b6e4a06058ea45908eecf98885092da5, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: b6e4a06058ea45908eecf98885092da5, Index, Value { r#type: Text, value: "a0" } +SetTriple: b6e4a06058ea45908eecf98885092da5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b6e4a06058ea45908eecf98885092da5, To entity, Value { r#type: Entity, value: "d267c2edcad84e8793abdbf95d6659cc" } +SetTriple: b6e4a06058ea45908eecf98885092da5, From entity, Value { r#type: Entity, value: "2056da31f55343b4b3668ee094719719" } +SetTriple: d81db725a7134184a9b85ef26c18dc99, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: d81db725a7134184a9b85ef26c18dc99, Index, Value { r#type: Text, value: "a0" } +SetTriple: d81db725a7134184a9b85ef26c18dc99, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d81db725a7134184a9b85ef26c18dc99, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: d81db725a7134184a9b85ef26c18dc99, From entity, Value { r#type: Entity, value: "2056da31f55343b4b3668ee094719719" } +SetTriple: ea07049c185e4801845cb4bf828589f9, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: ea07049c185e4801845cb4bf828589f9, Index, Value { r#type: Text, value: "a0" } +SetTriple: ea07049c185e4801845cb4bf828589f9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ea07049c185e4801845cb4bf828589f9, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: ea07049c185e4801845cb4bf828589f9, From entity, Value { r#type: Entity, value: "88314b3c8c9643e79c23e194f67c0302" } +SetTriple: a0ed9a57bd2c490d9218106c6cf7aef1, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: a0ed9a57bd2c490d9218106c6cf7aef1, Index, Value { r#type: Text, value: "a0" } +SetTriple: a0ed9a57bd2c490d9218106c6cf7aef1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a0ed9a57bd2c490d9218106c6cf7aef1, To entity, Value { r#type: Entity, value: "d267c2edcad84e8793abdbf95d6659cc" } +SetTriple: a0ed9a57bd2c490d9218106c6cf7aef1, From entity, Value { r#type: Entity, value: "88314b3c8c9643e79c23e194f67c0302" } +SetTriple: 258905e12d814e14b0a0949d567377ea, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 258905e12d814e14b0a0949d567377ea, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 258905e12d814e14b0a0949d567377ea, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: 258905e12d814e14b0a0949d567377ea, From entity, Value { r#type: Entity, value: "d267c2edcad84e8793abdbf95d6659cc" } +SetTriple: 9906415c22e04def9ab778725c0eceaa, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 9906415c22e04def9ab778725c0eceaa, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9906415c22e04def9ab778725c0eceaa, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9906415c22e04def9ab778725c0eceaa, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 9906415c22e04def9ab778725c0eceaa, From entity, Value { r#type: Entity, value: "d267c2edcad84e8793abdbf95d6659cc" } +SetTriple: fc1a8db53fa34d64a26e00b7a9ab34c3, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: fc1a8db53fa34d64a26e00b7a9ab34c3, Index, Value { r#type: Text, value: "a0" } +SetTriple: fc1a8db53fa34d64a26e00b7a9ab34c3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: fc1a8db53fa34d64a26e00b7a9ab34c3, To entity, Value { r#type: Entity, value: "c4b9a30a92a945748f9b31c41eb8bbd8" } +SetTriple: fc1a8db53fa34d64a26e00b7a9ab34c3, From entity, Value { r#type: Entity, value: "1160ed82001d4d15a998b9044ea7d213" } +SetTriple: 09f689e239e44cbe9516bce11705b5fa, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 09f689e239e44cbe9516bce11705b5fa, Index, Value { r#type: Text, value: "a0" } +SetTriple: 09f689e239e44cbe9516bce11705b5fa, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 09f689e239e44cbe9516bce11705b5fa, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 09f689e239e44cbe9516bce11705b5fa, From entity, Value { r#type: Entity, value: "1160ed82001d4d15a998b9044ea7d213" } +SetTriple: 80c9abb133394c5f9aae786d825f4ad0, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 80c9abb133394c5f9aae786d825f4ad0, Index, Value { r#type: Text, value: "a0" } +SetTriple: 80c9abb133394c5f9aae786d825f4ad0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 80c9abb133394c5f9aae786d825f4ad0, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: 80c9abb133394c5f9aae786d825f4ad0, From entity, Value { r#type: Entity, value: "c4b9a30a92a945748f9b31c41eb8bbd8" } +SetTriple: 3082d14c137f48ed93831e95e5b8782e, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 3082d14c137f48ed93831e95e5b8782e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3082d14c137f48ed93831e95e5b8782e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3082d14c137f48ed93831e95e5b8782e, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 3082d14c137f48ed93831e95e5b8782e, From entity, Value { r#type: Entity, value: "c4b9a30a92a945748f9b31c41eb8bbd8" } +SetTriple: e843f23cb5424ba2a2bef1578f63d08d, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: e843f23cb5424ba2a2bef1578f63d08d, Index, Value { r#type: Text, value: "a0" } +SetTriple: e843f23cb5424ba2a2bef1578f63d08d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e843f23cb5424ba2a2bef1578f63d08d, To entity, Value { r#type: Entity, value: "c8e8fd5f011d4c8e8aaf1a2ffc5b48fd" } +SetTriple: e843f23cb5424ba2a2bef1578f63d08d, From entity, Value { r#type: Entity, value: "9cc8a65ddf924c0c8d9024980e822dc0" } +SetTriple: 854cb29244274bc789c42329c88ecec0, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 854cb29244274bc789c42329c88ecec0, Index, Value { r#type: Text, value: "a0" } +SetTriple: 854cb29244274bc789c42329c88ecec0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 854cb29244274bc789c42329c88ecec0, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 854cb29244274bc789c42329c88ecec0, From entity, Value { r#type: Entity, value: "c8e8fd5f011d4c8e8aaf1a2ffc5b48fd" } +SetTriple: 494fe2295943489b8c98b49cc091e6a4, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 494fe2295943489b8c98b49cc091e6a4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 494fe2295943489b8c98b49cc091e6a4, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 494fe2295943489b8c98b49cc091e6a4, From entity, Value { r#type: Entity, value: "c8e8fd5f011d4c8e8aaf1a2ffc5b48fd" } +SetTriple: be6adbb14c7a4d4286f7a28941668dcb, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: be6adbb14c7a4d4286f7a28941668dcb, Index, Value { r#type: Text, value: "a0" } +SetTriple: be6adbb14c7a4d4286f7a28941668dcb, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: be6adbb14c7a4d4286f7a28941668dcb, To entity, Value { r#type: Entity, value: "c670247893c74af48f2a285a46cc19ca" } +SetTriple: be6adbb14c7a4d4286f7a28941668dcb, From entity, Value { r#type: Entity, value: "9cc8a65ddf924c0c8d9024980e822dc0" } +SetTriple: cfcbb3b06418475a998e886deb3fb845, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: cfcbb3b06418475a998e886deb3fb845, Index, Value { r#type: Text, value: "a0" } +SetTriple: cfcbb3b06418475a998e886deb3fb845, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: cfcbb3b06418475a998e886deb3fb845, To entity, Value { r#type: Entity, value: "6db5eaa51cf6463e88f987bd631db044" } +SetTriple: cfcbb3b06418475a998e886deb3fb845, From entity, Value { r#type: Entity, value: "9cc8a65ddf924c0c8d9024980e822dc0" } +SetTriple: 13f8b421ccc54a67be6436ebf6274151, Index, Value { r#type: Text, value: "a0" } +SetTriple: 13f8b421ccc54a67be6436ebf6274151, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 13f8b421ccc54a67be6436ebf6274151, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 13f8b421ccc54a67be6436ebf6274151, From entity, Value { r#type: Entity, value: "c670247893c74af48f2a285a46cc19ca" } +SetTriple: 5e41a20c2a074975b383f39b0d5ffeda, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 5e41a20c2a074975b383f39b0d5ffeda, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5e41a20c2a074975b383f39b0d5ffeda, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5e41a20c2a074975b383f39b0d5ffeda, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 5e41a20c2a074975b383f39b0d5ffeda, From entity, Value { r#type: Entity, value: "c670247893c74af48f2a285a46cc19ca" } +SetTriple: a548676aac4742e1b19c0a744902d2a3, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: a548676aac4742e1b19c0a744902d2a3, Index, Value { r#type: Text, value: "a0" } +SetTriple: a548676aac4742e1b19c0a744902d2a3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a548676aac4742e1b19c0a744902d2a3, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: a548676aac4742e1b19c0a744902d2a3, From entity, Value { r#type: Entity, value: "6db5eaa51cf6463e88f987bd631db044" } +SetTriple: dbcab69b5e524b1fb18fe418626e0d5e, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: dbcab69b5e524b1fb18fe418626e0d5e, Index, Value { r#type: Text, value: "a0" } +SetTriple: dbcab69b5e524b1fb18fe418626e0d5e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: dbcab69b5e524b1fb18fe418626e0d5e, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: dbcab69b5e524b1fb18fe418626e0d5e, From entity, Value { r#type: Entity, value: "6db5eaa51cf6463e88f987bd631db044" } +SetTriple: 8386a03963c04df6baa63975be07f7d3, From entity, Value { r#type: Entity, value: "d267c2edcad84e8793abdbf95d6659cc" } +SetTriple: 8386a03963c04df6baa63975be07f7d3, To entity, Value { r#type: Entity, value: "88314b3c8c9643e79c23e194f67c0302" } +SetTriple: 494fe2295943489b8c98b49cc091e6a4, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6db5eaa51cf6463e88f987bd631db044, Name, Value { r#type: Text, value: "Mission" } +SetTriple: Mission, Description, Value { r#type: Text, value: "A reference to a Mission" } +SetTriple: c670247893c74af48f2a285a46cc19ca, Name, Value { r#type: Text, value: "Vision" } +SetTriple: Vision, Description, Value { r#type: Text, value: "A reference to a Vision" } +SetTriple: c8e8fd5f011d4c8e8aaf1a2ffc5b48fd, Name, Value { r#type: Text, value: "Values" } +SetTriple: Values, Description, Value { r#type: Text, value: "A set of values that's held by an organization or person" } +SetTriple: ea1afa44547d4b1d9c99dd5f82147fdc, Name, Value { r#type: Text, value: "" } +SetTriple: c4b9a30a92a945748f9b31c41eb8bbd8, Name, Value { r#type: Text, value: "Street address" } +SetTriple: Street address, Description, Value { r#type: Text, value: "The location of a building, apartment, or other structure or a plot of land" } +SetTriple: 1160ed82001d4d15a998b9044ea7d213, Name, Value { r#type: Text, value: "Place" } +SetTriple: Place, Description, Value { r#type: Text, value: "A local business, building, landmark, plot of land, or natural feature." } +SetTriple: d267c2edcad84e8793abdbf95d6659cc, Name, Value { r#type: Text, value: "Price" } +SetTriple: Price, Description, Value { r#type: Text, value: "The value for which something can be bought or sold" } +SetTriple: 88314b3c8c9643e79c23e194f67c0302, Name, Value { r#type: Text, value: "The value type of Pr" } +SetTriple: 2056da31f55343b4b3668ee094719719, Name, Value { r#type: Text, value: "Product" } +SetTriple: Product, Description, Value { r#type: Text, value: "Something that is made that can be bought, sold, or used" } +SetTriple: e44c8cfece754b0fa436efe30f8838a6, From entity, Value { r#type: Entity, value: "16b52120dd5f4caa81c2e23a34c10699" } +SetTriple: e44c8cfece754b0fa436efe30f8838a6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e44c8cfece754b0fa436efe30f8838a6, Index, Value { r#type: Text, value: "a0" } +SetTriple: e44c8cfece754b0fa436efe30f8838a6, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 69661751eb7541e9bb3ca1ffea661af3, From entity, Value { r#type: Entity, value: "16b52120dd5f4caa81c2e23a34c10699" } +SetTriple: 69661751eb7541e9bb3ca1ffea661af3, To entity, Value { r#type: Entity, value: "6db5eaa51cf6463e88f987bd631db044" } +SetTriple: c1acf006615b4774af2c28ae8ba19d93, To entity, Value { r#type: Entity, value: "150243a93a2f4c92997a3ba3fa1a6c75" } +SetTriple: 717e758f92a74a51bc3c28ba150e9baf, Index, Value { r#type: Text, value: "a0" } +SetTriple: 69661751eb7541e9bb3ca1ffea661af3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 69661751eb7541e9bb3ca1ffea661af3, Index, Value { r#type: Text, value: "a0" } +SetTriple: 69661751eb7541e9bb3ca1ffea661af3, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 8b2639471d7c475ab051fa2d94ebdca3, From entity, Value { r#type: Entity, value: "16b52120dd5f4caa81c2e23a34c10699" } +SetTriple: 1390be437d4c4080a925b2f7bc03fc86, Description, Value { r#type: Text, value: "A sentence, phrase, or passage that someone has said or written" } +SetTriple: 8b2639471d7c475ab051fa2d94ebdca3, To entity, Value { r#type: Entity, value: "c670247893c74af48f2a285a46cc19ca" } +SetTriple: 8b2639471d7c475ab051fa2d94ebdca3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8b2639471d7c475ab051fa2d94ebdca3, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8b2639471d7c475ab051fa2d94ebdca3, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 9fde44042fbf43288c3cc0f3add6ef8f, From entity, Value { r#type: Entity, value: "16b52120dd5f4caa81c2e23a34c10699" } +SetTriple: 9fde44042fbf43288c3cc0f3add6ef8f, To entity, Value { r#type: Entity, value: "c8e8fd5f011d4c8e8aaf1a2ffc5b48fd" } +SetTriple: 9fde44042fbf43288c3cc0f3add6ef8f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9fde44042fbf43288c3cc0f3add6ef8f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9fde44042fbf43288c3cc0f3add6ef8f, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: aa5c02b5a9de4c1fbde193c72a72b8f8, From entity, Value { r#type: Entity, value: "150243a93a2f4c92997a3ba3fa1a6c75" } +SetTriple: aa5c02b5a9de4c1fbde193c72a72b8f8, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: aa5c02b5a9de4c1fbde193c72a72b8f8, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: aa5c02b5a9de4c1fbde193c72a72b8f8, Index, Value { r#type: Text, value: "a0" } +SetTriple: aa5c02b5a9de4c1fbde193c72a72b8f8, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 717e758f92a74a51bc3c28ba150e9baf, From entity, Value { r#type: Entity, value: "150243a93a2f4c92997a3ba3fa1a6c75" } +SetTriple: 717e758f92a74a51bc3c28ba150e9baf, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 717e758f92a74a51bc3c28ba150e9baf, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 717e758f92a74a51bc3c28ba150e9baf, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 3420ee655d2c4865960a22bf96eec08a, From entity, Value { r#type: Entity, value: "5259e517814d4772bfa21ce57ca5c5b5" } +SetTriple: 3420ee655d2c4865960a22bf96eec08a, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 3420ee655d2c4865960a22bf96eec08a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3420ee655d2c4865960a22bf96eec08a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3420ee655d2c4865960a22bf96eec08a, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 3c6c6977340e469980a63472729f7af6, From entity, Value { r#type: Entity, value: "5259e517814d4772bfa21ce57ca5c5b5" } +SetTriple: 3c6c6977340e469980a63472729f7af6, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 3c6c6977340e469980a63472729f7af6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3c6c6977340e469980a63472729f7af6, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3c6c6977340e469980a63472729f7af6, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: edd42dca90f9499a9e3b1cbcca6c7ac4, From entity, Value { r#type: Entity, value: "1390be437d4c4080a925b2f7bc03fc86" } +SetTriple: edd42dca90f9499a9e3b1cbcca6c7ac4, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: c1acf006615b4774af2c28ae8ba19d93, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c1acf006615b4774af2c28ae8ba19d93, Index, Value { r#type: Text, value: "a0" } +SetTriple: c1acf006615b4774af2c28ae8ba19d93, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: a204acb81bed4bf98990585e888e9271, From entity, Value { r#type: Entity, value: "1390be437d4c4080a925b2f7bc03fc86" } +SetTriple: a204acb81bed4bf98990585e888e9271, To entity, Value { r#type: Entity, value: "5259e517814d4772bfa21ce57ca5c5b5" } +SetTriple: a204acb81bed4bf98990585e888e9271, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a204acb81bed4bf98990585e888e9271, Index, Value { r#type: Text, value: "a0" } +SetTriple: da2ca289ee2b423f97a883b8b3f441bf, To entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: da2ca289ee2b423f97a883b8b3f441bf, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: da2ca289ee2b423f97a883b8b3f441bf, Index, Value { r#type: Text, value: "a0" } +SetTriple: da2ca289ee2b423f97a883b8b3f441bf, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: edd42dca90f9499a9e3b1cbcca6c7ac4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: edd42dca90f9499a9e3b1cbcca6c7ac4, Index, Value { r#type: Text, value: "a0" } +SetTriple: edd42dca90f9499a9e3b1cbcca6c7ac4, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: c1acf006615b4774af2c28ae8ba19d93, From entity, Value { r#type: Entity, value: "1390be437d4c4080a925b2f7bc03fc86" } +SetTriple: a204acb81bed4bf98990585e888e9271, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: a2303ff15c484aaf845173400f27da16, From entity, Value { r#type: Entity, value: "7fa816a3cb704534934888449869dc33" } +SetTriple: da2ca289ee2b423f97a883b8b3f441bf, From entity, Value { r#type: Entity, value: "38fea29845a648d6bf253c608dcca3fb" } +SetTriple: Location, Description, Value { r#type: Text, value: "Where something is taking place" } +SetTriple: 2df2eb4890bd4b029d131ccaeee2aa4d, From entity, Value { r#type: Entity, value: "38fea29845a648d6bf253c608dcca3fb" } +SetTriple: 2df2eb4890bd4b029d131ccaeee2aa4d, To entity, Value { r#type: Entity, value: "c9935cc57e2e4be68c3cd7acc6ed7b12" } +SetTriple: 2df2eb4890bd4b029d131ccaeee2aa4d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2df2eb4890bd4b029d131ccaeee2aa4d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2df2eb4890bd4b029d131ccaeee2aa4d, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: e44c8cfece754b0fa436efe30f8838a6, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: a2303ff15c484aaf845173400f27da16, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: a2303ff15c484aaf845173400f27da16, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a2303ff15c484aaf845173400f27da16, Index, Value { r#type: Text, value: "a0" } +SetTriple: a2303ff15c484aaf845173400f27da16, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 0c6e2842b6e143638b1bbf5a3e628e8b, From entity, Value { r#type: Entity, value: "7fa816a3cb704534934888449869dc33" } +SetTriple: 0c6e2842b6e143638b1bbf5a3e628e8b, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 0c6e2842b6e143638b1bbf5a3e628e8b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0c6e2842b6e143638b1bbf5a3e628e8b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0c6e2842b6e143638b1bbf5a3e628e8b, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 956274b1a2c944829015159b86cfb02b, From entity, Value { r#type: Entity, value: "1390be437d4c4080a925b2f7bc03fc86" } +SetTriple: 956274b1a2c944829015159b86cfb02b, To entity, Value { r#type: Entity, value: "7fa816a3cb704534934888449869dc33" } +SetTriple: 956274b1a2c944829015159b86cfb02b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 956274b1a2c944829015159b86cfb02b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7fa816a3cb704534934888449869dc33, Description, Value { r#type: Text, value: "A related set of claims" } +SetTriple: 7fa816a3cb704534934888449869dc33, Name, Value { r#type: Text, value: "Claims" } +SetTriple: 1390be437d4c4080a925b2f7bc03fc86, Name, Value { r#type: Text, value: "Quote" } +SetTriple: 5259e517814d4772bfa21ce57ca5c5b5, Description, Value { r#type: Text, value: "A place where a thing or idea originated" } +SetTriple: 956274b1a2c944829015159b86cfb02b, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 5259e517814d4772bfa21ce57ca5c5b5, Name, Value { r#type: Text, value: "Source" } +SetTriple: 150243a93a2f4c92997a3ba3fa1a6c75, Description, Value { r#type: Text, value: "The person or entity that is credited with a work or idea" } +SetTriple: 150243a93a2f4c92997a3ba3fa1a6c75, Name, Value { r#type: Text, value: "Author" } +SetTriple: 16b52120dd5f4caa81c2e23a34c10699, Description, Value { r#type: Text, value: "A decentralized organization with public governance" } +SetTriple: 16b52120dd5f4caa81c2e23a34c10699, Name, Value { r#type: Text, value: "DAO" } +SetTriple: 06375f2ac6a7460c8371187cb761e2be, Description, Value { r#type: Text, value: "A journal is a scholarly publication containing articles written by researchers, professors and other experts. Journals focus on a specific discipline or field of study." } +SetTriple: 2d64755fd63d4611aa39aeec4849cc3b, From entity, Value { r#type: Entity, value: "06375f2ac6a7460c8371187cb761e2be" } +SetTriple: 2d64755fd63d4611aa39aeec4849cc3b, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 2d64755fd63d4611aa39aeec4849cc3b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2d64755fd63d4611aa39aeec4849cc3b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2d64755fd63d4611aa39aeec4849cc3b, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 06375f2ac6a7460c8371187cb761e2be, Name, Value { r#type: Text, value: "Journal" } +SetTriple: 9ae29d4ad9d74380a784e24a17fea8b2, From entity, Value { r#type: Entity, value: "8c28b8fcf64f4e04b830f1a01b74b059" } +SetTriple: 8c28b8fcf64f4e04b830f1a01b74b059, Markdown Content, Value { r#type: Text, value: "A news article is a written or recorded report of current events. It is typically written in a clear and concise style, and it provides readers with the most important information about the event.\n\n" } +SetTriple: 73810f407d0746679f3b9645a07bbe6f, Markdown Content, Value { r#type: Text, value: "Conferences can be large or small, and they can be held in person or online. They can be organized by businesses, organizations, or individuals. Conferences can be a great way to learn new things, meet new people, and stay up-to-date on the latest trends in your field.\n\n" } +SetTriple: e31d261780344452a944239b86635cc5, Markdown Content, Value { r#type: Text, value: "A conference is a gathering of people who come together to discuss a particular topic. Conferences can be held for a variety of purposes, such as to share information, learn new skills, or network with others.\n\n" } +SetTriple: e9c7e74038ba4cf9bfb1d15f9ac3d14f, Markdown Content, Value { r#type: Text, value: "A news network is a company that gathers and distributes news stories to a wide audience. News networks can be broadcast on television, radio, or online.\n\n" } +SetTriple: 6b0a4cbd48da44179bdf861b3c858f49, From entity, Value { r#type: Entity, value: "e9c7e74038ba4cf9bfb1d15f9ac3d14f" } +SetTriple: 6b0a4cbd48da44179bdf861b3c858f49, To entity, Value { r#type: Entity, value: "15234a4c061f46ee90a0c44cd9414cbe" } +SetTriple: 6b0a4cbd48da44179bdf861b3c858f49, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6b0a4cbd48da44179bdf861b3c858f49, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6b0a4cbd48da44179bdf861b3c858f49, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: ea1bad2283ad4b18b9992123a19ff413, From entity, Value { r#type: Entity, value: "e9c7e74038ba4cf9bfb1d15f9ac3d14f" } +SetTriple: ea1bad2283ad4b18b9992123a19ff413, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: ea1bad2283ad4b18b9992123a19ff413, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ea1bad2283ad4b18b9992123a19ff413, Index, Value { r#type: Text, value: "a0" } +SetTriple: ea1bad2283ad4b18b9992123a19ff413, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 3df84a4627254b27832ae91e0f4c72d1, From entity, Value { r#type: Entity, value: "15234a4c061f46ee90a0c44cd9414cbe" } +SetTriple: 3df84a4627254b27832ae91e0f4c72d1, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 3df84a4627254b27832ae91e0f4c72d1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3df84a4627254b27832ae91e0f4c72d1, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3df84a4627254b27832ae91e0f4c72d1, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 5bc327b9b6f145f78ff0768a2dc2d960, From entity, Value { r#type: Entity, value: "15234a4c061f46ee90a0c44cd9414cbe" } +SetTriple: 5bc327b9b6f145f78ff0768a2dc2d960, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: 5bc327b9b6f145f78ff0768a2dc2d960, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5bc327b9b6f145f78ff0768a2dc2d960, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5bc327b9b6f145f78ff0768a2dc2d960, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: e9fb02ec7acc4f2599b16f94edcf8ff7, From entity, Value { r#type: Entity, value: "15234a4c061f46ee90a0c44cd9414cbe" } +SetTriple: e9fb02ec7acc4f2599b16f94edcf8ff7, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: e9fb02ec7acc4f2599b16f94edcf8ff7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e9fb02ec7acc4f2599b16f94edcf8ff7, Index, Value { r#type: Text, value: "a0" } +SetTriple: e9fb02ec7acc4f2599b16f94edcf8ff7, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 8c9e306e3be64e26ba22480725d3bc2b, From entity, Value { r#type: Entity, value: "15234a4c061f46ee90a0c44cd9414cbe" } +SetTriple: 8c9e306e3be64e26ba22480725d3bc2b, To entity, Value { r#type: Entity, value: "71a5569e688e4e0f8eb0d8c361211e7c" } +SetTriple: 8c9e306e3be64e26ba22480725d3bc2b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8c9e306e3be64e26ba22480725d3bc2b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8c9e306e3be64e26ba22480725d3bc2b, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 1fa727fb3965407d98661b6f74b11003, From entity, Value { r#type: Entity, value: "15234a4c061f46ee90a0c44cd9414cbe" } +SetTriple: 1fa727fb3965407d98661b6f74b11003, To entity, Value { r#type: Entity, value: "f724b80589e1424bb149acff9ecfd0f7" } +SetTriple: 1fa727fb3965407d98661b6f74b11003, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1fa727fb3965407d98661b6f74b11003, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1fa727fb3965407d98661b6f74b11003, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 57103c32587b4225988014cfd410c672, From entity, Value { r#type: Entity, value: "15234a4c061f46ee90a0c44cd9414cbe" } +SetTriple: 57103c32587b4225988014cfd410c672, To entity, Value { r#type: Entity, value: "c9935cc57e2e4be68c3cd7acc6ed7b12" } +SetTriple: 57103c32587b4225988014cfd410c672, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 57103c32587b4225988014cfd410c672, Index, Value { r#type: Text, value: "a0" } +SetTriple: 57103c32587b4225988014cfd410c672, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 18a024661a84422bab433d890b23658c, From entity, Value { r#type: Entity, value: "e31d261780344452a944239b86635cc5" } +SetTriple: 18a024661a84422bab433d890b23658c, To entity, Value { r#type: Entity, value: "e1eb2d6e3ba44b17a8e609af50ba1347" } +SetTriple: 18a024661a84422bab433d890b23658c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 18a024661a84422bab433d890b23658c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 18a024661a84422bab433d890b23658c, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 1bb382e4dc7e4f46a2d2cde093993f69, From entity, Value { r#type: Entity, value: "e31d261780344452a944239b86635cc5" } +SetTriple: 1bb382e4dc7e4f46a2d2cde093993f69, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: 1bb382e4dc7e4f46a2d2cde093993f69, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1bb382e4dc7e4f46a2d2cde093993f69, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1bb382e4dc7e4f46a2d2cde093993f69, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 972907e699b0495caf9c6ec1afeb4f5b, From entity, Value { r#type: Entity, value: "73810f407d0746679f3b9645a07bbe6f" } +SetTriple: 972907e699b0495caf9c6ec1afeb4f5b, To entity, Value { r#type: Entity, value: "e1eb2d6e3ba44b17a8e609af50ba1347" } +SetTriple: 972907e699b0495caf9c6ec1afeb4f5b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 972907e699b0495caf9c6ec1afeb4f5b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 972907e699b0495caf9c6ec1afeb4f5b, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 1974361502f44ff5bcbf4b7e9f694f3b, From entity, Value { r#type: Entity, value: "73810f407d0746679f3b9645a07bbe6f" } +SetTriple: 1974361502f44ff5bcbf4b7e9f694f3b, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: 1974361502f44ff5bcbf4b7e9f694f3b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1974361502f44ff5bcbf4b7e9f694f3b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1974361502f44ff5bcbf4b7e9f694f3b, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 30699a85686b4f9e99baee844cf71fb0, From entity, Value { r#type: Entity, value: "e1eb2d6e3ba44b17a8e609af50ba1347" } +SetTriple: 30699a85686b4f9e99baee844cf71fb0, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 30699a85686b4f9e99baee844cf71fb0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 30699a85686b4f9e99baee844cf71fb0, Index, Value { r#type: Text, value: "a0" } +SetTriple: 30699a85686b4f9e99baee844cf71fb0, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: d290333303d84493b97b55f17bafe1f2, From entity, Value { r#type: Entity, value: "e1eb2d6e3ba44b17a8e609af50ba1347" } +SetTriple: d290333303d84493b97b55f17bafe1f2, To entity, Value { r#type: Entity, value: "c9935cc57e2e4be68c3cd7acc6ed7b12" } +SetTriple: d290333303d84493b97b55f17bafe1f2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d290333303d84493b97b55f17bafe1f2, Index, Value { r#type: Text, value: "a0" } +SetTriple: d290333303d84493b97b55f17bafe1f2, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 0808f6e02dff4c72a1d7063446cd551b, From entity, Value { r#type: Entity, value: "e1eb2d6e3ba44b17a8e609af50ba1347" } +SetTriple: 0808f6e02dff4c72a1d7063446cd551b, To entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: 0808f6e02dff4c72a1d7063446cd551b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0808f6e02dff4c72a1d7063446cd551b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0808f6e02dff4c72a1d7063446cd551b, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 0d6d508360fa4ef2a4ce7cb3a907e971, From entity, Value { r#type: Entity, value: "e1eb2d6e3ba44b17a8e609af50ba1347" } +SetTriple: 0d6d508360fa4ef2a4ce7cb3a907e971, To entity, Value { r#type: Entity, value: "b6009f6600b04baab86f97db7bcbb14a" } +SetTriple: 0d6d508360fa4ef2a4ce7cb3a907e971, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0d6d508360fa4ef2a4ce7cb3a907e971, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0d6d508360fa4ef2a4ce7cb3a907e971, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: a6adab6488b74295b9f66b996ebedbd3, From entity, Value { r#type: Entity, value: "e1eb2d6e3ba44b17a8e609af50ba1347" } +SetTriple: a6adab6488b74295b9f66b996ebedbd3, To entity, Value { r#type: Entity, value: "c63271bfe4f34d74b4797dca335c280a" } +SetTriple: 15234a4c061f46ee90a0c44cd9414cbe, Name, Value { r#type: Text, value: "News network" } +SetTriple: News network, Description, Value { r#type: Text, value: "A news network is a company that gathers and distributes news stories to a wide audience. News networks can be broadcast on television, radio, or online." } +SetTriple: a6adab6488b74295b9f66b996ebedbd3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e9c7e74038ba4cf9bfb1d15f9ac3d14f, Name, Value { r#type: Text, value: "A news network is a " } +SetTriple: e1eb2d6e3ba44b17a8e609af50ba1347, Description, Value { r#type: Text, value: "A conference is a gathering of people who come together to discuss a particular topic. Conferences can be held for a variety of purposes, such as to share information, learn new skills, or network with others." } +SetTriple: 26ccb6918cfc4b948ccc168564e2bfdf, Description, Value { r#type: Text, value: "The date something was published (MM/DD/YYYY)" } +SetTriple: 724d29589d5443c8af52e3feb24cdf88, Name, Value { r#type: Text, value: "News article" } +SetTriple: 8c28b8fcf64f4e04b830f1a01b74b059, Name, Value { r#type: Text, value: "A news article is a " } +SetTriple: News article, Description, Value { r#type: Text, value: "A news article is a written or recorded report of current events." } +SetTriple: a6adab6488b74295b9f66b996ebedbd3, Index, Value { r#type: Text, value: "a0" } +SetTriple: a6adab6488b74295b9f66b996ebedbd3, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 4f7f1b89168141d09f955928aa253697, From entity, Value { r#type: Entity, value: "e1eb2d6e3ba44b17a8e609af50ba1347" } +SetTriple: 4f7f1b89168141d09f955928aa253697, To entity, Value { r#type: Entity, value: "f724b80589e1424bb149acff9ecfd0f7" } +SetTriple: 4f7f1b89168141d09f955928aa253697, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4f7f1b89168141d09f955928aa253697, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4f7f1b89168141d09f955928aa253697, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 18eaf997e2c7439d86ca918d00eca0d5, From entity, Value { r#type: Entity, value: "26ccb6918cfc4b948ccc168564e2bfdf" } +SetTriple: 18eaf997e2c7439d86ca918d00eca0d5, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 18eaf997e2c7439d86ca918d00eca0d5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 18eaf997e2c7439d86ca918d00eca0d5, Index, Value { r#type: Text, value: "a0" } +SetTriple: 18eaf997e2c7439d86ca918d00eca0d5, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: a157d4031e3849b8aa0d8004ef5192c1, From entity, Value { r#type: Entity, value: "26ccb6918cfc4b948ccc168564e2bfdf" } +SetTriple: a157d4031e3849b8aa0d8004ef5192c1, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: a157d4031e3849b8aa0d8004ef5192c1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a157d4031e3849b8aa0d8004ef5192c1, Index, Value { r#type: Text, value: "a0" } +SetTriple: a157d4031e3849b8aa0d8004ef5192c1, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 9ae29d4ad9d74380a784e24a17fea8b2, To entity, Value { r#type: Entity, value: "724d29589d5443c8af52e3feb24cdf88" } +SetTriple: 9ae29d4ad9d74380a784e24a17fea8b2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9ae29d4ad9d74380a784e24a17fea8b2, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9ae29d4ad9d74380a784e24a17fea8b2, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: dd7d4842807047de828eb23d7ac8a4fc, From entity, Value { r#type: Entity, value: "8c28b8fcf64f4e04b830f1a01b74b059" } +SetTriple: dd7d4842807047de828eb23d7ac8a4fc, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: dd7d4842807047de828eb23d7ac8a4fc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: dd7d4842807047de828eb23d7ac8a4fc, Index, Value { r#type: Text, value: "a0" } +SetTriple: dd7d4842807047de828eb23d7ac8a4fc, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 231762835b0c475789203d33632ccd65, From entity, Value { r#type: Entity, value: "724d29589d5443c8af52e3feb24cdf88" } +SetTriple: 231762835b0c475789203d33632ccd65, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 231762835b0c475789203d33632ccd65, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 231762835b0c475789203d33632ccd65, Index, Value { r#type: Text, value: "a0" } +SetTriple: 231762835b0c475789203d33632ccd65, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 26ccb6918cfc4b948ccc168564e2bfdf, Name, Value { r#type: Text, value: "Publish date" } +SetTriple: 73810f407d0746679f3b9645a07bbe6f, Name, Value { r#type: Text, value: "Conferences can be l" } +SetTriple: e31d261780344452a944239b86635cc5, Name, Value { r#type: Text, value: "A conference is a ga" } +SetTriple: e1eb2d6e3ba44b17a8e609af50ba1347, Name, Value { r#type: Text, value: "Conference" } +SetTriple: bd73055aafa646eb90b5954a297358a8, From entity, Value { r#type: Entity, value: "724d29589d5443c8af52e3feb24cdf88" } +SetTriple: bd73055aafa646eb90b5954a297358a8, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: bd73055aafa646eb90b5954a297358a8, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1cc51939b58f49458c7d67964f67bea6, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 1cc51939b58f49458c7d67964f67bea6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1cc51939b58f49458c7d67964f67bea6, Index, Value { r#type: Text, value: "a0" } +SetTriple: 96cf1b26a3bc4d809e76d5103757a5c1, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 96cf1b26a3bc4d809e76d5103757a5c1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 96cf1b26a3bc4d809e76d5103757a5c1, Index, Value { r#type: Text, value: "a1" } +SetTriple: 2619f69260ee4c438aa4ed565ced8da6, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 2619f69260ee4c438aa4ed565ced8da6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2619f69260ee4c438aa4ed565ced8da6, Index, Value { r#type: Text, value: "a0" } +SetTriple: ec25dc10012b4c0581c91d4a111115d2, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: ec25dc10012b4c0581c91d4a111115d2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ec25dc10012b4c0581c91d4a111115d2, Index, Value { r#type: Text, value: "a0" } +SetTriple: bd73055aafa646eb90b5954a297358a8, Index, Value { r#type: Text, value: "a0" } +SetTriple: bd73055aafa646eb90b5954a297358a8, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: fe767c1f958846daac20115c717d27ba, From entity, Value { r#type: Entity, value: "724d29589d5443c8af52e3feb24cdf88" } +SetTriple: fe767c1f958846daac20115c717d27ba, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: fe767c1f958846daac20115c717d27ba, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: fe767c1f958846daac20115c717d27ba, Index, Value { r#type: Text, value: "a0" } +SetTriple: fe767c1f958846daac20115c717d27ba, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: cf40e8e0fb2b42878c2b9e3cb0c2b4f4, From entity, Value { r#type: Entity, value: "724d29589d5443c8af52e3feb24cdf88" } +SetTriple: cf40e8e0fb2b42878c2b9e3cb0c2b4f4, To entity, Value { r#type: Entity, value: "e8010874d3304a4d990762e89a19371a" } +SetTriple: cf40e8e0fb2b42878c2b9e3cb0c2b4f4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: cf40e8e0fb2b42878c2b9e3cb0c2b4f4, Index, Value { r#type: Text, value: "a0" } +SetTriple: cf40e8e0fb2b42878c2b9e3cb0c2b4f4, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: bbdf5ac0dca34d7e9a327859fdf59342, From entity, Value { r#type: Entity, value: "724d29589d5443c8af52e3feb24cdf88" } +SetTriple: bbdf5ac0dca34d7e9a327859fdf59342, To entity, Value { r#type: Entity, value: "150243a93a2f4c92997a3ba3fa1a6c75" } +SetTriple: bbdf5ac0dca34d7e9a327859fdf59342, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bbdf5ac0dca34d7e9a327859fdf59342, Index, Value { r#type: Text, value: "a0" } +SetTriple: bbdf5ac0dca34d7e9a327859fdf59342, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: ddfb0cf760a6414d8aac35a4a46638b0, From entity, Value { r#type: Entity, value: "724d29589d5443c8af52e3feb24cdf88" } +SetTriple: ddfb0cf760a6414d8aac35a4a46638b0, To entity, Value { r#type: Entity, value: "26ccb6918cfc4b948ccc168564e2bfdf" } +SetTriple: ddfb0cf760a6414d8aac35a4a46638b0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ddfb0cf760a6414d8aac35a4a46638b0, Index, Value { r#type: Text, value: "a0" } +SetTriple: ddfb0cf760a6414d8aac35a4a46638b0, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 1cc51939b58f49458c7d67964f67bea6, To entity, Value { r#type: Entity, value: "8c28b8fcf64f4e04b830f1a01b74b059" } +SetTriple: 1cc51939b58f49458c7d67964f67bea6, From entity, Value { r#type: Entity, value: "724d29589d5443c8af52e3feb24cdf88" } +SetTriple: 96cf1b26a3bc4d809e76d5103757a5c1, To entity, Value { r#type: Entity, value: "73810f407d0746679f3b9645a07bbe6f" } +SetTriple: 96cf1b26a3bc4d809e76d5103757a5c1, From entity, Value { r#type: Entity, value: "e1eb2d6e3ba44b17a8e609af50ba1347" } +SetTriple: 2619f69260ee4c438aa4ed565ced8da6, To entity, Value { r#type: Entity, value: "e31d261780344452a944239b86635cc5" } +SetTriple: 2619f69260ee4c438aa4ed565ced8da6, From entity, Value { r#type: Entity, value: "e1eb2d6e3ba44b17a8e609af50ba1347" } +SetTriple: ec25dc10012b4c0581c91d4a111115d2, To entity, Value { r#type: Entity, value: "e9c7e74038ba4cf9bfb1d15f9ac3d14f" } +SetTriple: ec25dc10012b4c0581c91d4a111115d2, From entity, Value { r#type: Entity, value: "15234a4c061f46ee90a0c44cd9414cbe" } +SetTriple: c41865e14d484509a26a87f57624ac0d, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: News article, Name, Value { r#type: Text, value: "Article" } +SetTriple: e40b39dc2853404b9d06bf89ee241afd, Description, Value { r#type: Text, value: "A reference to an outlet that publishes media content including articles, videos, photos and podcasts." } +SetTriple: 5c441f4a10fb4dffbaf543e5dca69498, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9c66567409964eda9d78938860d07406, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 9c66567409964eda9d78938860d07406, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9c66567409964eda9d78938860d07406, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5c441f4a10fb4dffbaf543e5dca69498, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5c441f4a10fb4dffbaf543e5dca69498, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 7ca11d7a26af43bdad0567c70af4d72f, From entity, Value { r#type: Entity, value: "e40b39dc2853404b9d06bf89ee241afd" } +SetTriple: 7ca11d7a26af43bdad0567c70af4d72f, To entity, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 7ca11d7a26af43bdad0567c70af4d72f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7ca11d7a26af43bdad0567c70af4d72f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7ca11d7a26af43bdad0567c70af4d72f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 9c66567409964eda9d78938860d07406, From entity, Value { r#type: Entity, value: "e40b39dc2853404b9d06bf89ee241afd" } +SetTriple: 49f075352b4e423488e9bc0853284301, From entity, Value { r#type: Entity, value: "724d29589d5443c8af52e3feb24cdf88" } +SetTriple: 49f075352b4e423488e9bc0853284301, To entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: 49f075352b4e423488e9bc0853284301, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 49f075352b4e423488e9bc0853284301, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 9f33cd636f724eafb56e0bd3ae0931dc, From entity, Value { r#type: Entity, value: "724d29589d5443c8af52e3feb24cdf88" } +SetTriple: 9f33cd636f724eafb56e0bd3ae0931dc, To entity, Value { r#type: Entity, value: "e40b39dc2853404b9d06bf89ee241afd" } +SetTriple: 9f33cd636f724eafb56e0bd3ae0931dc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9f33cd636f724eafb56e0bd3ae0931dc, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9f33cd636f724eafb56e0bd3ae0931dc, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 7c3feb21985a4262a2a098a27b0032a6, From entity, Value { r#type: Entity, value: "0a5195dc42a34327a727df4b3392df65" } +SetTriple: 7c3feb21985a4262a2a098a27b0032a6, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 7c3feb21985a4262a2a098a27b0032a6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7c3feb21985a4262a2a098a27b0032a6, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7c3feb21985a4262a2a098a27b0032a6, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 83a5998a7f7148b398a8e0aaddc5671c, From entity, Value { r#type: Entity, value: "0a5195dc42a34327a727df4b3392df65" } +SetTriple: 83a5998a7f7148b398a8e0aaddc5671c, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: 83a5998a7f7148b398a8e0aaddc5671c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 83a5998a7f7148b398a8e0aaddc5671c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 83a5998a7f7148b398a8e0aaddc5671c, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: d8b98df63b8d4909a90c6e78a24ab871, From entity, Value { r#type: Entity, value: "0a5195dc42a34327a727df4b3392df65" } +SetTriple: d8b98df63b8d4909a90c6e78a24ab871, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: d8b98df63b8d4909a90c6e78a24ab871, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d8b98df63b8d4909a90c6e78a24ab871, Index, Value { r#type: Text, value: "a0" } +SetTriple: d8b98df63b8d4909a90c6e78a24ab871, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: c41865e14d484509a26a87f57624ac0d, From entity, Value { r#type: Entity, value: "0a5195dc42a34327a727df4b3392df65" } +SetTriple: c41865e14d484509a26a87f57624ac0d, To entity, Value { r#type: Entity, value: "e8010874d3304a4d990762e89a19371a" } +SetTriple: c41865e14d484509a26a87f57624ac0d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c41865e14d484509a26a87f57624ac0d, Index, Value { r#type: Text, value: "a0" } +SetTriple: Article, Description, Value { r#type: Text, value: "An article is a piece of writing that presents information or ideas on a particular subject." } +SetTriple: 0a5195dc42a34327a727df4b3392df65, Name, Value { r#type: Text, value: "News" } +SetTriple: News, Description, Value { r#type: Text, value: "Information about something that has just happened or will happen soon. News is a report about recent happenings, is something that is not known earlier." } +SetTriple: e40b39dc2853404b9d06bf89ee241afd, Name, Value { r#type: Text, value: "Publisher" } +SetTriple: 38eae61466eb428ba8a4d12e112f055e, Name, Value { r#type: Text, value: "A reference to an ou" } +SetTriple: 49f075352b4e423488e9bc0853284301, Index, Value { r#type: Text, value: "a0" } +SetTriple: A reference to an ou, Markdown Content, Value { r#type: Text, value: "A reference to an outlet that publishes media content including articles, videos, photos and podcasts.\n\n" } +SetTriple: A news article is a , Markdown Content, Value { r#type: Text, value: "An article is a piece of writing that presents information or ideas on a particular subject.\n\n" } +SetTriple: 9c66567409964eda9d78938860d07406, To entity, Value { r#type: Entity, value: "38eae61466eb428ba8a4d12e112f055e" } +SetTriple: A news article is a , Name, Value { r#type: Text, value: "An article is a piec" } +SetTriple: 2b91898d319d40f5bd1a800748c9d62a, From entity, Value { r#type: Entity, value: "38eae61466eb428ba8a4d12e112f055e" } +SetTriple: 2b91898d319d40f5bd1a800748c9d62a, To entity, Value { r#type: Entity, value: "e40b39dc2853404b9d06bf89ee241afd" } +SetTriple: 2b91898d319d40f5bd1a800748c9d62a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2b91898d319d40f5bd1a800748c9d62a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2b91898d319d40f5bd1a800748c9d62a, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 5c441f4a10fb4dffbaf543e5dca69498, From entity, Value { r#type: Entity, value: "38eae61466eb428ba8a4d12e112f055e" } +SetTriple: 5c441f4a10fb4dffbaf543e5dca69498, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: 9aedf4a512d54f7faaeb59860834fcf3, Name, Value { r#type: Text, value: "Education" } +SetTriple: Education, Space, Value { r#type: Text, value: "0xA2BBB63667917d88DaD3DC70A11EE4354D6f5d36" } +SetTriple: 159d3c7af9d149a5a4315d181dd2ca02, From entity, Value { r#type: Entity, value: "9aedf4a512d54f7faaeb59860834fcf3" } +SetTriple: 159d3c7af9d149a5a4315d181dd2ca02, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 159d3c7af9d149a5a4315d181dd2ca02, Index, Value { r#type: Text, value: "a0" } +SetTriple: 159d3c7af9d149a5a4315d181dd2ca02, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: Education, Image, Value { r#type: Text, value: "https://api.thegraph.com/ipfs/api/v0/cat?arg=QmQV1pqjUTxpDP1vrMS4oRbTgM8nQJkUXPDZ3CRoRmbQsr" } +SetTriple: 159d3c7af9d149a5a4315d181dd2ca02, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8c12f294149e4543ae0a414e0b893cb0, Image, Value { r#type: Text, value: "https://api.thegraph.com/ipfs/api/v0/cat?arg=QmRkYTXjPFpH6XUhSfo9pPBiLE5VTGneAu4axL3Skq1taR" } +SetTriple: 79bd68ca0f1b4df3af5937e996edbc1a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 79bd68ca0f1b4df3af5937e996edbc1a, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 79bd68ca0f1b4df3af5937e996edbc1a, From entity, Value { r#type: Entity, value: "8c12f294149e4543ae0a414e0b893cb0" } +SetTriple: 8c12f294149e4543ae0a414e0b893cb0, Name, Value { r#type: Text, value: "Psychology" } +SetTriple: 79bd68ca0f1b4df3af5937e996edbc1a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 79bd68ca0f1b4df3af5937e996edbc1a, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: Psychology, Space, Value { r#type: Text, value: "0x93EB1E3b864A5A5108F298A76f18E265eD458f83" } +SetTriple: b51b4970fb2f456d84c6922d97d3438f, Image, Value { r#type: Text, value: "https://api.thegraph.com/ipfs/api/v0/cat?arg=QmQt4FGZz1i3VQ1TmaJ5kBhH4bvHgRxLt5P7a7vDZEH14c" } +SetTriple: b51b4970fb2f456d84c6922d97d3438f, Name, Value { r#type: Text, value: "Software" } +SetTriple: Software, Space, Value { r#type: Text, value: "0xD5445416E19Cc19451b3eBF3C31c434664Ad4310" } +SetTriple: 41c14ab77bb145fc990fafa5ba4e9a16, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 41c14ab77bb145fc990fafa5ba4e9a16, Index, Value { r#type: Text, value: "a0" } +SetTriple: 41c14ab77bb145fc990fafa5ba4e9a16, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 41c14ab77bb145fc990fafa5ba4e9a16, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: 41c14ab77bb145fc990fafa5ba4e9a16, From entity, Value { r#type: Entity, value: "b51b4970fb2f456d84c6922d97d3438f" } +SetTriple: ea81baf584134b52ae6d3a5a6756fdd1, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: ea81baf584134b52ae6d3a5a6756fdd1, From entity, Value { r#type: Entity, value: "f9544fc545b54a20a8ba309deb94b5ac" } +SetTriple: f9544fc545b54a20a8ba309deb94b5ac, Space, Value { r#type: Text, value: "0xC3819cbe5e3A2afe1884F0Ef97949bC989387061" } +SetTriple: f9544fc545b54a20a8ba309deb94b5ac, Name, Value { r#type: Text, value: " News" } +SetTriple: News, Image, Value { r#type: Text, value: "https://api.thegraph.com/ipfs/api/v0/cat?arg=QmWdKQNEq9tqHuCvWFQSxmnro4iQ21arhToAzvJ9NSaJU5" } +SetTriple: ea81baf584134b52ae6d3a5a6756fdd1, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: ea81baf584134b52ae6d3a5a6756fdd1, Index, Value { r#type: Text, value: "a0" } +SetTriple: ea81baf584134b52ae6d3a5a6756fdd1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 75c58da926084665a703544343809be9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 75c58da926084665a703544343809be9, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 75c58da926084665a703544343809be9, Index, Value { r#type: Text, value: "a0" } +SetTriple: f7f52783afbc48d0ac237502801ba076, Name, Value { r#type: Text, value: "Cryptography" } +SetTriple: Cryptography, Space, Value { r#type: Text, value: "0xAA23D756137665Ac6D665Fa6808D76094F45dFCa" } +SetTriple: 75c58da926084665a703544343809be9, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: 75c58da926084665a703544343809be9, From entity, Value { r#type: Entity, value: "f7f52783afbc48d0ac237502801ba076" } +SetTriple: Cryptography, Image, Value { r#type: Text, value: "https://api.thegraph.com/ipfs/api/v0/cat?arg=QmQ9QDJJxnMkqfNvbjdgTwCfBuiQ6zWz7jpz1ChovGG5dn" } +SetTriple: Social Work, Image, Value { r#type: Text, value: "https://api.thegraph.com/ipfs/api/v0/cat?arg=QmdFGfsfspuCdubtJjnTfEcTsNr47voySUXTi3Pf8VW8uw" } +SetTriple: News, Name, Value { r#type: Text, value: "News" } +SetTriple: b8fadf7841964af9aa02b2c88633c754, Index, Value { r#type: Text, value: "a0" } +SetTriple: b8fadf7841964af9aa02b2c88633c754, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 53c883a087cc4a21884aa48f6dbeb0fc, From entity, Value { r#type: Entity, value: "4c4ce512ba7b45a6843ba268c0e554a0" } +SetTriple: 53c883a087cc4a21884aa48f6dbeb0fc, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 53c883a087cc4a21884aa48f6dbeb0fc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 53c883a087cc4a21884aa48f6dbeb0fc, Index, Value { r#type: Text, value: "a0" } +SetTriple: 53c883a087cc4a21884aa48f6dbeb0fc, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 29e52b5baa90460fa4db760d79fa1459, From entity, Value { r#type: Entity, value: "4c4ce512ba7b45a6843ba268c0e554a0" } +SetTriple: 29e52b5baa90460fa4db760d79fa1459, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: 29e52b5baa90460fa4db760d79fa1459, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 29e52b5baa90460fa4db760d79fa1459, Index, Value { r#type: Text, value: "a0" } +SetTriple: 29e52b5baa90460fa4db760d79fa1459, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: b8fadf7841964af9aa02b2c88633c754, From entity, Value { r#type: Entity, value: "38fea29845a648d6bf253c608dcca3fb" } +SetTriple: b8fadf7841964af9aa02b2c88633c754, To entity, Value { r#type: Entity, value: "4c4ce512ba7b45a6843ba268c0e554a0" } +SetTriple: b8fadf7841964af9aa02b2c88633c754, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4c4ce512ba7b45a6843ba268c0e554a0, Description, Value { r#type: Text, value: "The time that something is taking place or has occurred" } +SetTriple: 4c4ce512ba7b45a6843ba268c0e554a0, Name, Value { r#type: Text, value: "Time" } +SetTriple: cfda4ce546be48acbcb20043a4578799, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7a5e199b00b04c68834aafcd18673b4c, Description, Value { r#type: Text, value: "A guide that teach people how to do something." } +SetTriple: cfda4ce546be48acbcb20043a4578799, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: e3445974fcbe4dbc8e4637d0086d5b33, From entity, Value { r#type: Entity, value: "7a5e199b00b04c68834aafcd18673b4c" } +SetTriple: e3445974fcbe4dbc8e4637d0086d5b33, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 7a5e199b00b04c68834aafcd18673b4c, Name, Value { r#type: Text, value: "Tutorial" } +SetTriple: e3445974fcbe4dbc8e4637d0086d5b33, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e3445974fcbe4dbc8e4637d0086d5b33, Index, Value { r#type: Text, value: "a0" } +SetTriple: e3445974fcbe4dbc8e4637d0086d5b33, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: cfda4ce546be48acbcb20043a4578799, From entity, Value { r#type: Entity, value: "7a5e199b00b04c68834aafcd18673b4c" } +SetTriple: cfda4ce546be48acbcb20043a4578799, To entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: cfda4ce546be48acbcb20043a4578799, Index, Value { r#type: Text, value: "a0" } +SetTriple: 23d0690e30294978a916ce7a5ab2e442, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 23d0690e30294978a916ce7a5ab2e442, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 23d0690e30294978a916ce7a5ab2e442, Index, Value { r#type: Text, value: "a0" } +SetTriple: 23d0690e30294978a916ce7a5ab2e442, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 3c6600c99b02426ea4f7bc66951d95dc, From entity, Value { r#type: Entity, value: "9098dd136b2a4b91b88fdcb89635697b" } +SetTriple: 3c6600c99b02426ea4f7bc66951d95dc, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 3c6600c99b02426ea4f7bc66951d95dc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 08d32f27ab584423978ead9d8fbcbfbc, Index, Value { r#type: Text, value: "a0" } +SetTriple: 08d32f27ab584423978ead9d8fbcbfbc, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 35a11b554cb54bee90826ce2af16953d, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 35a11b554cb54bee90826ce2af16953d, From entity, Value { r#type: Entity, value: "feb63aba3b23478eb8a6832bdf25f87a" } +SetTriple: d41fa8a0bf5545778f92a10023188fac, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: d41fa8a0bf5545778f92a10023188fac, Index, Value { r#type: Text, value: "a0" } +SetTriple: d41fa8a0bf5545778f92a10023188fac, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d41fa8a0bf5545778f92a10023188fac, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: d41fa8a0bf5545778f92a10023188fac, From entity, Value { r#type: Entity, value: "9098dd136b2a4b91b88fdcb89635697b" } +SetTriple: 3c6600c99b02426ea4f7bc66951d95dc, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 35a11b554cb54bee90826ce2af16953d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3c6600c99b02426ea4f7bc66951d95dc, Index, Value { r#type: Text, value: "a0" } +SetTriple: b78a312a55664b809960099145e71c89, Name, Value { r#type: Text, value: "Problems" } +SetTriple: Problems, Description, Value { r#type: Text, value: "Related problems" } +SetTriple: 9098dd136b2a4b91b88fdcb89635697b, Name, Value { r#type: Text, value: "Solutions" } +SetTriple: Solutions, Description, Value { r#type: Text, value: "Related solutions" } +SetTriple: feb63aba3b23478eb8a6832bdf25f87a, Name, Value { r#type: Text, value: "Problem" } +SetTriple: Problem, Description, Value { r#type: Text, value: "An issue that needs to be fixed" } +SetTriple: 3282ff6808804059bbffce241cc0d7da, Name, Value { r#type: Text, value: "Solution" } +SetTriple: Solution, Description, Value { r#type: Text, value: "A way to solve a problem" } +SetTriple: 35a11b554cb54bee90826ce2af16953d, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: a8d4aea4e4df4f2d8f492f6cd947d57c, From entity, Value { r#type: Entity, value: "feb63aba3b23478eb8a6832bdf25f87a" } +SetTriple: 35a11b554cb54bee90826ce2af16953d, Index, Value { r#type: Text, value: "a0" } +SetTriple: a8d4aea4e4df4f2d8f492f6cd947d57c, To entity, Value { r#type: Entity, value: "9098dd136b2a4b91b88fdcb89635697b" } +SetTriple: a8d4aea4e4df4f2d8f492f6cd947d57c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a8d4aea4e4df4f2d8f492f6cd947d57c, Index, Value { r#type: Text, value: "a0" } +SetTriple: a8d4aea4e4df4f2d8f492f6cd947d57c, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 13ff3c30d9c1433daf40705f1a927481, From entity, Value { r#type: Entity, value: "3282ff6808804059bbffce241cc0d7da" } +SetTriple: 13ff3c30d9c1433daf40705f1a927481, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 13ff3c30d9c1433daf40705f1a927481, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 13ff3c30d9c1433daf40705f1a927481, Index, Value { r#type: Text, value: "a0" } +SetTriple: 13ff3c30d9c1433daf40705f1a927481, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 08d32f27ab584423978ead9d8fbcbfbc, From entity, Value { r#type: Entity, value: "3282ff6808804059bbffce241cc0d7da" } +SetTriple: 08d32f27ab584423978ead9d8fbcbfbc, To entity, Value { r#type: Entity, value: "b78a312a55664b809960099145e71c89" } +SetTriple: 08d32f27ab584423978ead9d8fbcbfbc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0f22a68fd67842a29be91ac2dddca596, From entity, Value { r#type: Entity, value: "b78a312a55664b809960099145e71c89" } +SetTriple: 0f22a68fd67842a29be91ac2dddca596, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 0f22a68fd67842a29be91ac2dddca596, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0f22a68fd67842a29be91ac2dddca596, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0f22a68fd67842a29be91ac2dddca596, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 23d0690e30294978a916ce7a5ab2e442, From entity, Value { r#type: Entity, value: "b78a312a55664b809960099145e71c89" } +SetTriple: 1a24bbb410ab4b0585e0e4bd890211ac, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 118beee009ab4c1ab20eac76470004d1, To entity, Value { r#type: Entity, value: "7fa816a3cb704534934888449869dc33" } +SetTriple: 118beee009ab4c1ab20eac76470004d1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 118beee009ab4c1ab20eac76470004d1, Index, Value { r#type: Text, value: "a0" } +SetTriple: 118beee009ab4c1ab20eac76470004d1, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: b66dbefa9d754c0bad0cb6299890e9f5, From entity, Value { r#type: Entity, value: "1390be437d4c4080a925b2f7bc03fc86" } +SetTriple: b66dbefa9d754c0bad0cb6299890e9f5, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: b66dbefa9d754c0bad0cb6299890e9f5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b66dbefa9d754c0bad0cb6299890e9f5, Index, Value { r#type: Text, value: "a0" } +SetTriple: b66dbefa9d754c0bad0cb6299890e9f5, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 0d2d7155aa204b5694717047bd71ed24, From entity, Value { r#type: Entity, value: "1390be437d4c4080a925b2f7bc03fc86" } +SetTriple: 0d2d7155aa204b5694717047bd71ed24, To entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: 0d2d7155aa204b5694717047bd71ed24, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0d2d7155aa204b5694717047bd71ed24, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0d2d7155aa204b5694717047bd71ed24, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: bf3eab9b76ee42d2b835e5e66405645c, From entity, Value { r#type: Entity, value: "f71912463dca4e778a79d9cdc9804127" } +SetTriple: bf3eab9b76ee42d2b835e5e66405645c, To entity, Value { r#type: Entity, value: "7fa816a3cb704534934888449869dc33" } +SetTriple: bf3eab9b76ee42d2b835e5e66405645c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bf3eab9b76ee42d2b835e5e66405645c, Index, Value { r#type: Text, value: "a0" } +SetTriple: bf3eab9b76ee42d2b835e5e66405645c, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 1a24bbb410ab4b0585e0e4bd890211ac, From entity, Value { r#type: Entity, value: "1d7f027e415c4f69800e460fde65feb9" } +SetTriple: 1a24bbb410ab4b0585e0e4bd890211ac, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 1a24bbb410ab4b0585e0e4bd890211ac, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1a24bbb410ab4b0585e0e4bd890211ac, Index, Value { r#type: Text, value: "a0" } +SetTriple: 118beee009ab4c1ab20eac76470004d1, From entity, Value { r#type: Entity, value: "1d7f027e415c4f69800e460fde65feb9" } +SetTriple: a78e628f70e34806910d2c3974e2b570, Index, Value { r#type: Text, value: "a0" } +SetTriple: a78e628f70e34806910d2c3974e2b570, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a78e628f70e34806910d2c3974e2b570, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: a78e628f70e34806910d2c3974e2b570, From entity, Value { r#type: Entity, value: "38fea29845a648d6bf253c608dcca3fb" } +SetTriple: 9ad1abda27a540949a3a50ddfcb45d11, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 9ad1abda27a540949a3a50ddfcb45d11, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9ad1abda27a540949a3a50ddfcb45d11, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 9ad1abda27a540949a3a50ddfcb45d11, From entity, Value { r#type: Entity, value: "e46b9b82c9414bf49ea5915f952aa687" } +SetTriple: 5de750388bd54066bd1a3af70b334d11, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 5de750388bd54066bd1a3af70b334d11, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5de750388bd54066bd1a3af70b334d11, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5de750388bd54066bd1a3af70b334d11, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 5de750388bd54066bd1a3af70b334d11, From entity, Value { r#type: Entity, value: "e46b9b82c9414bf49ea5915f952aa687" } +SetTriple: 9ad1abda27a540949a3a50ddfcb45d11, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8a8f8a897409437bab45b6f304b8a200, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8a8f8a897409437bab45b6f304b8a200, To entity, Value { r#type: Entity, value: "e46b9b82c9414bf49ea5915f952aa687" } +SetTriple: 8a8f8a897409437bab45b6f304b8a200, From entity, Value { r#type: Entity, value: "38fea29845a648d6bf253c608dcca3fb" } +SetTriple: a78e628f70e34806910d2c3974e2b570, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 8a8f8a897409437bab45b6f304b8a200, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 8a8f8a897409437bab45b6f304b8a200, Index, Value { r#type: Text, value: "a0" } +SetTriple: e46b9b82c9414bf49ea5915f952aa687, Name, Value { r#type: Text, value: "Venue" } +SetTriple: Venue, Description, Value { r#type: Text, value: "A place where an event is happening" } +SetTriple: 9769e1481fdc4ec194d9eac0f2ec57b7, From entity, Value { r#type: Entity, value: "0913adbf9a7840599aba4c788a681255" } +SetTriple: 9769e1481fdc4ec194d9eac0f2ec57b7, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9769e1481fdc4ec194d9eac0f2ec57b7, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 9769e1481fdc4ec194d9eac0f2ec57b7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9769e1481fdc4ec194d9eac0f2ec57b7, To entity, Value { r#type: Entity, value: "5b4e9b7455f44e57b0b358da71188191" } +SetTriple: b0c5e46729c14a1283c24e8e816eb695, To entity, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 79fd9d0b624b42ae8452a90567e7bb48, Index, Value { r#type: Text, value: "a0" } +SetTriple: 79fd9d0b624b42ae8452a90567e7bb48, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 79fd9d0b624b42ae8452a90567e7bb48, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: 79fd9d0b624b42ae8452a90567e7bb48, From entity, Value { r#type: Entity, value: "ce9d95bb45974f449a5737ad7e056326" } +SetTriple: b0c5e46729c14a1283c24e8e816eb695, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: b0c5e46729c14a1283c24e8e816eb695, Index, Value { r#type: Text, value: "a0" } +SetTriple: c90dd512014946e0957d690dbc49ef79, To entity, Value { r#type: Entity, value: "ce9d95bb45974f449a5737ad7e056326" } +SetTriple: c90dd512014946e0957d690dbc49ef79, Index, Value { r#type: Text, value: "a0" } +SetTriple: c90dd512014946e0957d690dbc49ef79, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c90dd512014946e0957d690dbc49ef79, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: c90dd512014946e0957d690dbc49ef79, From entity, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: Relation value type, Name, Value { r#type: Text, value: "Relation Value Types" } +SetTriple: ce9d95bb45974f449a5737ad7e056326, Name, Value { r#type: Text, value: "The Relation Value T" } +SetTriple: The Relation Value T, Markdown Content, Value { r#type: Text, value: "The Relation Value Types specifies which types are assignable to a Relation Value. For example, a Persons attribute should only have values that are the Person type. There might be multiple different types assignable to a Relation Value.\n\n" } +SetTriple: 79fd9d0b624b42ae8452a90567e7bb48, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: bb87ef9862c04bf4810a5db73440e7fe, From entity, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: bb87ef9862c04bf4810a5db73440e7fe, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: bb87ef9862c04bf4810a5db73440e7fe, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bb87ef9862c04bf4810a5db73440e7fe, Index, Value { r#type: Text, value: "a0" } +SetTriple: bb87ef9862c04bf4810a5db73440e7fe, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: b0c5e46729c14a1283c24e8e816eb695, From entity, Value { r#type: Entity, value: "ce9d95bb45974f449a5737ad7e056326" } +SetTriple: b0c5e46729c14a1283c24e8e816eb695, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9d52a038dbd84d7592204761c1bc3ce5, From entity, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 455b1c3fd3ba49c2a84a4a01a6324a74, From entity, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 455b1c3fd3ba49c2a84a4a01a6324a74, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 455b1c3fd3ba49c2a84a4a01a6324a74, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 455b1c3fd3ba49c2a84a4a01a6324a74, Index, Value { r#type: Text, value: "a0" } +SetTriple: 455b1c3fd3ba49c2a84a4a01a6324a74, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 9d52a038dbd84d7592204761c1bc3ce5, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 9d52a038dbd84d7592204761c1bc3ce5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9d52a038dbd84d7592204761c1bc3ce5, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9d52a038dbd84d7592204761c1bc3ce5, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 4f0214c7642a492dbda064f954b62249, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 0ebfd163fadc457db31475bc3586f92b, From entity, Value { r#type: Entity, value: "017c5749ea46465a966904ed17344671" } +SetTriple: 1d72b2cd89a7441a942d358c87298c97, From entity, Value { r#type: Entity, value: "017c5749ea46465a966904ed17344671" } +SetTriple: 0ebfd163fadc457db31475bc3586f92b, To entity, Value { r#type: Entity, value: "7fa816a3cb704534934888449869dc33" } +SetTriple: 0ebfd163fadc457db31475bc3586f92b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4f9ce844cdbd4f059671b2202704c766, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0ebfd163fadc457db31475bc3586f92b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0ebfd163fadc457db31475bc3586f92b, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 723095d1122349acb74a7a07f2c95d86, Index, Value { r#type: Text, value: "a0" } +SetTriple: 723095d1122349acb74a7a07f2c95d86, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 723095d1122349acb74a7a07f2c95d86, To entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: 723095d1122349acb74a7a07f2c95d86, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 4f0214c7642a492dbda064f954b62249, From entity, Value { r#type: Entity, value: "017c5749ea46465a966904ed17344671" } +SetTriple: 723095d1122349acb74a7a07f2c95d86, From entity, Value { r#type: Entity, value: "017c5749ea46465a966904ed17344671" } +SetTriple: 4f0214c7642a492dbda064f954b62249, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4f0214c7642a492dbda064f954b62249, To entity, Value { r#type: Entity, value: "f9804f7c0e2e4658a8489aa65bbe411b" } +SetTriple: 4f9ce844cdbd4f059671b2202704c766, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 4f9ce844cdbd4f059671b2202704c766, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4f9ce844cdbd4f059671b2202704c766, To entity, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 4f9ce844cdbd4f059671b2202704c766, From entity, Value { r#type: Entity, value: "017c5749ea46465a966904ed17344671" } +SetTriple: 1d72b2cd89a7441a942d358c87298c97, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 1d72b2cd89a7441a942d358c87298c97, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1d72b2cd89a7441a942d358c87298c97, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1d72b2cd89a7441a942d358c87298c97, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 4f0214c7642a492dbda064f954b62249, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 873e0723752f4cd1bccab304cb8c4383, Description, Value { r#type: Text, value: "The authors that created a work" } +SetTriple: d2e2ce1cd2c448be857515f09a92a220, From entity, Value { r#type: Entity, value: "873e0723752f4cd1bccab304cb8c4383" } +SetTriple: d2e2ce1cd2c448be857515f09a92a220, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: d2e2ce1cd2c448be857515f09a92a220, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d9e989cbe2894626b2f74728c1b38b95, Description, Value { r#type: Text, value: "A reference to a journal that published a work." } +SetTriple: 916425ef66ea4913955099b75b4cb7c0, Description, Value { r#type: Text, value: "An abstract as a summary of an article, paper, or study." } +SetTriple: f01c6d195683448984f75cc23bcf7fac, Description, Value { r#type: Text, value: "A study is a type of research that involves experiments and analyzing their results." } +SetTriple: d2e2ce1cd2c448be857515f09a92a220, Index, Value { r#type: Text, value: "a0" } +SetTriple: d2e2ce1cd2c448be857515f09a92a220, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: b33b276806174d8f8f54efec61785695, Index, Value { r#type: Text, value: "a0" } +SetTriple: c1dcf0a230ca46df917a8c532c3755fa, From entity, Value { r#type: Entity, value: "873e0723752f4cd1bccab304cb8c4383" } +SetTriple: c1dcf0a230ca46df917a8c532c3755fa, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: c1dcf0a230ca46df917a8c532c3755fa, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d9e989cbe2894626b2f74728c1b38b95, Name, Value { r#type: Text, value: "Journal" } +SetTriple: f01c6d195683448984f75cc23bcf7fac, Name, Value { r#type: Text, value: "Study" } +SetTriple: 873e0723752f4cd1bccab304cb8c4383, Name, Value { r#type: Text, value: "Authors" } +SetTriple: c1dcf0a230ca46df917a8c532c3755fa, Index, Value { r#type: Text, value: "a0" } +SetTriple: 916425ef66ea4913955099b75b4cb7c0, Name, Value { r#type: Text, value: "Abstract" } +SetTriple: 1f1ed6d4c8ac42129d1bffbae2e8329a, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 97222a3da5744fbbbaaf54bbbf7ac7eb, From entity, Value { r#type: Entity, value: "916425ef66ea4913955099b75b4cb7c0" } +SetTriple: 97222a3da5744fbbbaaf54bbbf7ac7eb, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 97222a3da5744fbbbaaf54bbbf7ac7eb, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 97222a3da5744fbbbaaf54bbbf7ac7eb, Index, Value { r#type: Text, value: "a0" } +SetTriple: 97222a3da5744fbbbaaf54bbbf7ac7eb, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: aa6ff0dc9c264427acab475f5c25de89, From entity, Value { r#type: Entity, value: "916425ef66ea4913955099b75b4cb7c0" } +SetTriple: aa6ff0dc9c264427acab475f5c25de89, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: aa6ff0dc9c264427acab475f5c25de89, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: aa6ff0dc9c264427acab475f5c25de89, Index, Value { r#type: Text, value: "a0" } +SetTriple: aa6ff0dc9c264427acab475f5c25de89, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: b33b276806174d8f8f54efec61785695, From entity, Value { r#type: Entity, value: "f01c6d195683448984f75cc23bcf7fac" } +SetTriple: b33b276806174d8f8f54efec61785695, To entity, Value { r#type: Entity, value: "916425ef66ea4913955099b75b4cb7c0" } +SetTriple: b33b276806174d8f8f54efec61785695, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b33b276806174d8f8f54efec61785695, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 0ded3b91c3d245698b046b33375e88cd, From entity, Value { r#type: Entity, value: "d9e989cbe2894626b2f74728c1b38b95" } +SetTriple: 0ded3b91c3d245698b046b33375e88cd, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 0ded3b91c3d245698b046b33375e88cd, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0ded3b91c3d245698b046b33375e88cd, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0ded3b91c3d245698b046b33375e88cd, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 8f188d31c43a4f4c9d576e8d1c302004, From entity, Value { r#type: Entity, value: "d9e989cbe2894626b2f74728c1b38b95" } +SetTriple: 8f188d31c43a4f4c9d576e8d1c302004, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 8f188d31c43a4f4c9d576e8d1c302004, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8f188d31c43a4f4c9d576e8d1c302004, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8f188d31c43a4f4c9d576e8d1c302004, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: e0a173ff52ac4841a7d3af9bd900e890, From entity, Value { r#type: Entity, value: "f01c6d195683448984f75cc23bcf7fac" } +SetTriple: e0a173ff52ac4841a7d3af9bd900e890, To entity, Value { r#type: Entity, value: "d9e989cbe2894626b2f74728c1b38b95" } +SetTriple: e0a173ff52ac4841a7d3af9bd900e890, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e0a173ff52ac4841a7d3af9bd900e890, Index, Value { r#type: Text, value: "a0" } +SetTriple: e0a173ff52ac4841a7d3af9bd900e890, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: c1dcf0a230ca46df917a8c532c3755fa, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: fc25880424464410b3d703ef93a857d1, From entity, Value { r#type: Entity, value: "f01c6d195683448984f75cc23bcf7fac" } +SetTriple: fc25880424464410b3d703ef93a857d1, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: fc25880424464410b3d703ef93a857d1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: fc25880424464410b3d703ef93a857d1, Index, Value { r#type: Text, value: "a0" } +SetTriple: fc25880424464410b3d703ef93a857d1, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 1f1ed6d4c8ac42129d1bffbae2e8329a, From entity, Value { r#type: Entity, value: "f01c6d195683448984f75cc23bcf7fac" } +SetTriple: 1f1ed6d4c8ac42129d1bffbae2e8329a, To entity, Value { r#type: Entity, value: "873e0723752f4cd1bccab304cb8c4383" } +SetTriple: 1f1ed6d4c8ac42129d1bffbae2e8329a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1f1ed6d4c8ac42129d1bffbae2e8329a, Index, Value { r#type: Text, value: "a0" } +SetTriple: ad426c6107bd4171a820cdb07b4e80ff, Index, Value { r#type: Text, value: "a0" } +SetTriple: 10369739ebd54c628e3a407f34888b1b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 10369739ebd54c628e3a407f34888b1b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 10369739ebd54c628e3a407f34888b1b, To entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: 10369739ebd54c628e3a407f34888b1b, From entity, Value { r#type: Entity, value: "f01c6d195683448984f75cc23bcf7fac" } +SetTriple: ad426c6107bd4171a820cdb07b4e80ff, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 10369739ebd54c628e3a407f34888b1b, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: ad426c6107bd4171a820cdb07b4e80ff, From entity, Value { r#type: Entity, value: "f01c6d195683448984f75cc23bcf7fac" } +SetTriple: ad426c6107bd4171a820cdb07b4e80ff, To entity, Value { r#type: Entity, value: "7fa816a3cb704534934888449869dc33" } +SetTriple: ad426c6107bd4171a820cdb07b4e80ff, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3c1e71b592e14e95b9c82f38f6da9e2f, To entity, Value { r#type: Entity, value: "cd598fe88dc540fbafc727d363aa2b31" } +SetTriple: 3c1e71b592e14e95b9c82f38f6da9e2f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3c1e71b592e14e95b9c82f38f6da9e2f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3c1e71b592e14e95b9c82f38f6da9e2f, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 084d4c0b0cc448b38e697ae34c415230, From entity, Value { r#type: Entity, value: "f01c6d195683448984f75cc23bcf7fac" } +SetTriple: 3c1e71b592e14e95b9c82f38f6da9e2f, From entity, Value { r#type: Entity, value: "f01c6d195683448984f75cc23bcf7fac" } +SetTriple: 084d4c0b0cc448b38e697ae34c415230, To entity, Value { r#type: Entity, value: "0c0a2a9519284ec4876dcc04075b7927" } +SetTriple: 084d4c0b0cc448b38e697ae34c415230, Index, Value { r#type: Text, value: "a0" } +SetTriple: 084d4c0b0cc448b38e697ae34c415230, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: eb96c421c7584d748b8f8f35c528df8f, From entity, Value { r#type: Entity, value: "f01c6d195683448984f75cc23bcf7fac" } +SetTriple: eb96c421c7584d748b8f8f35c528df8f, To entity, Value { r#type: Entity, value: "e8010874d3304a4d990762e89a19371a" } +SetTriple: eb96c421c7584d748b8f8f35c528df8f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: eb96c421c7584d748b8f8f35c528df8f, Index, Value { r#type: Text, value: "a0" } +SetTriple: eb96c421c7584d748b8f8f35c528df8f, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 084d4c0b0cc448b38e697ae34c415230, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8f3b80704d09457a81dc17cdaa90aee6, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 8f3b80704d09457a81dc17cdaa90aee6, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8f3b80704d09457a81dc17cdaa90aee6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8f3b80704d09457a81dc17cdaa90aee6, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: 8f3b80704d09457a81dc17cdaa90aee6, From entity, Value { r#type: Entity, value: "1d7f027e415c4f69800e460fde65feb9" } +SetTriple: d3f46dc95aa54156b726088ce12feb27, To entity, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: d3f46dc95aa54156b726088ce12feb27, Index, Value { r#type: Text, value: "a0" } +SetTriple: d3f46dc95aa54156b726088ce12feb27, From entity, Value { r#type: Entity, value: "1d7f027e415c4f69800e460fde65feb9" } +SetTriple: d3f46dc95aa54156b726088ce12feb27, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d3f46dc95aa54156b726088ce12feb27, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: Opposing arguments, Name, Value { r#type: Text, value: "Opposing arguments" } +SetTriple: 88f1fd9267a6487b8d3ec6ca0a2a82f6, Space, Value { r#type: Text, value: "0x5402D2C23d9495F6632bAf6EA828D1893e870484" } +SetTriple: b7727542c54b42598ceca8df0cc9c678, From entity, Value { r#type: Entity, value: "88f1fd9267a6487b8d3ec6ca0a2a82f6" } +SetTriple: b7727542c54b42598ceca8df0cc9c678, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: b7727542c54b42598ceca8df0cc9c678, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b7727542c54b42598ceca8df0cc9c678, Index, Value { r#type: Text, value: "a0" } +SetTriple: b7727542c54b42598ceca8df0cc9c678, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 88f1fd9267a6487b8d3ec6ca0a2a82f6, Name, Value { r#type: Text, value: "Recovery in San Francisco" } +SetTriple: f8b73af2d38742878ae23ce634dd6220, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: a2c99703b2e546619f488aac22ace7d0, Space, Value { r#type: Text, value: "0x759Cc61Ea01ae5A510C7cAA7e79581c07d2A80C3" } +SetTriple: a2c99703b2e546619f488aac22ace7d0, Name, Value { r#type: Text, value: "Mentorship in San Francisco" } +SetTriple: f8b73af2d38742878ae23ce634dd6220, From entity, Value { r#type: Entity, value: "a2c99703b2e546619f488aac22ace7d0" } +SetTriple: f8b73af2d38742878ae23ce634dd6220, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: f8b73af2d38742878ae23ce634dd6220, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f8b73af2d38742878ae23ce634dd6220, Index, Value { r#type: Text, value: "a0" } +SetTriple: b163120d08c04669bb27418bfc419fbd, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b50be4949f43441ab593a20c2e23c3d9, Space, Value { r#type: Text, value: "0xdFDD5Fe53F804717509416baEBd1807Bd769D40D" } +SetTriple: b50be4949f43441ab593a20c2e23c3d9, Name, Value { r#type: Text, value: "Street outreach in San Francisco" } +SetTriple: b163120d08c04669bb27418bfc419fbd, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: b163120d08c04669bb27418bfc419fbd, Index, Value { r#type: Text, value: "a0" } +SetTriple: b163120d08c04669bb27418bfc419fbd, From entity, Value { r#type: Entity, value: "b50be4949f43441ab593a20c2e23c3d9" } +SetTriple: b163120d08c04669bb27418bfc419fbd, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: 775a4b52a39f4df8867ea3f456514da9, Index, Value { r#type: Text, value: "a0" } +SetTriple: 775a4b52a39f4df8867ea3f456514da9, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: 775a4b52a39f4df8867ea3f456514da9, From entity, Value { r#type: Entity, value: "96dcf9eddeea47f2b53c0dc643ca8acb" } +SetTriple: 96dcf9eddeea47f2b53c0dc643ca8acb, Space, Value { r#type: Text, value: "0x668356E8e22B11B389B136BB3A3a5afE388c6C5c" } +SetTriple: 96dcf9eddeea47f2b53c0dc643ca8acb, Name, Value { r#type: Text, value: "Workforce development in San Francisco" } +SetTriple: 775a4b52a39f4df8867ea3f456514da9, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 775a4b52a39f4df8867ea3f456514da9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: Space, Description, Value { r#type: Text, value: "Information for displaying a space's home page" } +SetTriple: Space, Name, Value { r#type: Text, value: "Space Configuration" } +SetTriple: 4b98f91a484e493f8ec761f9de08516d, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 4b98f91a484e493f8ec761f9de08516d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4b98f91a484e493f8ec761f9de08516d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4b98f91a484e493f8ec761f9de08516d, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 4b98f91a484e493f8ec761f9de08516d, From entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: 442e18509de74002a0657bc8fcff2514, Name, Value { r#type: Text, value: "Subspaces" } +SetTriple: c481baef8a504115985170ee8666966b, Description, Value { r#type: Text, value: "A set of related objectives" } +SetTriple: c481baef8a504115985170ee8666966b, Name, Value { r#type: Text, value: "Objectives" } +SetTriple: 6f969383291e43a4bb80682c53468e2c, Index, Value { r#type: Text, value: "a0" } +SetTriple: fd4b4abec9354562840dbf4b6b15f08d, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: fd4b4abec9354562840dbf4b6b15f08d, Index, Value { r#type: Text, value: "a0" } +SetTriple: fd4b4abec9354562840dbf4b6b15f08d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: fd4b4abec9354562840dbf4b6b15f08d, To entity, Value { r#type: Entity, value: "03aa11edd69a4d5ea0aea0f197614cfd" } +SetTriple: fd4b4abec9354562840dbf4b6b15f08d, From entity, Value { r#type: Entity, value: "1d5d0c2adb23466ca0b09abe879df457" } +SetTriple: 1ae22bab348c437f931cb3383b7348aa, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 1ae22bab348c437f931cb3383b7348aa, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1ae22bab348c437f931cb3383b7348aa, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1ae22bab348c437f931cb3383b7348aa, To entity, Value { r#type: Entity, value: "442e18509de74002a0657bc8fcff2514" } +SetTriple: 1ae22bab348c437f931cb3383b7348aa, From entity, Value { r#type: Entity, value: "1d5d0c2adb23466ca0b09abe879df457" } +SetTriple: 0da01ec6409d45e5a59e98998a331227, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 0da01ec6409d45e5a59e98998a331227, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0da01ec6409d45e5a59e98998a331227, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0da01ec6409d45e5a59e98998a331227, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 0da01ec6409d45e5a59e98998a331227, From entity, Value { r#type: Entity, value: "442e18509de74002a0657bc8fcff2514" } +SetTriple: 6f969383291e43a4bb80682c53468e2c, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 6f969383291e43a4bb80682c53468e2c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6f969383291e43a4bb80682c53468e2c, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 6f969383291e43a4bb80682c53468e2c, From entity, Value { r#type: Entity, value: "442e18509de74002a0657bc8fcff2514" } +SetTriple: 721ccf043c3c4fd78b56e23b186ba2ab, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 721ccf043c3c4fd78b56e23b186ba2ab, Index, Value { r#type: Text, value: "a0" } +SetTriple: 721ccf043c3c4fd78b56e23b186ba2ab, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 721ccf043c3c4fd78b56e23b186ba2ab, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 721ccf043c3c4fd78b56e23b186ba2ab, From entity, Value { r#type: Entity, value: "03aa11edd69a4d5ea0aea0f197614cfd" } +SetTriple: 8b08dced6aea45c2bdf381d5d42584d8, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 8b08dced6aea45c2bdf381d5d42584d8, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8b08dced6aea45c2bdf381d5d42584d8, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8b08dced6aea45c2bdf381d5d42584d8, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 8b08dced6aea45c2bdf381d5d42584d8, From entity, Value { r#type: Entity, value: "03aa11edd69a4d5ea0aea0f197614cfd" } +SetTriple: d99ca335e54d43bbb33e0645da16df63, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: d99ca335e54d43bbb33e0645da16df63, Index, Value { r#type: Text, value: "a0" } +SetTriple: d99ca335e54d43bbb33e0645da16df63, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d99ca335e54d43bbb33e0645da16df63, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: d99ca335e54d43bbb33e0645da16df63, From entity, Value { r#type: Entity, value: "c481baef8a504115985170ee8666966b" } +SetTriple: fcdfa9f0155a44ddb4f7a532c259ed32, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: fcdfa9f0155a44ddb4f7a532c259ed32, Index, Value { r#type: Text, value: "a0" } +SetTriple: fcdfa9f0155a44ddb4f7a532c259ed32, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: fcdfa9f0155a44ddb4f7a532c259ed32, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: fcdfa9f0155a44ddb4f7a532c259ed32, From entity, Value { r#type: Entity, value: "c481baef8a504115985170ee8666966b" } +SetTriple: 03aa11edd69a4d5ea0aea0f197614cfd, Name, Value { r#type: Text, value: "Broader spaces" } +SetTriple: Broader spaces, Description, Value { r#type: Text, value: "Spaces that are higher level for drilling up" } +SetTriple: Subspaces, Description, Value { r#type: Text, value: "Spaces that are more specific for drilling down" } +SetTriple: 8cc5d7e862b844a9994a7cf0d2a91657, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3aec91e8dbc6403a912bdb5bdabaf784, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 3aec91e8dbc6403a912bdb5bdabaf784, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3aec91e8dbc6403a912bdb5bdabaf784, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3aec91e8dbc6403a912bdb5bdabaf784, To entity, Value { r#type: Entity, value: "06375f2ac6a7460c8371187cb761e2be" } +SetTriple: 3aec91e8dbc6403a912bdb5bdabaf784, From entity, Value { r#type: Entity, value: "d9e989cbe2894626b2f74728c1b38b95" } +SetTriple: 8cc5d7e862b844a9994a7cf0d2a91657, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 8cc5d7e862b844a9994a7cf0d2a91657, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8cc5d7e862b844a9994a7cf0d2a91657, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 8cc5d7e862b844a9994a7cf0d2a91657, From entity, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 02336da773864070b92c26a04dc5fefa, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 02336da773864070b92c26a04dc5fefa, Index, Value { r#type: Text, value: "a0" } +SetTriple: 02336da773864070b92c26a04dc5fefa, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 02336da773864070b92c26a04dc5fefa, To entity, Value { r#type: Entity, value: "1d7f027e415c4f69800e460fde65feb9" } +SetTriple: 02336da773864070b92c26a04dc5fefa, From entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: aec5f9db270041d68576926eada6b25e, Index, Value { r#type: Text, value: "a0" } +SetTriple: aec5f9db270041d68576926eada6b25e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: aec5f9db270041d68576926eada6b25e, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: aec5f9db270041d68576926eada6b25e, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: aec5f9db270041d68576926eada6b25e, From entity, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: bf25bd423c254289b117ee7e0a7c031a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bf25bd423c254289b117ee7e0a7c031a, Index, Value { r#type: Text, value: "a0" } +SetTriple: bf25bd423c254289b117ee7e0a7c031a, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: d58444a5b9f54c9999336c45c17c8145, From entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: d58444a5b9f54c9999336c45c17c8145, To entity, Value { r#type: Entity, value: "3d31f766b65148afa357271343a773de" } +SetTriple: d58444a5b9f54c9999336c45c17c8145, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: cad80f584da74ca3b6dfa7823c24920f, From entity, Value { r#type: Entity, value: "0c0a2a9519284ec4876dcc04075b7927" } +SetTriple: cad80f584da74ca3b6dfa7823c24920f, To entity, Value { r#type: Entity, value: "fa8e8e54f7424c00b73c05adee2b4545" } +SetTriple: cad80f584da74ca3b6dfa7823c24920f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bf25bd423c254289b117ee7e0a7c031a, From entity, Value { r#type: Entity, value: "cd598fe88dc540fbafc727d363aa2b31" } +SetTriple: bf25bd423c254289b117ee7e0a7c031a, To entity, Value { r#type: Entity, value: "fa8e8e54f7424c00b73c05adee2b4545" } +SetTriple: d58444a5b9f54c9999336c45c17c8145, Index, Value { r#type: Text, value: "a0" } +SetTriple: d58444a5b9f54c9999336c45c17c8145, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: cad80f584da74ca3b6dfa7823c24920f, Index, Value { r#type: Text, value: "a0" } +SetTriple: cad80f584da74ca3b6dfa7823c24920f, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: b6cfce9621bf4e23babfd5bd099193fd, Index, Value { r#type: Text, value: "a0" } +SetTriple: b6cfce9621bf4e23babfd5bd099193fd, To entity, Value { r#type: Entity, value: "dd10f854888f453bb789622d8e1df861" } +SetTriple: b6cfce9621bf4e23babfd5bd099193fd, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: b6cfce9621bf4e23babfd5bd099193fd, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b6cfce9621bf4e23babfd5bd099193fd, From entity, Value { r#type: Entity, value: "df7d108c6c3c4cbbb93ee318d12de1fa" } +SetTriple: 3fa9ad9c10c841f7a3f036e3ff0d3ddf, From entity, Value { r#type: Entity, value: "21be6a84312544a2bb2e3c23928ce4aa" } +SetTriple: 3fa9ad9c10c841f7a3f036e3ff0d3ddf, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3fa9ad9c10c841f7a3f036e3ff0d3ddf, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3fa9ad9c10c841f7a3f036e3ff0d3ddf, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 3fa9ad9c10c841f7a3f036e3ff0d3ddf, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 235a1d6569af4adea9d69c3c6a86259e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 235a1d6569af4adea9d69c3c6a86259e, From entity, Value { r#type: Entity, value: "724d29589d5443c8af52e3feb24cdf88" } +SetTriple: 235a1d6569af4adea9d69c3c6a86259e, To entity, Value { r#type: Entity, value: "873e0723752f4cd1bccab304cb8c4383" } +SetTriple: 235a1d6569af4adea9d69c3c6a86259e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 235a1d6569af4adea9d69c3c6a86259e, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 42f69df1e8384dcf91cd1062a5d32670, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 42f69df1e8384dcf91cd1062a5d32670, From entity, Value { r#type: Entity, value: "38fea29845a648d6bf253c608dcca3fb" } +SetTriple: 42f69df1e8384dcf91cd1062a5d32670, Index, Value { r#type: Text, value: "a0" } +SetTriple: 42f69df1e8384dcf91cd1062a5d32670, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 42f69df1e8384dcf91cd1062a5d32670, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 468abcb8dba549428af659dc6e8a408c, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 468abcb8dba549428af659dc6e8a408c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 468abcb8dba549428af659dc6e8a408c, From entity, Value { r#type: Entity, value: "167664f668f840e1976b20bd16ed8d47" } +SetTriple: 468abcb8dba549428af659dc6e8a408c, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 468abcb8dba549428af659dc6e8a408c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: Time, Name, Value { r#type: Text, value: "Date" } +SetTriple: Date, Name, Value { r#type: Text, value: "Date" } +SetTriple: 1091566853f24277a7bff4c5ae9be56e, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 1091566853f24277a7bff4c5ae9be56e, From entity, Value { r#type: Entity, value: "dfc221d98cce4f0b9353e437a98387e3" } +SetTriple: 1091566853f24277a7bff4c5ae9be56e, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 1091566853f24277a7bff4c5ae9be56e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1091566853f24277a7bff4c5ae9be56e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: dfc221d98cce4f0b9353e437a98387e3, Name, Value { r#type: Text, value: "Web URL" } +SetTriple: 5bcd6a4d933f4d2ebcd7bd5c730a320a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c199ae063ab24e04b71c08d9979f25bb, From entity, Value { r#type: Entity, value: "be74597305a94cd0a46d1c5538270faf" } +SetTriple: c199ae063ab24e04b71c08d9979f25bb, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: c199ae063ab24e04b71c08d9979f25bb, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c199ae063ab24e04b71c08d9979f25bb, Index, Value { r#type: Text, value: "a0" } +SetTriple: c199ae063ab24e04b71c08d9979f25bb, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 4fcc703237bc4822aabf0113dfdc36c2, From entity, Value { r#type: Entity, value: "7fa816a3cb704534934888449869dc33" } +SetTriple: 4fcc703237bc4822aabf0113dfdc36c2, To entity, Value { r#type: Entity, value: "fa8e8e54f7424c00b73c05adee2b4545" } +SetTriple: 4fcc703237bc4822aabf0113dfdc36c2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4fcc703237bc4822aabf0113dfdc36c2, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4fcc703237bc4822aabf0113dfdc36c2, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 5bcd6a4d933f4d2ebcd7bd5c730a320a, From entity, Value { r#type: Entity, value: "e77065f3fec741d989ed86ab01d4e999" } +SetTriple: 5bcd6a4d933f4d2ebcd7bd5c730a320a, To entity, Value { r#type: Entity, value: "167664f668f840e1976b20bd16ed8d47" } +SetTriple: 5bcd6a4d933f4d2ebcd7bd5c730a320a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5bcd6a4d933f4d2ebcd7bd5c730a320a, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: e77065f3fec741d989ed86ab01d4e999, Name, Value { r#type: Text, value: "Date" } +SetTriple: Date, Description, Value { r#type: Text, value: "The date that something occurred or is occurring" } +SetTriple: ebe5e9cf6aab4fe1808e76805d2f7848, From entity, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: ebe5e9cf6aab4fe1808e76805d2f7848, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: ebe5e9cf6aab4fe1808e76805d2f7848, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ebe5e9cf6aab4fe1808e76805d2f7848, Index, Value { r#type: Text, value: "a0" } +SetTriple: ebe5e9cf6aab4fe1808e76805d2f7848, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: b4720d2244d449ea94f32b6e76b560f3, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: b4720d2244d449ea94f32b6e76b560f3, From entity, Value { r#type: Entity, value: "e77065f3fec741d989ed86ab01d4e999" } +SetTriple: f7e2b8d3cba34b85be69bf41bfebacc0, From entity, Value { r#type: Entity, value: "e77065f3fec741d989ed86ab01d4e999" } +SetTriple: f7e2b8d3cba34b85be69bf41bfebacc0, To entity, Value { r#type: Entity, value: "167664f668f840e1976b20bd16ed8d47" } +SetTriple: f7e2b8d3cba34b85be69bf41bfebacc0, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: f7e2b8d3cba34b85be69bf41bfebacc0, Index, Value { r#type: Text, value: "a0" } +SetTriple: f7e2b8d3cba34b85be69bf41bfebacc0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b4720d2244d449ea94f32b6e76b560f3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b4720d2244d449ea94f32b6e76b560f3, Index, Value { r#type: Text, value: "a0" } +SetTriple: b4720d2244d449ea94f32b6e76b560f3, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 5c8577ad3cec4fbbb4e8494518cd1021, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: ec0157d1620144f78b18a727ad0d1ccf, From entity, Value { r#type: Entity, value: "e40b39dc2853404b9d06bf89ee241afd" } +SetTriple: ec0157d1620144f78b18a727ad0d1ccf, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: ec0157d1620144f78b18a727ad0d1ccf, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ec0157d1620144f78b18a727ad0d1ccf, Index, Value { r#type: Text, value: "a0" } +SetTriple: ec0157d1620144f78b18a727ad0d1ccf, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 5c8577ad3cec4fbbb4e8494518cd1021, From entity, Value { r#type: Entity, value: "e40b39dc2853404b9d06bf89ee241afd" } +SetTriple: 5c8577ad3cec4fbbb4e8494518cd1021, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 5c8577ad3cec4fbbb4e8494518cd1021, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5c8577ad3cec4fbbb4e8494518cd1021, Index, Value { r#type: Text, value: "a0" } +SetTriple: Space, Name, Value { r#type: Text, value: "Space Address" } +SetTriple: 90de26bf7d214508b33847c63be5d593, From entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: 90de26bf7d214508b33847c63be5d593, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 90de26bf7d214508b33847c63be5d593, Index, Value { r#type: Text, value: "a0" } +SetTriple: 90de26bf7d214508b33847c63be5d593, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 90de26bf7d214508b33847c63be5d593, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: a12493564d294d29a0c1fce6dceed607, Image, Value { r#type: Text, value: "https://api.thegraph.com/ipfs/api/v0/cat?arg=Qmbv1pwZz2tFzsVtJTjNVJX9RtdcqDXPcqiFsHNuQksvSw" } +SetTriple: e194e7744dbc4285847f5dbdcb9ae3ff, From entity, Value { r#type: Entity, value: "a12493564d294d29a0c1fce6dceed607" } +SetTriple: e194e7744dbc4285847f5dbdcb9ae3ff, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: a12493564d294d29a0c1fce6dceed607, Space Address, Value { r#type: Text, value: "0x4Ade9E4dB33D275A588d31641C735f25cFD52891" } +SetTriple: a12493564d294d29a0c1fce6dceed607, Name, Value { r#type: Text, value: "Personal development" } +SetTriple: e194e7744dbc4285847f5dbdcb9ae3ff, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: e194e7744dbc4285847f5dbdcb9ae3ff, Index, Value { r#type: Text, value: "a0" } +SetTriple: e194e7744dbc4285847f5dbdcb9ae3ff, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 454e3d2981a74673a17aca7866db5e38, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 454e3d2981a74673a17aca7866db5e38, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 454e3d2981a74673a17aca7866db5e38, Index, Value { r#type: Text, value: "a0" } +SetTriple: 454e3d2981a74673a17aca7866db5e38, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: 454e3d2981a74673a17aca7866db5e38, From entity, Value { r#type: Entity, value: "792d7f337c56412683a33c09a12bb9d0" } +SetTriple: 792d7f337c56412683a33c09a12bb9d0, Space Address, Value { r#type: Text, value: "0x2200938c792106D10f67f75cdD2f14A9dAeFf381" } +SetTriple: 792d7f337c56412683a33c09a12bb9d0, Image, Value { r#type: Text, value: "https://api.thegraph.com/ipfs/api/v0/cat?arg=QmUUZzHvGR6u7rfdLM9yZ8c5o4y5dpKqBJitTKczrPaMgb" } +SetTriple: 792d7f337c56412683a33c09a12bb9d0, Name, Value { r#type: Text, value: "Art" } +SetTriple: 33fc41c795ea4dd09f3ae15569369fca, Image, Value { r#type: Text, value: "https://api.thegraph.com/ipfs/api/v0/cat?arg=QmfNnRQNDkagqg4VrwMhNHy3qPyf88TvpUmVQsmUUVvSfB" } +SetTriple: 33fc41c795ea4dd09f3ae15569369fca, Name, Value { r#type: Text, value: "Music" } +SetTriple: a73fa226279d4f51913b2968b71d1bcc, From entity, Value { r#type: Entity, value: "33fc41c795ea4dd09f3ae15569369fca" } +SetTriple: Music, Space Address, Value { r#type: Text, value: "0xD8Ad7433f795fC19899f6b62a9b9831090495CAF" } +SetTriple: a73fa226279d4f51913b2968b71d1bcc, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: a73fa226279d4f51913b2968b71d1bcc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a73fa226279d4f51913b2968b71d1bcc, Index, Value { r#type: Text, value: "a0" } +SetTriple: a73fa226279d4f51913b2968b71d1bcc, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 60884e84f8934a798eced6cbf90ed6e7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 60884e84f8934a798eced6cbf90ed6e7, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0665332dce534626bbc754dd195967e3, Image, Value { r#type: Text, value: "https://api.thegraph.com/ipfs/api/v0/cat?arg=QmeGsnJ3iGHaRbh2Ay2YQ41VKH2rteDVsDZLVBzasrqNhC" } +SetTriple: 60884e84f8934a798eced6cbf90ed6e7, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 0665332dce534626bbc754dd195967e3, Name, Value { r#type: Text, value: "Film" } +SetTriple: 60884e84f8934a798eced6cbf90ed6e7, From entity, Value { r#type: Entity, value: "0665332dce534626bbc754dd195967e3" } +SetTriple: Film, Space Address, Value { r#type: Text, value: "0xf1803e327b4c4652c7De5B77D612eCc1222918F3" } +SetTriple: 60884e84f8934a798eced6cbf90ed6e7, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: 671a429236904fa3b87082662d7e1184, Space Address, Value { r#type: Text, value: "0xD159867D94aBF20fB20cBb60221A3984E5D98492" } +SetTriple: c77e46e0b7944657be90fe86ce39edc0, Index, Value { r#type: Text, value: "a0" } +SetTriple: c77e46e0b7944657be90fe86ce39edc0, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 671a429236904fa3b87082662d7e1184, Image, Value { r#type: Text, value: "https://api.thegraph.com/ipfs/api/v0/cat?arg=QmdQEwqswMLHYBjphH3guHpZYCm4NqfXqkcM5j4CBpMu8w" } +SetTriple: c77e46e0b7944657be90fe86ce39edc0, From entity, Value { r#type: Entity, value: "671a429236904fa3b87082662d7e1184" } +SetTriple: c77e46e0b7944657be90fe86ce39edc0, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: c77e46e0b7944657be90fe86ce39edc0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 671a429236904fa3b87082662d7e1184, Name, Value { r#type: Text, value: "Travel" } +SetTriple: 8a149ad652ca4b32b7d0f5fe6bfb6b52, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: c55f36eb4cca49b8bb104f3297cc8d96, Name, Value { r#type: Text, value: "Spirituality" } +SetTriple: Spirituality, Space Address, Value { r#type: Text, value: "0x0A7d904669976410e8Da452e592EeFC5A4b5d3c9" } +SetTriple: Spirituality, Image, Value { r#type: Text, value: "https://api.thegraph.com/ipfs/api/v0/cat?arg=QmP6vj3FrEEKX9Cc71tdgcLKxzX2eFfosp5V1gS6yfZ4C4" } +SetTriple: 8a149ad652ca4b32b7d0f5fe6bfb6b52, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 8a149ad652ca4b32b7d0f5fe6bfb6b52, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8a149ad652ca4b32b7d0f5fe6bfb6b52, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8a149ad652ca4b32b7d0f5fe6bfb6b52, From entity, Value { r#type: Entity, value: "c55f36eb4cca49b8bb104f3297cc8d96" } +SetTriple: 94c0407656c24b5598bacfbd94cb1d27, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: ef6d981c41754cbba94c62cbd2de664f, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 94c0407656c24b5598bacfbd94cb1d27, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: ef6d981c41754cbba94c62cbd2de664f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ef6d981c41754cbba94c62cbd2de664f, Index, Value { r#type: Text, value: "a0" } +SetTriple: ef6d981c41754cbba94c62cbd2de664f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: ef6d981c41754cbba94c62cbd2de664f, From entity, Value { r#type: Entity, value: "f7423062fb7549288b63156af138258b" } +SetTriple: f7423062fb7549288b63156af138258b, Name, Value { r#type: Text, value: "Organization" } +SetTriple: 2411d4a11eea4963bdbf852ce6ced5a4, Name, Value { r#type: Text, value: "Definition" } +SetTriple: eab5d59073844c398775a613eca3587e, Name, Value { r#type: Text, value: "Category" } +SetTriple: 94c0407656c24b5598bacfbd94cb1d27, From entity, Value { r#type: Entity, value: "eab5d59073844c398775a613eca3587e" } +SetTriple: 94c0407656c24b5598bacfbd94cb1d27, Index, Value { r#type: Text, value: "a0" } +SetTriple: 94c0407656c24b5598bacfbd94cb1d27, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 643537074972427a896c6c12d1172d62, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 643537074972427a896c6c12d1172d62, Index, Value { r#type: Text, value: "a0" } +SetTriple: 643537074972427a896c6c12d1172d62, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 643537074972427a896c6c12d1172d62, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 643537074972427a896c6c12d1172d62, From entity, Value { r#type: Entity, value: "2411d4a11eea4963bdbf852ce6ced5a4" } +SetTriple: Attribute, Name, Value { r#type: Text, value: "Attributes" } +SetTriple: 31654bd393ea472886bdcef4721af8cc, From entity, Value { r#type: Entity, value: "87402d1720c54acb873e90e0444978d0" } +SetTriple: 0ebc79b9a5cd4685abe1f8f939ed05c3, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 31654bd393ea472886bdcef4721af8cc, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: c23483a1a929423883355da77e7e4f99, From entity, Value { r#type: Entity, value: "21be6a84312544a2bb2e3c23928ce4aa" } +SetTriple: c23483a1a929423883355da77e7e4f99, To entity, Value { r#type: Entity, value: "1d7f027e415c4f69800e460fde65feb9" } +SetTriple: c23483a1a929423883355da77e7e4f99, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c23483a1a929423883355da77e7e4f99, Index, Value { r#type: Text, value: "a0" } +SetTriple: c23483a1a929423883355da77e7e4f99, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: fd7291b6d1f3444880f2cb94b7fc7b62, From entity, Value { r#type: Entity, value: "9c2ef1313a1547e9ac5d0fce07e792a1" } +SetTriple: fd7291b6d1f3444880f2cb94b7fc7b62, To entity, Value { r#type: Entity, value: "1d7f027e415c4f69800e460fde65feb9" } +SetTriple: fd7291b6d1f3444880f2cb94b7fc7b62, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: fd7291b6d1f3444880f2cb94b7fc7b62, Index, Value { r#type: Text, value: "a0" } +SetTriple: fd7291b6d1f3444880f2cb94b7fc7b62, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 0ebc79b9a5cd4685abe1f8f939ed05c3, From entity, Value { r#type: Entity, value: "87402d1720c54acb873e90e0444978d0" } +SetTriple: 0ebc79b9a5cd4685abe1f8f939ed05c3, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 0ebc79b9a5cd4685abe1f8f939ed05c3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0ebc79b9a5cd4685abe1f8f939ed05c3, Index, Value { r#type: Text, value: "a0" } +SetTriple: 87402d1720c54acb873e90e0444978d0, Description, Value { r#type: Text, value: "An additional level of categorization" } +SetTriple: 87402d1720c54acb873e90e0444978d0, Name, Value { r#type: Text, value: "Categories" } +SetTriple: 31654bd393ea472886bdcef4721af8cc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 31654bd393ea472886bdcef4721af8cc, Index, Value { r#type: Text, value: "a0" } +SetTriple: 31654bd393ea472886bdcef4721af8cc, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 78e8a5fedb3c444695fb8dda06314fc9, To entity, Value { r#type: Entity, value: "87402d1720c54acb873e90e0444978d0" } +SetTriple: 78e8a5fedb3c444695fb8dda06314fc9, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 78e8a5fedb3c444695fb8dda06314fc9, From entity, Value { r#type: Entity, value: "1160ed82001d4d15a998b9044ea7d213" } +SetTriple: 78e8a5fedb3c444695fb8dda06314fc9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 78e8a5fedb3c444695fb8dda06314fc9, Index, Value { r#type: Text, value: "a0" } +SetTriple: 397e233ae8ea40ea9607b7f04a998731, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 397e233ae8ea40ea9607b7f04a998731, Index, Value { r#type: Text, value: "a0" } +SetTriple: 397e233ae8ea40ea9607b7f04a998731, From entity, Value { r#type: Entity, value: "1160ed82001d4d15a998b9044ea7d213" } +SetTriple: 397e233ae8ea40ea9607b7f04a998731, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 397e233ae8ea40ea9607b7f04a998731, To entity, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 17dda37755634ed58ff9a8cdb95be895, Index, Value { r#type: Text, value: "a0" } +SetTriple: 17dda37755634ed58ff9a8cdb95be895, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 17dda37755634ed58ff9a8cdb95be895, From entity, Value { r#type: Entity, value: "e6184c8e261d46df9c4359fccde3395c" } +SetTriple: e6184c8e261d46df9c4359fccde3395c, Name, Value { r#type: Text, value: "Related entities" } +SetTriple: c41dd246a91a47f59686ca807e5ff8c3, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: c41dd246a91a47f59686ca807e5ff8c3, Index, Value { r#type: Text, value: "a0" } +SetTriple: c41dd246a91a47f59686ca807e5ff8c3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c41dd246a91a47f59686ca807e5ff8c3, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: c41dd246a91a47f59686ca807e5ff8c3, From entity, Value { r#type: Entity, value: "e6184c8e261d46df9c4359fccde3395c" } +SetTriple: 17dda37755634ed58ff9a8cdb95be895, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 17dda37755634ed58ff9a8cdb95be895, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 385c2c6df11741dcaf7c77001576f05a, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 385c2c6df11741dcaf7c77001576f05a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 385c2c6df11741dcaf7c77001576f05a, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 385c2c6df11741dcaf7c77001576f05a, From entity, Value { r#type: Entity, value: "1e39e693db0f404b8e91e06ae41b5e59" } +SetTriple: 1e39e693db0f404b8e91e06ae41b5e59, Name, Value { r#type: Text, value: "Concept" } +SetTriple: Concept, Description, Value { r#type: Text, value: "A general concept that can be defined" } +SetTriple: 385c2c6df11741dcaf7c77001576f05a, Index, Value { r#type: Text, value: "a0" } +SetTriple: b189af4f902043babcfc95e2e78bed76, Index, Value { r#type: Text, value: "a0" } +SetTriple: b189af4f902043babcfc95e2e78bed76, From entity, Value { r#type: Entity, value: "38fea29845a648d6bf253c608dcca3fb" } +SetTriple: b189af4f902043babcfc95e2e78bed76, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b189af4f902043babcfc95e2e78bed76, To entity, Value { r#type: Entity, value: "e8010874d3304a4d990762e89a19371a" } +SetTriple: b189af4f902043babcfc95e2e78bed76, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: Space Address, Name, Value { r#type: Text, value: "Indexed Space Address" } +SetTriple: Space Configuration, Name, Value { r#type: Text, value: "Indexed Space" } +SetTriple: ddee52152ebe4e3f99b21d32df2f5f2a, To entity, Value { r#type: Entity, value: "dfc221d98cce4f0b9353e437a98387e3" } +SetTriple: ddee52152ebe4e3f99b21d32df2f5f2a, From entity, Value { r#type: Entity, value: "f724b80589e1424bb149acff9ecfd0f7" } +SetTriple: ddee52152ebe4e3f99b21d32df2f5f2a, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: ddee52152ebe4e3f99b21d32df2f5f2a, Index, Value { r#type: Text, value: "a0" } +SetTriple: ddee52152ebe4e3f99b21d32df2f5f2a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 36cc9dac400e4bc38339cabf9e56761b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 36cc9dac400e4bc38339cabf9e56761b, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 36cc9dac400e4bc38339cabf9e56761b, From entity, Value { r#type: Entity, value: "e8010874d3304a4d990762e89a19371a" } +SetTriple: 36cc9dac400e4bc38339cabf9e56761b, To entity, Value { r#type: Entity, value: "dfc221d98cce4f0b9353e437a98387e3" } +SetTriple: 36cc9dac400e4bc38339cabf9e56761b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f55a9701d25641da8897ddc4c03a08c1, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: f55a9701d25641da8897ddc4c03a08c1, From entity, Value { r#type: Entity, value: "71a5569e688e4e0f8eb0d8c361211e7c" } +SetTriple: f55a9701d25641da8897ddc4c03a08c1, To entity, Value { r#type: Entity, value: "dfc221d98cce4f0b9353e437a98387e3" } +SetTriple: f55a9701d25641da8897ddc4c03a08c1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f55a9701d25641da8897ddc4c03a08c1, Index, Value { r#type: Text, value: "a0" } +SetTriple: 72ad363eb3794225b27bcfaddeb37f59, Index, Value { r#type: Text, value: "a0" } +SetTriple: 72ad363eb3794225b27bcfaddeb37f59, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 82055073e21d4f699a45b91a91effba2, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 82055073e21d4f699a45b91a91effba2, Index, Value { r#type: Text, value: "a0" } +SetTriple: 82055073e21d4f699a45b91a91effba2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 03597522e1f2423b882d330cfe89331d, Name, Value { r#type: Text, value: "Speakers" } +SetTriple: 82055073e21d4f699a45b91a91effba2, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 72ad363eb3794225b27bcfaddeb37f59, From entity, Value { r#type: Entity, value: "03597522e1f2423b882d330cfe89331d" } +SetTriple: 72ad363eb3794225b27bcfaddeb37f59, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 72ad363eb3794225b27bcfaddeb37f59, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 82055073e21d4f699a45b91a91effba2, From entity, Value { r#type: Entity, value: "03597522e1f2423b882d330cfe89331d" } +SetTriple: 3ec68df6591642a2b57e5d7abbe8e023, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 3ec68df6591642a2b57e5d7abbe8e023, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3ec68df6591642a2b57e5d7abbe8e023, To entity, Value { r#type: Entity, value: "03597522e1f2423b882d330cfe89331d" } +SetTriple: 3ec68df6591642a2b57e5d7abbe8e023, From entity, Value { r#type: Entity, value: "1d7f027e415c4f69800e460fde65feb9" } +SetTriple: 3ec68df6591642a2b57e5d7abbe8e023, Index, Value { r#type: Text, value: "a0" } +SetTriple: 26aced91062144a5a679fe6f5ef9f113, From entity, Value { r#type: Entity, value: "33fc41c795ea4dd09f3ae15569369fca" } +SetTriple: f8a3bacbce5b45b1aae24013ddaffac4, To entity, Value { r#type: Entity, value: "605e4ccd36234e4c93d29aa2b30fea03" } +SetTriple: f8a3bacbce5b45b1aae24013ddaffac4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f8a3bacbce5b45b1aae24013ddaffac4, Index, Value { r#type: Text, value: "a0" } +SetTriple: f8a3bacbce5b45b1aae24013ddaffac4, Relation type, Value { r#type: Entity, value: "457a27af7b0b485cac07aa37756adafa" } +SetTriple: e1e84199baf344fcbd9a2a27a04cc061, From entity, Value { r#type: Entity, value: "605e4ccd36234e4c93d29aa2b30fea03" } +SetTriple: e1e84199baf344fcbd9a2a27a04cc061, To entity, Value { r#type: Entity, value: "" } +SetTriple: e1e84199baf344fcbd9a2a27a04cc061, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e1e84199baf344fcbd9a2a27a04cc061, Index, Value { r#type: Text, value: "a0" } +SetTriple: 560d62a0461b4c2fa229dfab07a3692a, From entity, Value { r#type: Entity, value: "029c0c90698242469e4aa0e5762fba01" } +SetTriple: 560d62a0461b4c2fa229dfab07a3692a, To entity, Value { r#type: Entity, value: "e8c36fd15d244b32a2195571c7f43de9" } +SetTriple: 560d62a0461b4c2fa229dfab07a3692a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 560d62a0461b4c2fa229dfab07a3692a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 560d62a0461b4c2fa229dfab07a3692a, Relation type, Value { r#type: Entity, value: "457a27af7b0b485cac07aa37756adafa" } +SetTriple: d3d162559c794023997d950aae4dba2b, From entity, Value { r#type: Entity, value: "e8c36fd15d244b32a2195571c7f43de9" } +SetTriple: d3d162559c794023997d950aae4dba2b, To entity, Value { r#type: Entity, value: "" } +SetTriple: d3d162559c794023997d950aae4dba2b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d3d162559c794023997d950aae4dba2b, Index, Value { r#type: Text, value: "a0" } +SetTriple: d3d162559c794023997d950aae4dba2b, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 7fce60b3063d4c87a38897df8ea5ea56, From entity, Value { r#type: Entity, value: "0665332dce534626bbc754dd195967e3" } +SetTriple: 7fce60b3063d4c87a38897df8ea5ea56, To entity, Value { r#type: Entity, value: "b40f74487fb7499686155e973484aa48" } +SetTriple: 7fce60b3063d4c87a38897df8ea5ea56, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7fce60b3063d4c87a38897df8ea5ea56, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7fce60b3063d4c87a38897df8ea5ea56, Relation type, Value { r#type: Entity, value: "457a27af7b0b485cac07aa37756adafa" } +SetTriple: ea1c9aa42a1e4c3fba61782300a84496, From entity, Value { r#type: Entity, value: "b40f74487fb7499686155e973484aa48" } +SetTriple: ea1c9aa42a1e4c3fba61782300a84496, To entity, Value { r#type: Entity, value: "" } +SetTriple: ea1c9aa42a1e4c3fba61782300a84496, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ea1c9aa42a1e4c3fba61782300a84496, Index, Value { r#type: Text, value: "a0" } +SetTriple: ea1c9aa42a1e4c3fba61782300a84496, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 1fa63ed4fa914dbc808dadd994cfa8b6, From entity, Value { r#type: Entity, value: "0ef375994e5c455793201cb9c105a3ba" } +SetTriple: 1fa63ed4fa914dbc808dadd994cfa8b6, To entity, Value { r#type: Entity, value: "99b86bc838e9486884d7ecab02b006d9" } +SetTriple: 1fa63ed4fa914dbc808dadd994cfa8b6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1fa63ed4fa914dbc808dadd994cfa8b6, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1fa63ed4fa914dbc808dadd994cfa8b6, Relation type, Value { r#type: Entity, value: "457a27af7b0b485cac07aa37756adafa" } +SetTriple: c5df72da06be4d21b7d48030d7bc7805, From entity, Value { r#type: Entity, value: "99b86bc838e9486884d7ecab02b006d9" } +SetTriple: c5df72da06be4d21b7d48030d7bc7805, To entity, Value { r#type: Entity, value: "" } +SetTriple: c5df72da06be4d21b7d48030d7bc7805, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c5df72da06be4d21b7d48030d7bc7805, Index, Value { r#type: Text, value: "a0" } +SetTriple: c5df72da06be4d21b7d48030d7bc7805, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: b394725f409d4118bc89748f94efc06c, From entity, Value { r#type: Entity, value: "2e59ef47b8df4c24a377f35724583418" } +SetTriple: b394725f409d4118bc89748f94efc06c, To entity, Value { r#type: Entity, value: "3d92849f27d647cd9eed1b84a7f43136" } +SetTriple: b394725f409d4118bc89748f94efc06c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b394725f409d4118bc89748f94efc06c, Index, Value { r#type: Text, value: "a0" } +SetTriple: b394725f409d4118bc89748f94efc06c, Relation type, Value { r#type: Entity, value: "457a27af7b0b485cac07aa37756adafa" } +SetTriple: 65b0f627b26d4569b51f18fd950c1b30, From entity, Value { r#type: Entity, value: "3d92849f27d647cd9eed1b84a7f43136" } +SetTriple: 65b0f627b26d4569b51f18fd950c1b30, To entity, Value { r#type: Entity, value: "" } +SetTriple: 65b0f627b26d4569b51f18fd950c1b30, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 65b0f627b26d4569b51f18fd950c1b30, Index, Value { r#type: Text, value: "a0" } +SetTriple: 65b0f627b26d4569b51f18fd950c1b30, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 26aced91062144a5a679fe6f5ef9f113, To entity, Value { r#type: Entity, value: "f3fb3a0bf7a740fdba889032221411de" } +SetTriple: 26aced91062144a5a679fe6f5ef9f113, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 26aced91062144a5a679fe6f5ef9f113, Index, Value { r#type: Text, value: "a0" } +SetTriple: 26aced91062144a5a679fe6f5ef9f113, Relation type, Value { r#type: Entity, value: "457a27af7b0b485cac07aa37756adafa" } +SetTriple: bb5bcbb5da984aa1a07e39f5df9343ef, From entity, Value { r#type: Entity, value: "f3fb3a0bf7a740fdba889032221411de" } +SetTriple: bb5bcbb5da984aa1a07e39f5df9343ef, To entity, Value { r#type: Entity, value: "" } +SetTriple: bb5bcbb5da984aa1a07e39f5df9343ef, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bb5bcbb5da984aa1a07e39f5df9343ef, Index, Value { r#type: Text, value: "a0" } +SetTriple: bb5bcbb5da984aa1a07e39f5df9343ef, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: a489070d3834446aa6191aae6ce52bf8, From entity, Value { r#type: Entity, value: "3ef6eeb0b0724999a5a45aefa06bcea2" } +SetTriple: a489070d3834446aa6191aae6ce52bf8, To entity, Value { r#type: Entity, value: "5e8cefef653a4240b9ea1ce244a7c013" } +SetTriple: a489070d3834446aa6191aae6ce52bf8, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a489070d3834446aa6191aae6ce52bf8, Index, Value { r#type: Text, value: "a0" } +SetTriple: a489070d3834446aa6191aae6ce52bf8, Relation type, Value { r#type: Entity, value: "457a27af7b0b485cac07aa37756adafa" } +SetTriple: 06f1c75120884c178a28f92a4f659d68, From entity, Value { r#type: Entity, value: "5e8cefef653a4240b9ea1ce244a7c013" } +SetTriple: 06f1c75120884c178a28f92a4f659d68, To entity, Value { r#type: Entity, value: "" } +SetTriple: 06f1c75120884c178a28f92a4f659d68, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 06f1c75120884c178a28f92a4f659d68, Index, Value { r#type: Text, value: "a0" } +SetTriple: 06f1c75120884c178a28f92a4f659d68, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 37ff775a615c479fa65403fc73ee9875, From entity, Value { r#type: Entity, value: "403b9f42645249d4ab02ff63df66a06c" } +SetTriple: 37ff775a615c479fa65403fc73ee9875, To entity, Value { r#type: Entity, value: "461b1ede47d646ba9af6168351bc06b8" } +SetTriple: 37ff775a615c479fa65403fc73ee9875, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 37ff775a615c479fa65403fc73ee9875, Index, Value { r#type: Text, value: "a0" } +SetTriple: 37ff775a615c479fa65403fc73ee9875, Relation type, Value { r#type: Entity, value: "457a27af7b0b485cac07aa37756adafa" } +SetTriple: 9e0f9f9cf7b7446eb21a362f6c5f458c, From entity, Value { r#type: Entity, value: "461b1ede47d646ba9af6168351bc06b8" } +SetTriple: 9e0f9f9cf7b7446eb21a362f6c5f458c, To entity, Value { r#type: Entity, value: "" } +SetTriple: 9e0f9f9cf7b7446eb21a362f6c5f458c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9e0f9f9cf7b7446eb21a362f6c5f458c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9e0f9f9cf7b7446eb21a362f6c5f458c, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: f7a33b0a1e204376b4bbab55431228d1, From entity, Value { r#type: Entity, value: "671a429236904fa3b87082662d7e1184" } +SetTriple: f7a33b0a1e204376b4bbab55431228d1, To entity, Value { r#type: Entity, value: "73925afcc0a744919d5c4fa111d375ea" } +SetTriple: f7a33b0a1e204376b4bbab55431228d1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f7a33b0a1e204376b4bbab55431228d1, Index, Value { r#type: Text, value: "a0" } +SetTriple: f7a33b0a1e204376b4bbab55431228d1, Relation type, Value { r#type: Entity, value: "457a27af7b0b485cac07aa37756adafa" } +SetTriple: e25e03222d27418fa3959107ffa14462, From entity, Value { r#type: Entity, value: "73925afcc0a744919d5c4fa111d375ea" } +SetTriple: e25e03222d27418fa3959107ffa14462, To entity, Value { r#type: Entity, value: "" } +SetTriple: e25e03222d27418fa3959107ffa14462, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e25e03222d27418fa3959107ffa14462, Index, Value { r#type: Text, value: "a0" } +SetTriple: e25e03222d27418fa3959107ffa14462, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: dc0802e9fc7a408ca4acbdae0ad1f774, From entity, Value { r#type: Entity, value: "721ef6981ae043fb8ad5456de47c950a" } +SetTriple: dc0802e9fc7a408ca4acbdae0ad1f774, To entity, Value { r#type: Entity, value: "2dbac0b3f9a34f76afd8335d63620713" } +SetTriple: dc0802e9fc7a408ca4acbdae0ad1f774, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: dc0802e9fc7a408ca4acbdae0ad1f774, Index, Value { r#type: Text, value: "a0" } +SetTriple: dc0802e9fc7a408ca4acbdae0ad1f774, Relation type, Value { r#type: Entity, value: "457a27af7b0b485cac07aa37756adafa" } +SetTriple: 2abe47241cfc485682c9f3c693b25ce2, From entity, Value { r#type: Entity, value: "2dbac0b3f9a34f76afd8335d63620713" } +SetTriple: 2abe47241cfc485682c9f3c693b25ce2, To entity, Value { r#type: Entity, value: "" } +SetTriple: 2abe47241cfc485682c9f3c693b25ce2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2abe47241cfc485682c9f3c693b25ce2, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2abe47241cfc485682c9f3c693b25ce2, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 1c67aafa010b4232ac18932dac6f2f70, From entity, Value { r#type: Entity, value: "792d7f337c56412683a33c09a12bb9d0" } +SetTriple: 1c67aafa010b4232ac18932dac6f2f70, To entity, Value { r#type: Entity, value: "3f9fb5044e034417b86f3590fe16f392" } +SetTriple: 1c67aafa010b4232ac18932dac6f2f70, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1c67aafa010b4232ac18932dac6f2f70, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1c67aafa010b4232ac18932dac6f2f70, Relation type, Value { r#type: Entity, value: "457a27af7b0b485cac07aa37756adafa" } +SetTriple: 00d4408e19ce472fb482dc477767ff49, From entity, Value { r#type: Entity, value: "3f9fb5044e034417b86f3590fe16f392" } +SetTriple: 00d4408e19ce472fb482dc477767ff49, To entity, Value { r#type: Entity, value: "" } +SetTriple: 00d4408e19ce472fb482dc477767ff49, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 00d4408e19ce472fb482dc477767ff49, Index, Value { r#type: Text, value: "a0" } +SetTriple: 00d4408e19ce472fb482dc477767ff49, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: bafdeed0d5394bc08d4a66ae63525621, From entity, Value { r#type: Entity, value: "8c12f294149e4543ae0a414e0b893cb0" } +SetTriple: bafdeed0d5394bc08d4a66ae63525621, To entity, Value { r#type: Entity, value: "bc1880ed7b954156823391d2103fe13b" } +SetTriple: bafdeed0d5394bc08d4a66ae63525621, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bafdeed0d5394bc08d4a66ae63525621, Index, Value { r#type: Text, value: "a0" } +SetTriple: bafdeed0d5394bc08d4a66ae63525621, Relation type, Value { r#type: Entity, value: "457a27af7b0b485cac07aa37756adafa" } +SetTriple: ef2b6f24672d4a9aa90463ba9a26d8b2, From entity, Value { r#type: Entity, value: "bc1880ed7b954156823391d2103fe13b" } +SetTriple: ef2b6f24672d4a9aa90463ba9a26d8b2, To entity, Value { r#type: Entity, value: "" } +SetTriple: ef2b6f24672d4a9aa90463ba9a26d8b2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ef2b6f24672d4a9aa90463ba9a26d8b2, Index, Value { r#type: Text, value: "a0" } +SetTriple: ef2b6f24672d4a9aa90463ba9a26d8b2, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 92b679cfdcd04e30b6d3722e8d0266b9, From entity, Value { r#type: Entity, value: "9aedf4a512d54f7faaeb59860834fcf3" } +SetTriple: 92b679cfdcd04e30b6d3722e8d0266b9, To entity, Value { r#type: Entity, value: "de9075f9e2de47259eafaecb66856886" } +SetTriple: 92b679cfdcd04e30b6d3722e8d0266b9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 92b679cfdcd04e30b6d3722e8d0266b9, Index, Value { r#type: Text, value: "a0" } +SetTriple: 92b679cfdcd04e30b6d3722e8d0266b9, Relation type, Value { r#type: Entity, value: "457a27af7b0b485cac07aa37756adafa" } +SetTriple: 7beb0186560e47a0a7b60b979aeffd3d, From entity, Value { r#type: Entity, value: "de9075f9e2de47259eafaecb66856886" } +SetTriple: 7beb0186560e47a0a7b60b979aeffd3d, To entity, Value { r#type: Entity, value: "" } +SetTriple: 7beb0186560e47a0a7b60b979aeffd3d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7beb0186560e47a0a7b60b979aeffd3d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7beb0186560e47a0a7b60b979aeffd3d, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 2f1635cfe8cf423f9c58444a8571248d, From entity, Value { r#type: Entity, value: "9c8c07dd74884b179e3dbc2ca67adcb9" } +SetTriple: 2f1635cfe8cf423f9c58444a8571248d, To entity, Value { r#type: Entity, value: "a37e9a223eea4824a6425367b4bb6006" } +SetTriple: 2f1635cfe8cf423f9c58444a8571248d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2f1635cfe8cf423f9c58444a8571248d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2f1635cfe8cf423f9c58444a8571248d, Relation type, Value { r#type: Entity, value: "457a27af7b0b485cac07aa37756adafa" } +SetTriple: 3786fc4a67554bddbddcb9342108949e, From entity, Value { r#type: Entity, value: "a37e9a223eea4824a6425367b4bb6006" } +SetTriple: 3786fc4a67554bddbddcb9342108949e, To entity, Value { r#type: Entity, value: "" } +SetTriple: 3786fc4a67554bddbddcb9342108949e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3786fc4a67554bddbddcb9342108949e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3786fc4a67554bddbddcb9342108949e, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: ca735e58ab4b484f81c75f939122140a, From entity, Value { r#type: Entity, value: "a12493564d294d29a0c1fce6dceed607" } +SetTriple: ca735e58ab4b484f81c75f939122140a, To entity, Value { r#type: Entity, value: "72b9c78a82704756a1b810a6f07e6a5e" } +SetTriple: ca735e58ab4b484f81c75f939122140a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ca735e58ab4b484f81c75f939122140a, Index, Value { r#type: Text, value: "a0" } +SetTriple: ca735e58ab4b484f81c75f939122140a, Relation type, Value { r#type: Entity, value: "457a27af7b0b485cac07aa37756adafa" } +SetTriple: f8a4def2eb9c4d18baa3975b12cce197, From entity, Value { r#type: Entity, value: "72b9c78a82704756a1b810a6f07e6a5e" } +SetTriple: f8a4def2eb9c4d18baa3975b12cce197, To entity, Value { r#type: Entity, value: "" } +SetTriple: f8a4def2eb9c4d18baa3975b12cce197, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f8a4def2eb9c4d18baa3975b12cce197, Index, Value { r#type: Text, value: "a0" } +SetTriple: f8a4def2eb9c4d18baa3975b12cce197, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: f8e82833e0b74499b484c6e7ced07c38, From entity, Value { r#type: Entity, value: "b500ab81f01d48bfa608d3e1acd989e6" } +SetTriple: f8e82833e0b74499b484c6e7ced07c38, To entity, Value { r#type: Entity, value: "ce1efe28ddba4a78beb7e53df0375cf0" } +SetTriple: f8e82833e0b74499b484c6e7ced07c38, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f8e82833e0b74499b484c6e7ced07c38, Index, Value { r#type: Text, value: "a0" } +SetTriple: f8e82833e0b74499b484c6e7ced07c38, Relation type, Value { r#type: Entity, value: "457a27af7b0b485cac07aa37756adafa" } +SetTriple: 793205daecb9425f8aa555444b40475f, From entity, Value { r#type: Entity, value: "ce1efe28ddba4a78beb7e53df0375cf0" } +SetTriple: 793205daecb9425f8aa555444b40475f, To entity, Value { r#type: Entity, value: "" } +SetTriple: 793205daecb9425f8aa555444b40475f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 793205daecb9425f8aa555444b40475f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 793205daecb9425f8aa555444b40475f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 231f5ccd60ea4a358ea9d22e780032ac, From entity, Value { r#type: Entity, value: "b51b4970fb2f456d84c6922d97d3438f" } +SetTriple: 231f5ccd60ea4a358ea9d22e780032ac, To entity, Value { r#type: Entity, value: "88bd75a8143641acbafa6834c144335f" } +SetTriple: 231f5ccd60ea4a358ea9d22e780032ac, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 231f5ccd60ea4a358ea9d22e780032ac, Index, Value { r#type: Text, value: "a0" } +SetTriple: 231f5ccd60ea4a358ea9d22e780032ac, Relation type, Value { r#type: Entity, value: "457a27af7b0b485cac07aa37756adafa" } +SetTriple: 53cd0a3ae5ec4ba496c1b604d03da83c, From entity, Value { r#type: Entity, value: "88bd75a8143641acbafa6834c144335f" } +SetTriple: 53cd0a3ae5ec4ba496c1b604d03da83c, To entity, Value { r#type: Entity, value: "" } +SetTriple: 53cd0a3ae5ec4ba496c1b604d03da83c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 53cd0a3ae5ec4ba496c1b604d03da83c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 53cd0a3ae5ec4ba496c1b604d03da83c, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: f8a3bacbce5b45b1aae24013ddaffac4, From entity, Value { r#type: Entity, value: "c55f36eb4cca49b8bb104f3297cc8d96" } +SetTriple: 8bf52403758045479e26b786e776e514, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8bf52403758045479e26b786e776e514, Relation type, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: 2e7cc6352004463487987c93b5ee6250, From entity, Value { r#type: Entity, value: "b661922516584a0cbe6624d270d2966c" } +SetTriple: 2e7cc6352004463487987c93b5ee6250, To entity, Value { r#type: Entity, value: "" } +SetTriple: 2e7cc6352004463487987c93b5ee6250, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2e7cc6352004463487987c93b5ee6250, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2e7cc6352004463487987c93b5ee6250, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 73aa807a500049f693fe298cdc0777b5, From entity, Value { r#type: Entity, value: "f7f52783afbc48d0ac237502801ba076" } +SetTriple: 73aa807a500049f693fe298cdc0777b5, To entity, Value { r#type: Entity, value: "7be6385e3c6248f8aeebedb82f991c3e" } +SetTriple: 73aa807a500049f693fe298cdc0777b5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 73aa807a500049f693fe298cdc0777b5, Index, Value { r#type: Text, value: "a0" } +SetTriple: 73aa807a500049f693fe298cdc0777b5, Relation type, Value { r#type: Entity, value: "457a27af7b0b485cac07aa37756adafa" } +SetTriple: 9dbd558f84af4485aaa1afc25b549c1f, From entity, Value { r#type: Entity, value: "7be6385e3c6248f8aeebedb82f991c3e" } +SetTriple: 9dbd558f84af4485aaa1afc25b549c1f, To entity, Value { r#type: Entity, value: "" } +SetTriple: 9dbd558f84af4485aaa1afc25b549c1f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9dbd558f84af4485aaa1afc25b549c1f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9dbd558f84af4485aaa1afc25b549c1f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 24e5535f827945ef9c64b73f17eefcdb, From entity, Value { r#type: Entity, value: "f9544fc545b54a20a8ba309deb94b5ac" } +SetTriple: 24e5535f827945ef9c64b73f17eefcdb, To entity, Value { r#type: Entity, value: "0cc5943cace542f48168cf9a2e8bfedf" } +SetTriple: 24e5535f827945ef9c64b73f17eefcdb, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 24e5535f827945ef9c64b73f17eefcdb, Index, Value { r#type: Text, value: "a0" } +SetTriple: 24e5535f827945ef9c64b73f17eefcdb, Relation type, Value { r#type: Entity, value: "457a27af7b0b485cac07aa37756adafa" } +SetTriple: c4ad2fcecdcc435da80e925921855c3d, From entity, Value { r#type: Entity, value: "0cc5943cace542f48168cf9a2e8bfedf" } +SetTriple: c4ad2fcecdcc435da80e925921855c3d, To entity, Value { r#type: Entity, value: "" } +SetTriple: c4ad2fcecdcc435da80e925921855c3d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c4ad2fcecdcc435da80e925921855c3d, Index, Value { r#type: Text, value: "a0" } +SetTriple: c4ad2fcecdcc435da80e925921855c3d, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 72b9c78a82704756a1b810a6f07e6a5e, 18a7f15ea93b4e15bacf4d57052741e9, Value { r#type: Text, value: "754" } +SetTriple: 8bf52403758045479e26b786e776e514, From entity, Value { r#type: Entity, value: "f1b9fd886388436e95b551aafaea77e5" } +SetTriple: 8bf52403758045479e26b786e776e514, To entity, Value { r#type: Entity, value: "b661922516584a0cbe6624d270d2966c" } +SetTriple: 8bf52403758045479e26b786e776e514, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 72b9c78a82704756a1b810a6f07e6a5e, 334b8ac01be14079b1707e11d0f9eb8d, Value { r#type: Uri, value: "ipfs://bafkreicpl3o2af7q6ohdckup7gdj6trcbilgih7xt555kuzhgcekvcmuqq" } +SetTriple: e1e84199baf344fcbd9a2a27a04cc061, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 72b9c78a82704756a1b810a6f07e6a5e, 58747e352a1c4c76ae64bfe08d28d0a4, Value { r#type: Text, value: "480" } +SetTriple: 72b9c78a82704756a1b810a6f07e6a5e, 03d3a32b258f492e8d81c9ee2bc01461, Value { r#type: Text, value: "png" } +SetTriple: ce1efe28ddba4a78beb7e53df0375cf0, 334b8ac01be14079b1707e11d0f9eb8d, Value { r#type: Uri, value: "ipfs://bafkreig5ruftgi7ku4d5dp7niuhlwa2r57vonwz2hoz5oezssucd5sfdoe" } +SetTriple: ce1efe28ddba4a78beb7e53df0375cf0, 18a7f15ea93b4e15bacf4d57052741e9, Value { r#type: Text, value: "754" } +SetTriple: ce1efe28ddba4a78beb7e53df0375cf0, 58747e352a1c4c76ae64bfe08d28d0a4, Value { r#type: Text, value: "480" } +SetTriple: ce1efe28ddba4a78beb7e53df0375cf0, 03d3a32b258f492e8d81c9ee2bc01461, Value { r#type: Text, value: "png" } +SetTriple: 88bd75a8143641acbafa6834c144335f, 334b8ac01be14079b1707e11d0f9eb8d, Value { r#type: Uri, value: "ipfs://bafkreiflp4hcftgymisriyzxgk43yusencd27c4feqtdjipruqhcn2mjvq" } +SetTriple: 88bd75a8143641acbafa6834c144335f, 18a7f15ea93b4e15bacf4d57052741e9, Value { r#type: Text, value: "754" } +SetTriple: 88bd75a8143641acbafa6834c144335f, 58747e352a1c4c76ae64bfe08d28d0a4, Value { r#type: Text, value: "480" } +SetTriple: 88bd75a8143641acbafa6834c144335f, 03d3a32b258f492e8d81c9ee2bc01461, Value { r#type: Text, value: "png" } +SetTriple: 605e4ccd36234e4c93d29aa2b30fea03, 334b8ac01be14079b1707e11d0f9eb8d, Value { r#type: Uri, value: "ipfs://bafkreifstwwjuwrfzb27yrlxf2crhk7s2tx2fc6dwwrberhjweegpqdsaq" } +SetTriple: 605e4ccd36234e4c93d29aa2b30fea03, 18a7f15ea93b4e15bacf4d57052741e9, Value { r#type: Text, value: "758" } +SetTriple: 605e4ccd36234e4c93d29aa2b30fea03, 58747e352a1c4c76ae64bfe08d28d0a4, Value { r#type: Text, value: "480" } +SetTriple: 605e4ccd36234e4c93d29aa2b30fea03, 03d3a32b258f492e8d81c9ee2bc01461, Value { r#type: Text, value: "png" } +SetTriple: b661922516584a0cbe6624d270d2966c, 334b8ac01be14079b1707e11d0f9eb8d, Value { r#type: Uri, value: "ipfs://bafkreidcmjud2wquyfxt3i7e3p5ttx2n32ojaqxmqa35shk3rk6l3twelu" } +SetTriple: b661922516584a0cbe6624d270d2966c, 18a7f15ea93b4e15bacf4d57052741e9, Value { r#type: Text, value: "2384" } +SetTriple: b661922516584a0cbe6624d270d2966c, 58747e352a1c4c76ae64bfe08d28d0a4, Value { r#type: Text, value: "640" } +SetTriple: b661922516584a0cbe6624d270d2966c, 03d3a32b258f492e8d81c9ee2bc01461, Value { r#type: Text, value: "png" } +SetTriple: 7be6385e3c6248f8aeebedb82f991c3e, 334b8ac01be14079b1707e11d0f9eb8d, Value { r#type: Uri, value: "ipfs://bafkreigteqmpep7ssrffxz5wjdus37iawvexr6qqgrjnkk3z7ir5vx5ygu" } +SetTriple: 7be6385e3c6248f8aeebedb82f991c3e, 18a7f15ea93b4e15bacf4d57052741e9, Value { r#type: Text, value: "754" } +SetTriple: 7be6385e3c6248f8aeebedb82f991c3e, 58747e352a1c4c76ae64bfe08d28d0a4, Value { r#type: Text, value: "480" } +SetTriple: 7be6385e3c6248f8aeebedb82f991c3e, 03d3a32b258f492e8d81c9ee2bc01461, Value { r#type: Text, value: "png" } +SetTriple: 0cc5943cace542f48168cf9a2e8bfedf, 334b8ac01be14079b1707e11d0f9eb8d, Value { r#type: Uri, value: "ipfs://bafkreigxdbpsy3uoz37ujwttjsc6w36i5okykwncslu6ac6sa3ne5uzllm" } +SetTriple: 0cc5943cace542f48168cf9a2e8bfedf, 18a7f15ea93b4e15bacf4d57052741e9, Value { r#type: Text, value: "755" } +SetTriple: 0cc5943cace542f48168cf9a2e8bfedf, 58747e352a1c4c76ae64bfe08d28d0a4, Value { r#type: Text, value: "480" } +SetTriple: 0cc5943cace542f48168cf9a2e8bfedf, 03d3a32b258f492e8d81c9ee2bc01461, Value { r#type: Text, value: "png" } +SetTriple: e8c36fd15d244b32a2195571c7f43de9, 334b8ac01be14079b1707e11d0f9eb8d, Value { r#type: Uri, value: "ipfs://bafkreigys64ik6whxvtpvyjchofoxutladea3a3zwmhlz777nsm4ck77di" } +SetTriple: e8c36fd15d244b32a2195571c7f43de9, 18a7f15ea93b4e15bacf4d57052741e9, Value { r#type: Text, value: "758" } +SetTriple: e8c36fd15d244b32a2195571c7f43de9, 58747e352a1c4c76ae64bfe08d28d0a4, Value { r#type: Text, value: "480" } +SetTriple: e8c36fd15d244b32a2195571c7f43de9, 03d3a32b258f492e8d81c9ee2bc01461, Value { r#type: Text, value: "png" } +SetTriple: b40f74487fb7499686155e973484aa48, 334b8ac01be14079b1707e11d0f9eb8d, Value { r#type: Uri, value: "ipfs://bafkreibldgnzemuiohajktceailcfaqsloqlqxinm6viyos2nem7dyuzs4" } +SetTriple: b40f74487fb7499686155e973484aa48, 18a7f15ea93b4e15bacf4d57052741e9, Value { r#type: Text, value: "754" } +SetTriple: b40f74487fb7499686155e973484aa48, 58747e352a1c4c76ae64bfe08d28d0a4, Value { r#type: Text, value: "480" } +SetTriple: b40f74487fb7499686155e973484aa48, 03d3a32b258f492e8d81c9ee2bc01461, Value { r#type: Text, value: "png" } +SetTriple: 99b86bc838e9486884d7ecab02b006d9, 334b8ac01be14079b1707e11d0f9eb8d, Value { r#type: Uri, value: "ipfs://bafkreifglzurywr6cngpfnctz3u2ivtatiqvwkhn7aavez2a52uqapx3qa" } +SetTriple: 99b86bc838e9486884d7ecab02b006d9, 18a7f15ea93b4e15bacf4d57052741e9, Value { r#type: Text, value: "758" } +SetTriple: 99b86bc838e9486884d7ecab02b006d9, 58747e352a1c4c76ae64bfe08d28d0a4, Value { r#type: Text, value: "480" } +SetTriple: 99b86bc838e9486884d7ecab02b006d9, 03d3a32b258f492e8d81c9ee2bc01461, Value { r#type: Text, value: "png" } +SetTriple: 3d92849f27d647cd9eed1b84a7f43136, 334b8ac01be14079b1707e11d0f9eb8d, Value { r#type: Uri, value: "ipfs://bafkreibuehn3jc2vlx6572iynvjfsqbz5jd3t4rnif5zcx4l7boy2bk5lq" } +SetTriple: 3d92849f27d647cd9eed1b84a7f43136, 18a7f15ea93b4e15bacf4d57052741e9, Value { r#type: Text, value: "940" } +SetTriple: 3d92849f27d647cd9eed1b84a7f43136, 58747e352a1c4c76ae64bfe08d28d0a4, Value { r#type: Text, value: "589" } +SetTriple: 3d92849f27d647cd9eed1b84a7f43136, 03d3a32b258f492e8d81c9ee2bc01461, Value { r#type: Text, value: "jpg" } +SetTriple: f3fb3a0bf7a740fdba889032221411de, 334b8ac01be14079b1707e11d0f9eb8d, Value { r#type: Uri, value: "ipfs://bafkreihdkqtq4ccbadbdxgu5ddulwojivkhucm6m6em73licwu5i7zrrty" } +SetTriple: f3fb3a0bf7a740fdba889032221411de, 18a7f15ea93b4e15bacf4d57052741e9, Value { r#type: Text, value: "762" } +SetTriple: f3fb3a0bf7a740fdba889032221411de, 58747e352a1c4c76ae64bfe08d28d0a4, Value { r#type: Text, value: "480" } +SetTriple: f3fb3a0bf7a740fdba889032221411de, 03d3a32b258f492e8d81c9ee2bc01461, Value { r#type: Text, value: "png" } +SetTriple: 5e8cefef653a4240b9ea1ce244a7c013, 334b8ac01be14079b1707e11d0f9eb8d, Value { r#type: Uri, value: "ipfs://bafkreidxkyyhjywjqx77vx4gzfdibywkzipfkbr3zjzlgk6d7njjtgzl3y" } +SetTriple: 5e8cefef653a4240b9ea1ce244a7c013, 18a7f15ea93b4e15bacf4d57052741e9, Value { r#type: Text, value: "754" } +SetTriple: 5e8cefef653a4240b9ea1ce244a7c013, 58747e352a1c4c76ae64bfe08d28d0a4, Value { r#type: Text, value: "480" } +SetTriple: 5e8cefef653a4240b9ea1ce244a7c013, 03d3a32b258f492e8d81c9ee2bc01461, Value { r#type: Text, value: "png" } +SetTriple: 461b1ede47d646ba9af6168351bc06b8, 334b8ac01be14079b1707e11d0f9eb8d, Value { r#type: Uri, value: "ipfs://bafybeif3bze6nx25ubwwdt7kv65zcbi3qeweth6rixupkjj2xizrkte5hq" } +SetTriple: 461b1ede47d646ba9af6168351bc06b8, 18a7f15ea93b4e15bacf4d57052741e9, Value { r#type: Text, value: "1728" } +SetTriple: 461b1ede47d646ba9af6168351bc06b8, 58747e352a1c4c76ae64bfe08d28d0a4, Value { r#type: Text, value: "688" } +SetTriple: 461b1ede47d646ba9af6168351bc06b8, 03d3a32b258f492e8d81c9ee2bc01461, Value { r#type: Text, value: "png" } +SetTriple: 73925afcc0a744919d5c4fa111d375ea, 334b8ac01be14079b1707e11d0f9eb8d, Value { r#type: Uri, value: "ipfs://bafkreibagulgxm54xcfgpkvxxtdi4v5bbpa4n43u5qu4md5logt3tgr25u" } +SetTriple: 73925afcc0a744919d5c4fa111d375ea, 18a7f15ea93b4e15bacf4d57052741e9, Value { r#type: Text, value: "754" } +SetTriple: 73925afcc0a744919d5c4fa111d375ea, 58747e352a1c4c76ae64bfe08d28d0a4, Value { r#type: Text, value: "480" } +SetTriple: 73925afcc0a744919d5c4fa111d375ea, 03d3a32b258f492e8d81c9ee2bc01461, Value { r#type: Text, value: "png" } +SetTriple: 2dbac0b3f9a34f76afd8335d63620713, 334b8ac01be14079b1707e11d0f9eb8d, Value { r#type: Uri, value: "ipfs://bafkreif3fvhglocemnt3wyoabci3y5kuxpld67wziyrwgaivjoourlclsa" } +SetTriple: 2dbac0b3f9a34f76afd8335d63620713, 18a7f15ea93b4e15bacf4d57052741e9, Value { r#type: Text, value: "724" } +SetTriple: 2dbac0b3f9a34f76afd8335d63620713, 58747e352a1c4c76ae64bfe08d28d0a4, Value { r#type: Text, value: "480" } +SetTriple: 2dbac0b3f9a34f76afd8335d63620713, 03d3a32b258f492e8d81c9ee2bc01461, Value { r#type: Text, value: "png" } +SetTriple: 3f9fb5044e034417b86f3590fe16f392, 334b8ac01be14079b1707e11d0f9eb8d, Value { r#type: Uri, value: "ipfs://bafkreiekch5c7i2njqhjgqriyv7twfvn2yyctivbbzl44jitphvugjcu3y" } +SetTriple: 3f9fb5044e034417b86f3590fe16f392, 18a7f15ea93b4e15bacf4d57052741e9, Value { r#type: Text, value: "755" } +SetTriple: 3f9fb5044e034417b86f3590fe16f392, 58747e352a1c4c76ae64bfe08d28d0a4, Value { r#type: Text, value: "480" } +SetTriple: 3f9fb5044e034417b86f3590fe16f392, 03d3a32b258f492e8d81c9ee2bc01461, Value { r#type: Text, value: "png" } +SetTriple: bc1880ed7b954156823391d2103fe13b, 334b8ac01be14079b1707e11d0f9eb8d, Value { r#type: Uri, value: "ipfs://bafkreifdkrmajpfx3c6b4z234yklklrctbyzwqxqdqeosrqgs66l75t5li" } +SetTriple: bc1880ed7b954156823391d2103fe13b, 18a7f15ea93b4e15bacf4d57052741e9, Value { r#type: Text, value: "754" } +SetTriple: bc1880ed7b954156823391d2103fe13b, 58747e352a1c4c76ae64bfe08d28d0a4, Value { r#type: Text, value: "480" } +SetTriple: bc1880ed7b954156823391d2103fe13b, 03d3a32b258f492e8d81c9ee2bc01461, Value { r#type: Text, value: "png" } +SetTriple: de9075f9e2de47259eafaecb66856886, 334b8ac01be14079b1707e11d0f9eb8d, Value { r#type: Uri, value: "ipfs://bafkreicw26f4eirk6abdkoabgvloeungctaj4fsadrirftwccox33ggrqq" } +SetTriple: de9075f9e2de47259eafaecb66856886, 18a7f15ea93b4e15bacf4d57052741e9, Value { r#type: Text, value: "755" } +SetTriple: de9075f9e2de47259eafaecb66856886, 58747e352a1c4c76ae64bfe08d28d0a4, Value { r#type: Text, value: "480" } +SetTriple: de9075f9e2de47259eafaecb66856886, 03d3a32b258f492e8d81c9ee2bc01461, Value { r#type: Text, value: "png" } +SetTriple: a37e9a223eea4824a6425367b4bb6006, 334b8ac01be14079b1707e11d0f9eb8d, Value { r#type: Uri, value: "ipfs://bafkreiaw7zkzbo2c3evgkkw27gtpbg5kem2252rbjsx523onpq3glcyu7a" } +SetTriple: a37e9a223eea4824a6425367b4bb6006, 18a7f15ea93b4e15bacf4d57052741e9, Value { r#type: Text, value: "758" } +SetTriple: a37e9a223eea4824a6425367b4bb6006, 58747e352a1c4c76ae64bfe08d28d0a4, Value { r#type: Text, value: "480" } +SetTriple: a37e9a223eea4824a6425367b4bb6006, 03d3a32b258f492e8d81c9ee2bc01461, Value { r#type: Text, value: "png" } +SetTriple: d036e4372b1f421683e712fcf122948d, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: d036e4372b1f421683e712fcf122948d, Index, Value { r#type: Text, value: "a0" } +SetTriple: d036e4372b1f421683e712fcf122948d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d036e4372b1f421683e712fcf122948d, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: d036e4372b1f421683e712fcf122948d, From entity, Value { r#type: Entity, value: "39f771cfba9e4ff19fee73ea56c0879e" } +SetTriple: afdbc3ab37534536bd1fb91f8ceb23e8, Name, Value { r#type: Text, value: "Owners" } +SetTriple: 39f771cfba9e4ff19fee73ea56c0879e, Name, Value { r#type: Text, value: "Bias" } +SetTriple: b694c15e91d04e85a9900dc4763c43af, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: b694c15e91d04e85a9900dc4763c43af, Index, Value { r#type: Text, value: "a0" } +SetTriple: b694c15e91d04e85a9900dc4763c43af, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b694c15e91d04e85a9900dc4763c43af, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: b694c15e91d04e85a9900dc4763c43af, From entity, Value { r#type: Entity, value: "afdbc3ab37534536bd1fb91f8ceb23e8" } +SetTriple: 2c11b71bc4294ff3a66bbe9eeae0b632, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 2c11b71bc4294ff3a66bbe9eeae0b632, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2c11b71bc4294ff3a66bbe9eeae0b632, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2c11b71bc4294ff3a66bbe9eeae0b632, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 2c11b71bc4294ff3a66bbe9eeae0b632, From entity, Value { r#type: Entity, value: "afdbc3ab37534536bd1fb91f8ceb23e8" } +SetTriple: 1eca550030d5484e93867aca0061639f, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 1eca550030d5484e93867aca0061639f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1eca550030d5484e93867aca0061639f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1eca550030d5484e93867aca0061639f, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 1eca550030d5484e93867aca0061639f, From entity, Value { r#type: Entity, value: "39f771cfba9e4ff19fee73ea56c0879e" } +SetTriple: a72389824069460ba3f918f1c8ba5a82, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a72389824069460ba3f918f1c8ba5a82, From entity, Value { r#type: Entity, value: "15234a4c061f46ee90a0c44cd9414cbe" } +SetTriple: 80699073aea544418a7a6575c53459eb, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 80699073aea544418a7a6575c53459eb, Index, Value { r#type: Text, value: "a0" } +SetTriple: 80699073aea544418a7a6575c53459eb, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 80699073aea544418a7a6575c53459eb, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 80699073aea544418a7a6575c53459eb, From entity, Value { r#type: Entity, value: "15234a4c061f46ee90a0c44cd9414cbe" } +SetTriple: 13c40db5deda4899a30dfe6a7349e053, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 13c40db5deda4899a30dfe6a7349e053, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: 13c40db5deda4899a30dfe6a7349e053, From entity, Value { r#type: Entity, value: "f7423062fb7549288b63156af138258b" } +SetTriple: 195c8b817cb642cba67289cea88c06a4, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 195c8b817cb642cba67289cea88c06a4, Index, Value { r#type: Text, value: "a0" } +SetTriple: 195c8b817cb642cba67289cea88c06a4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 195c8b817cb642cba67289cea88c06a4, To entity, Value { r#type: Entity, value: "7fa816a3cb704534934888449869dc33" } +SetTriple: 195c8b817cb642cba67289cea88c06a4, From entity, Value { r#type: Entity, value: "724d29589d5443c8af52e3feb24cdf88" } +SetTriple: 8e6cab6b9db0489597e31371bf984383, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 8e6cab6b9db0489597e31371bf984383, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8e6cab6b9db0489597e31371bf984383, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8e6cab6b9db0489597e31371bf984383, To entity, Value { r#type: Entity, value: "39f771cfba9e4ff19fee73ea56c0879e" } +SetTriple: 8e6cab6b9db0489597e31371bf984383, From entity, Value { r#type: Entity, value: "724d29589d5443c8af52e3feb24cdf88" } +SetTriple: ed7f73aa0e8445fb90e8f4b122f4e8af, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ed7f73aa0e8445fb90e8f4b122f4e8af, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: ed7f73aa0e8445fb90e8f4b122f4e8af, From entity, Value { r#type: Entity, value: "724d29589d5443c8af52e3feb24cdf88" } +SetTriple: 4884667991094d06af46ff4e67dc7a8c, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 4884667991094d06af46ff4e67dc7a8c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4884667991094d06af46ff4e67dc7a8c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4884667991094d06af46ff4e67dc7a8c, To entity, Value { r#type: Entity, value: "afdbc3ab37534536bd1fb91f8ceb23e8" } +SetTriple: 4884667991094d06af46ff4e67dc7a8c, From entity, Value { r#type: Entity, value: "15234a4c061f46ee90a0c44cd9414cbe" } +SetTriple: a72389824069460ba3f918f1c8ba5a82, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: a72389824069460ba3f918f1c8ba5a82, Index, Value { r#type: Text, value: "a0" } +SetTriple: a72389824069460ba3f918f1c8ba5a82, To entity, Value { r#type: Entity, value: "39f771cfba9e4ff19fee73ea56c0879e" } +SetTriple: 2409916c4b6f4a138dcb241eceeb7c95, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 2409916c4b6f4a138dcb241eceeb7c95, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2409916c4b6f4a138dcb241eceeb7c95, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2409916c4b6f4a138dcb241eceeb7c95, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 2409916c4b6f4a138dcb241eceeb7c95, From entity, Value { r#type: Entity, value: "9c1922f1d7a247d1841d234cb2f56991" } +SetTriple: 94e5c08a07c54a3c8292b186a88e34fb, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 94e5c08a07c54a3c8292b186a88e34fb, Index, Value { r#type: Text, value: "a0" } +SetTriple: 94e5c08a07c54a3c8292b186a88e34fb, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 94e5c08a07c54a3c8292b186a88e34fb, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: 94e5c08a07c54a3c8292b186a88e34fb, From entity, Value { r#type: Entity, value: "16b52120dd5f4caa81c2e23a34c10699" } +SetTriple: 0f230565891a46ec898a9bf30112e061, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 0f230565891a46ec898a9bf30112e061, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0f230565891a46ec898a9bf30112e061, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0f230565891a46ec898a9bf30112e061, To entity, Value { r#type: Entity, value: "71a5569e688e4e0f8eb0d8c361211e7c" } +SetTriple: 0f230565891a46ec898a9bf30112e061, From entity, Value { r#type: Entity, value: "16b52120dd5f4caa81c2e23a34c10699" } +SetTriple: 7454904b6b784c76acf48eb9873c2eed, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 7454904b6b784c76acf48eb9873c2eed, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7454904b6b784c76acf48eb9873c2eed, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7454904b6b784c76acf48eb9873c2eed, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 7454904b6b784c76acf48eb9873c2eed, From entity, Value { r#type: Entity, value: "7a5e199b00b04c68834aafcd18673b4c" } +SetTriple: b08f689d1a07413cbb2b3dc395884cd8, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: b08f689d1a07413cbb2b3dc395884cd8, Index, Value { r#type: Text, value: "a0" } +SetTriple: b08f689d1a07413cbb2b3dc395884cd8, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b08f689d1a07413cbb2b3dc395884cd8, To entity, Value { r#type: Entity, value: "39f771cfba9e4ff19fee73ea56c0879e" } +SetTriple: b08f689d1a07413cbb2b3dc395884cd8, From entity, Value { r#type: Entity, value: "7a5e199b00b04c68834aafcd18673b4c" } +SetTriple: 4fe6a6af3fb74889bb9c9ee85ca5bbbc, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 4fe6a6af3fb74889bb9c9ee85ca5bbbc, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4fe6a6af3fb74889bb9c9ee85ca5bbbc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4fe6a6af3fb74889bb9c9ee85ca5bbbc, To entity, Value { r#type: Entity, value: "7fa816a3cb704534934888449869dc33" } +SetTriple: 4fe6a6af3fb74889bb9c9ee85ca5bbbc, From entity, Value { r#type: Entity, value: "7a5e199b00b04c68834aafcd18673b4c" } +SetTriple: 98fbc56cd2bf46c2a31dc843f5353694, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 98fbc56cd2bf46c2a31dc843f5353694, Index, Value { r#type: Text, value: "a0" } +SetTriple: 98fbc56cd2bf46c2a31dc843f5353694, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 98fbc56cd2bf46c2a31dc843f5353694, To entity, Value { r#type: Entity, value: "e8010874d3304a4d990762e89a19371a" } +SetTriple: 98fbc56cd2bf46c2a31dc843f5353694, From entity, Value { r#type: Entity, value: "7a5e199b00b04c68834aafcd18673b4c" } +SetTriple: 228a7d28baa2492586f03cb1d13f6283, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: ed7f73aa0e8445fb90e8f4b122f4e8af, Index, Value { r#type: Text, value: "a0" } +SetTriple: ed7f73aa0e8445fb90e8f4b122f4e8af, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 228a7d28baa2492586f03cb1d13f6283, Index, Value { r#type: Text, value: "a0" } +SetTriple: 228a7d28baa2492586f03cb1d13f6283, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 228a7d28baa2492586f03cb1d13f6283, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 228a7d28baa2492586f03cb1d13f6283, From entity, Value { r#type: Entity, value: "1e39e693db0f404b8e91e06ae41b5e59" } +SetTriple: 1a6113ae68a14f53956ee05a07885468, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 1a6113ae68a14f53956ee05a07885468, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1a6113ae68a14f53956ee05a07885468, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1a6113ae68a14f53956ee05a07885468, To entity, Value { r#type: Entity, value: "39f771cfba9e4ff19fee73ea56c0879e" } +SetTriple: 1a6113ae68a14f53956ee05a07885468, From entity, Value { r#type: Entity, value: "1e39e693db0f404b8e91e06ae41b5e59" } +SetTriple: 5c64ff63df5b42d8a5a9ad3e67c7ea65, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 5c64ff63df5b42d8a5a9ad3e67c7ea65, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5c64ff63df5b42d8a5a9ad3e67c7ea65, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5c64ff63df5b42d8a5a9ad3e67c7ea65, To entity, Value { r#type: Entity, value: "7fa816a3cb704534934888449869dc33" } +SetTriple: 5c64ff63df5b42d8a5a9ad3e67c7ea65, From entity, Value { r#type: Entity, value: "1e39e693db0f404b8e91e06ae41b5e59" } +SetTriple: f88f6f3eea474bcd88656e8bee02fe08, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: f88f6f3eea474bcd88656e8bee02fe08, Index, Value { r#type: Text, value: "a0" } +SetTriple: f88f6f3eea474bcd88656e8bee02fe08, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f88f6f3eea474bcd88656e8bee02fe08, To entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: f88f6f3eea474bcd88656e8bee02fe08, From entity, Value { r#type: Entity, value: "1e39e693db0f404b8e91e06ae41b5e59" } +SetTriple: f546b8ee9eab4ff5b57fca17f3d07c89, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: f546b8ee9eab4ff5b57fca17f3d07c89, Index, Value { r#type: Text, value: "a0" } +SetTriple: f546b8ee9eab4ff5b57fca17f3d07c89, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f546b8ee9eab4ff5b57fca17f3d07c89, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: f546b8ee9eab4ff5b57fca17f3d07c89, From entity, Value { r#type: Entity, value: "eab5d59073844c398775a613eca3587e" } +SetTriple: 91ab931d2d8e4021a6e58e5fbb884073, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 91ab931d2d8e4021a6e58e5fbb884073, Index, Value { r#type: Text, value: "a0" } +SetTriple: 91ab931d2d8e4021a6e58e5fbb884073, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 91ab931d2d8e4021a6e58e5fbb884073, To entity, Value { r#type: Entity, value: "c8e8fd5f011d4c8e8aaf1a2ffc5b48fd" } +SetTriple: 91ab931d2d8e4021a6e58e5fbb884073, From entity, Value { r#type: Entity, value: "f7423062fb7549288b63156af138258b" } +SetTriple: 31e510094b5049daacfb805969c38d9a, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 31e510094b5049daacfb805969c38d9a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 31e510094b5049daacfb805969c38d9a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 31e510094b5049daacfb805969c38d9a, To entity, Value { r#type: Entity, value: "c670247893c74af48f2a285a46cc19ca" } +SetTriple: 31e510094b5049daacfb805969c38d9a, From entity, Value { r#type: Entity, value: "f7423062fb7549288b63156af138258b" } +SetTriple: e9521e467a084f18a30324b5f4f4493e, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: e9521e467a084f18a30324b5f4f4493e, Index, Value { r#type: Text, value: "a0" } +SetTriple: e9521e467a084f18a30324b5f4f4493e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e9521e467a084f18a30324b5f4f4493e, To entity, Value { r#type: Entity, value: "6db5eaa51cf6463e88f987bd631db044" } +SetTriple: e9521e467a084f18a30324b5f4f4493e, From entity, Value { r#type: Entity, value: "f7423062fb7549288b63156af138258b" } +SetTriple: 272d409a2cd840978494ad5ece125ba0, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 272d409a2cd840978494ad5ece125ba0, Index, Value { r#type: Text, value: "a0" } +SetTriple: 272d409a2cd840978494ad5ece125ba0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 272d409a2cd840978494ad5ece125ba0, To entity, Value { r#type: Entity, value: "f724b80589e1424bb149acff9ecfd0f7" } +SetTriple: 272d409a2cd840978494ad5ece125ba0, From entity, Value { r#type: Entity, value: "f7423062fb7549288b63156af138258b" } +SetTriple: 5491120fd9884910b8c1cb6e3e70807e, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 5491120fd9884910b8c1cb6e3e70807e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5491120fd9884910b8c1cb6e3e70807e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5491120fd9884910b8c1cb6e3e70807e, To entity, Value { r#type: Entity, value: "71a5569e688e4e0f8eb0d8c361211e7c" } +SetTriple: 5491120fd9884910b8c1cb6e3e70807e, From entity, Value { r#type: Entity, value: "f7423062fb7549288b63156af138258b" } +SetTriple: cd3f35aad7b14a5090c1e57d06c149be, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: cd3f35aad7b14a5090c1e57d06c149be, Index, Value { r#type: Text, value: "a0" } +SetTriple: cd3f35aad7b14a5090c1e57d06c149be, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: cd3f35aad7b14a5090c1e57d06c149be, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: cd3f35aad7b14a5090c1e57d06c149be, From entity, Value { r#type: Entity, value: "f7423062fb7549288b63156af138258b" } +SetTriple: 13c40db5deda4899a30dfe6a7349e053, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 13c40db5deda4899a30dfe6a7349e053, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8af8f54dfbed4e0f9d329a082b4e4aa4, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 4cfc9e07573342c3a9f9f2b5342ff274, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 8065762a616145eda358a534256431df, From entity, Value { r#type: Entity, value: "ba43fd1aef2d449f97c46bf8e8ac9d58" } +SetTriple: 8af8f54dfbed4e0f9d329a082b4e4aa4, From entity, Value { r#type: Entity, value: "fcf7819a3894481a801df0600725cddb" } +SetTriple: 8af8f54dfbed4e0f9d329a082b4e4aa4, To entity, Value { r#type: Entity, value: "6904c3bbed784ee9aa6075028dbdc2cd" } +SetTriple: 8af8f54dfbed4e0f9d329a082b4e4aa4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8af8f54dfbed4e0f9d329a082b4e4aa4, Index, Value { r#type: Text, value: "a0" } +SetTriple: ba43fd1aef2d449f97c46bf8e8ac9d58, Name, Value { r#type: Text, value: "Task" } +SetTriple: Task, Description, Value { r#type: Text, value: "Something that needs to be done" } +SetTriple: c3a44612b9f5497dac2be1e3b3e843d2, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: c3a44612b9f5497dac2be1e3b3e843d2, Index, Value { r#type: Text, value: "a0" } +SetTriple: c3a44612b9f5497dac2be1e3b3e843d2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: fcf7819a3894481a801df0600725cddb, Name, Value { r#type: Text, value: "Activity" } +SetTriple: Activity, Description, Value { r#type: Text, value: "An action that needs to be done by somebody performing a role" } +SetTriple: 4cfc9e07573342c3a9f9f2b5342ff274, Index, Value { r#type: Text, value: "a0" } +SetTriple: c3a44612b9f5497dac2be1e3b3e843d2, From entity, Value { r#type: Entity, value: "ba43fd1aef2d449f97c46bf8e8ac9d58" } +SetTriple: 4cfc9e07573342c3a9f9f2b5342ff274, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4cfc9e07573342c3a9f9f2b5342ff274, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 4cfc9e07573342c3a9f9f2b5342ff274, From entity, Value { r#type: Entity, value: "fcf7819a3894481a801df0600725cddb" } +SetTriple: 8065762a616145eda358a534256431df, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: c3a44612b9f5497dac2be1e3b3e843d2, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 8065762a616145eda358a534256431df, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8065762a616145eda358a534256431df, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8065762a616145eda358a534256431df, To entity, Value { r#type: Entity, value: "" } +SetTriple: 575ace4e30404fbc93958931b1d5cc2c, To entity, Value { r#type: Entity, value: "b5013ce08426409f8b4d4b8606bde922" } +SetTriple: 06faa3f0181849dba7c23b8843d2d8c4, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 06faa3f0181849dba7c23b8843d2d8c4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 06faa3f0181849dba7c23b8843d2d8c4, Index, Value { r#type: Text, value: "a0" } +SetTriple: 06faa3f0181849dba7c23b8843d2d8c4, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 3a6f294a3fbb4762961716bedba60a28, From entity, Value { r#type: Entity, value: "8e705c2ab65d4bb790ddc87270421849" } +SetTriple: 3a6f294a3fbb4762961716bedba60a28, To entity, Value { r#type: Entity, value: "72a5b739c0e34c3cbd9549884ffa80ef" } +SetTriple: 3a6f294a3fbb4762961716bedba60a28, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3a6f294a3fbb4762961716bedba60a28, Index, Value { r#type: Text, value: "a0" } +SetTriple: 244296f5c3804af0ac22020ff877ad81, Index, Value { r#type: Text, value: "a0" } +SetTriple: e87e21761efd4071bf0275d05626c92d, Index, Value { r#type: Text, value: "a0" } +SetTriple: e87e21761efd4071bf0275d05626c92d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e87e21761efd4071bf0275d05626c92d, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: e87e21761efd4071bf0275d05626c92d, From entity, Value { r#type: Entity, value: "b5013ce08426409f8b4d4b8606bde922" } +SetTriple: 3a6f294a3fbb4762961716bedba60a28, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 60a28c479a904ea7be0225bb97cd9e1f, From entity, Value { r#type: Entity, value: "b5013ce08426409f8b4d4b8606bde922" } +SetTriple: 60a28c479a904ea7be0225bb97cd9e1f, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 60a28c479a904ea7be0225bb97cd9e1f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 60a28c479a904ea7be0225bb97cd9e1f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 60a28c479a904ea7be0225bb97cd9e1f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 575ace4e30404fbc93958931b1d5cc2c, From entity, Value { r#type: Entity, value: "8e705c2ab65d4bb790ddc87270421849" } +SetTriple: 06faa3f0181849dba7c23b8843d2d8c4, From entity, Value { r#type: Entity, value: "72a5b739c0e34c3cbd9549884ffa80ef" } +SetTriple: 575ace4e30404fbc93958931b1d5cc2c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e87e21761efd4071bf0275d05626c92d, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 244296f5c3804af0ac22020ff877ad81, From entity, Value { r#type: Entity, value: "72a5b739c0e34c3cbd9549884ffa80ef" } +SetTriple: 244296f5c3804af0ac22020ff877ad81, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 244296f5c3804af0ac22020ff877ad81, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 244296f5c3804af0ac22020ff877ad81, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 3edcb96e691d4c9bb74dc66302d5d61f, From entity, Value { r#type: Entity, value: "8e705c2ab65d4bb790ddc87270421849" } +SetTriple: 3edcb96e691d4c9bb74dc66302d5d61f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3edcb96e691d4c9bb74dc66302d5d61f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3edcb96e691d4c9bb74dc66302d5d61f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 3edcb96e691d4c9bb74dc66302d5d61f, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 72a5b739c0e34c3cbd9549884ffa80ef, Name, Value { r#type: Text, value: "Unit" } +SetTriple: b5013ce08426409f8b4d4b8606bde922, Name, Value { r#type: Text, value: "Metric type" } +SetTriple: 8e705c2ab65d4bb790ddc87270421849, Description, Value { r#type: Text, value: "A quantifiable measure that can be used to track success" } +SetTriple: 8e705c2ab65d4bb790ddc87270421849, Name, Value { r#type: Text, value: "Metric" } +SetTriple: 575ace4e30404fbc93958931b1d5cc2c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 575ace4e30404fbc93958931b1d5cc2c, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 9b8c3e8dde964a908dc4af06a52be7c7, To entity, Value { r#type: Entity, value: "f71912463dca4e778a79d9cdc9804127" } +SetTriple: 9b8c3e8dde964a908dc4af06a52be7c7, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9b8c3e8dde964a908dc4af06a52be7c7, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: c696cd7152944f979056ac0e53654b85, To entity, Value { r#type: Entity, value: "f71912463dca4e778a79d9cdc9804127" } +SetTriple: 9b8c3e8dde964a908dc4af06a52be7c7, From entity, Value { r#type: Entity, value: "2bd0960f5af94b0c893920e9edf31ede" } +SetTriple: 9b8c3e8dde964a908dc4af06a52be7c7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c696cd7152944f979056ac0e53654b85, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c696cd7152944f979056ac0e53654b85, Index, Value { r#type: Text, value: "a0" } +SetTriple: c696cd7152944f979056ac0e53654b85, From entity, Value { r#type: Entity, value: "377ac7e818ab443cbc2629ff04745f99" } +SetTriple: c696cd7152944f979056ac0e53654b85, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 08cd3c705ec543f391caaaa42b5cb67f, Index, Value { r#type: Text, value: "a0" } +SetTriple: d835681130a04732b54e7ac645bc0d1c, Indexed Space Address, Value { r#type: Text, value: "0xaA96BF170A91B63b394BC34D4C77796E53dD53e2" } +SetTriple: d835681130a04732b54e7ac645bc0d1c, Name, Value { r#type: Text, value: "Defense" } +SetTriple: 08cd3c705ec543f391caaaa42b5cb67f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: Defense, Image, Value { r#type: Text, value: "ifps://QmXqvVacTLLELkngfz2UB2A2MTPHSpZ3ffryUJt6KTj8So" } +SetTriple: 08cd3c705ec543f391caaaa42b5cb67f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 08cd3c705ec543f391caaaa42b5cb67f, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: 08cd3c705ec543f391caaaa42b5cb67f, From entity, Value { r#type: Entity, value: "d835681130a04732b54e7ac645bc0d1c" } +SetTriple: 4135fd8b052e4eab992d2cde9db9b712, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 4135fd8b052e4eab992d2cde9db9b712, From entity, Value { r#type: Entity, value: "467eb36fd4e3456ca51bbe4f94465520" } +SetTriple: 4135fd8b052e4eab992d2cde9db9b712, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: 4135fd8b052e4eab992d2cde9db9b712, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4135fd8b052e4eab992d2cde9db9b712, Index, Value { r#type: Text, value: "a0" } +SetTriple: 467eb36fd4e3456ca51bbe4f94465520, Indexed Space Address, Value { r#type: Text, value: "0x8c2590D488802DD3B106d0677Dd495020560E808" } +SetTriple: 467eb36fd4e3456ca51bbe4f94465520, Description, Value { r#type: Text, value: "" } +SetTriple: 467eb36fd4e3456ca51bbe4f94465520, Name, Value { r#type: Text, value: "Healthcare" } +SetTriple: Healthcare, Image, Value { r#type: Text, value: "ipfs://QmWjWummenz3QrTNBSZqQV7JgY8ccbcfnZBzPH72DprFHt" } +SetTriple: Defense, Image, Value { r#type: Text, value: "ipfs://QmXqvVacTLLELkngfz2UB2A2MTPHSpZ3ffryUJt6KTj8So" } +SetTriple: Defense, Image, Value { r#type: Text, value: "ipfs://QmfB4Fp4ETr2M1jxhyYqLYrt9jwmUDMRHupXq4Z4QMwLbA" } +SetTriple: Healthcare, Image, Value { r#type: Text, value: "ipfs://QmPvpRECo4sr1PZtmVjEUiL42gYNiLmdLcxYmSAewj2sXM" } +SetTriple: ee4b8245f64f4906b5e50edaa7a177e2, From entity, Value { r#type: Entity, value: "5cf96d431c834fd8a549176f75b14469" } +SetTriple: 5cf96d431c834fd8a549176f75b14469, Indexed Space Address, Value { r#type: Text, value: "0x843010627854BaA37070fC86535ff19C3Beb33A6" } +SetTriple: 5cf96d431c834fd8a549176f75b14469, Image, Value { r#type: Text, value: "ipfs://QmdDBQdHF8NXp18e2BK44CUcHz44jSq7JFHEmCQpQUDdSy" } +SetTriple: ee4b8245f64f4906b5e50edaa7a177e2, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: ee4b8245f64f4906b5e50edaa7a177e2, Index, Value { r#type: Text, value: "a0" } +SetTriple: ee4b8245f64f4906b5e50edaa7a177e2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ee4b8245f64f4906b5e50edaa7a177e2, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 5cf96d431c834fd8a549176f75b14469, Name, Value { r#type: Text, value: "California" } +SetTriple: b3b03c909b6d487cb2e2a7d685f120eb, Description, Value { r#type: Text, value: "A nonprofit organization is a legal entity organized and operated for a collective, public or social benefit, in contrary with an entity that operates as a business aiming to generate a profit for its owners." } +SetTriple: 6180797c2e304c3abc53f25abf69df5c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6180797c2e304c3abc53f25abf69df5c, Index, Value { r#type: Text, value: "a0" } +SetTriple: b3b03c909b6d487cb2e2a7d685f120eb, Name, Value { r#type: Text, value: "Nonprofit" } +SetTriple: 6180797c2e304c3abc53f25abf69df5c, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 6180797c2e304c3abc53f25abf69df5c, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 6180797c2e304c3abc53f25abf69df5c, From entity, Value { r#type: Entity, value: "b3b03c909b6d487cb2e2a7d685f120eb" } +SetTriple: 5ead50824dbb4d8299d1ba25084f0f97, Name, Value { r#type: Text, value: "Flow" } +SetTriple: 3e9cced362a44d3bba97aa8602898edc, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 3e9cced362a44d3bba97aa8602898edc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3e9cced362a44d3bba97aa8602898edc, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3e9cced362a44d3bba97aa8602898edc, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: e21a9bb9e521435da4904c80d2ebcb27, From entity, Value { r#type: Entity, value: "462f2ff0b2a14e13976dc8c2469b3546" } +SetTriple: 5d28284399194cbd895f674f93f96d65, From entity, Value { r#type: Entity, value: "d07219a82d854bc286f1f8c823ebaf98" } +SetTriple: 5d28284399194cbd895f674f93f96d65, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 5d28284399194cbd895f674f93f96d65, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5d28284399194cbd895f674f93f96d65, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5d28284399194cbd895f674f93f96d65, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: Activity, Name, Value { r#type: Text, value: "Action" } +SetTriple: d07219a82d854bc286f1f8c823ebaf98, Description, Value { r#type: Text, value: "A description of a desired capability from the perspective a user" } +SetTriple: d07219a82d854bc286f1f8c823ebaf98, Name, Value { r#type: Text, value: "User story" } +SetTriple: Flow, Description, Value { r#type: Text, value: "A set of actions to accomplish a goal" } +SetTriple: 3e9cced362a44d3bba97aa8602898edc, From entity, Value { r#type: Entity, value: "5ead50824dbb4d8299d1ba25084f0f97" } +SetTriple: 462f2ff0b2a14e13976dc8c2469b3546, Description, Value { r#type: Text, value: "A stage or status that something is in" } +SetTriple: 462f2ff0b2a14e13976dc8c2469b3546, Name, Value { r#type: Text, value: "Stage" } +SetTriple: e21a9bb9e521435da4904c80d2ebcb27, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: e21a9bb9e521435da4904c80d2ebcb27, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e21a9bb9e521435da4904c80d2ebcb27, Index, Value { r#type: Text, value: "a0" } +SetTriple: e21a9bb9e521435da4904c80d2ebcb27, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: bae6019965f24fb8bfeeb716d4d37dbe, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 6267a28d8b974ca385cc2704dad5669c, From entity, Value { r#type: Entity, value: "af88a0f896244f4591fad4ef800a6426" } +SetTriple: bae6019965f24fb8bfeeb716d4d37dbe, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: bae6019965f24fb8bfeeb716d4d37dbe, Index, Value { r#type: Text, value: "a0" } +SetTriple: bae6019965f24fb8bfeeb716d4d37dbe, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bae6019965f24fb8bfeeb716d4d37dbe, From entity, Value { r#type: Entity, value: "af88a0f896244f4591fad4ef800a6426" } +SetTriple: c4524b816b88496f8f55bde942f27bf5, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: c4524b816b88496f8f55bde942f27bf5, Index, Value { r#type: Text, value: "a0" } +SetTriple: c4524b816b88496f8f55bde942f27bf5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c4524b816b88496f8f55bde942f27bf5, To entity, Value { r#type: Entity, value: "af88a0f896244f4591fad4ef800a6426" } +SetTriple: c4524b816b88496f8f55bde942f27bf5, From entity, Value { r#type: Entity, value: "fcf7819a3894481a801df0600725cddb" } +SetTriple: 6267a28d8b974ca385cc2704dad5669c, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 6267a28d8b974ca385cc2704dad5669c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6267a28d8b974ca385cc2704dad5669c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6267a28d8b974ca385cc2704dad5669c, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: af88a0f896244f4591fad4ef800a6426, Description, Value { r#type: Text, value: "A reference to one or more Roles" } +SetTriple: af88a0f896244f4591fad4ef800a6426, Name, Value { r#type: Text, value: "Roles" } +SetTriple: a72b5206b2cf480788a7d291653aa6f5, To entity, Value { r#type: Entity, value: "9c1922f1d7a247d1841d234cb2f56991" } +SetTriple: a72b5206b2cf480788a7d291653aa6f5, From entity, Value { r#type: Entity, value: "af88a0f896244f4591fad4ef800a6426" } +SetTriple: a72b5206b2cf480788a7d291653aa6f5, Index, Value { r#type: Text, value: "a0" } +SetTriple: a72b5206b2cf480788a7d291653aa6f5, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: a72b5206b2cf480788a7d291653aa6f5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ee78ac6fe1fb4439ba187d7b06341ef9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d48a2c65aa7d48cfa401bcb917a95a3c, From entity, Value { r#type: Entity, value: "c29f370627f3457fb3d8de8d0c73b4e9" } +SetTriple: d48a2c65aa7d48cfa401bcb917a95a3c, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: d48a2c65aa7d48cfa401bcb917a95a3c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d48a2c65aa7d48cfa401bcb917a95a3c, Index, Value { r#type: Text, value: "a0" } +SetTriple: d48a2c65aa7d48cfa401bcb917a95a3c, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: a203641291b341558ac71b3f107bef94, From entity, Value { r#type: Entity, value: "c29f370627f3457fb3d8de8d0c73b4e9" } +SetTriple: a203641291b341558ac71b3f107bef94, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: a203641291b341558ac71b3f107bef94, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a203641291b341558ac71b3f107bef94, Index, Value { r#type: Text, value: "a0" } +SetTriple: a203641291b341558ac71b3f107bef94, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: b3be9173c99d4214b9bbf1bbae551f20, From entity, Value { r#type: Entity, value: "ba43fd1aef2d449f97c46bf8e8ac9d58" } +SetTriple: b3be9173c99d4214b9bbf1bbae551f20, To entity, Value { r#type: Entity, value: "c29f370627f3457fb3d8de8d0c73b4e9" } +SetTriple: b3be9173c99d4214b9bbf1bbae551f20, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b3be9173c99d4214b9bbf1bbae551f20, Index, Value { r#type: Text, value: "a0" } +SetTriple: b3be9173c99d4214b9bbf1bbae551f20, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 1622797feb534cdb816417a158e10dc3, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: dcc36c1c1d42419a90bc3a455d5a2399, Name, Value { r#type: Text, value: "Status" } +SetTriple: 1622797feb534cdb816417a158e10dc3, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8dd452981a8241ae823776565cb134e6, Name, Value { r#type: Text, value: "Status" } +SetTriple: 15d11d2b2ac84cfcb253c5d53392d46a, Name, Value { r#type: Text, value: "Not started" } +SetTriple: 7756aa974e55413ca09c2f83d22378bb, Name, Value { r#type: Text, value: "In progress" } +SetTriple: 54d9d9386bcb4ad39658a269175e880d, Name, Value { r#type: Text, value: "Done" } +SetTriple: c29f370627f3457fb3d8de8d0c73b4e9, Name, Value { r#type: Text, value: "Claimed by" } +SetTriple: 1622797feb534cdb816417a158e10dc3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1622797feb534cdb816417a158e10dc3, To entity, Value { r#type: Entity, value: "8dd452981a8241ae823776565cb134e6" } +SetTriple: 1622797feb534cdb816417a158e10dc3, From entity, Value { r#type: Entity, value: "54d9d9386bcb4ad39658a269175e880d" } +SetTriple: 4dd61b563941460fbf004a84ec0adc09, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 4dd61b563941460fbf004a84ec0adc09, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4dd61b563941460fbf004a84ec0adc09, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4dd61b563941460fbf004a84ec0adc09, To entity, Value { r#type: Entity, value: "8dd452981a8241ae823776565cb134e6" } +SetTriple: 4dd61b563941460fbf004a84ec0adc09, From entity, Value { r#type: Entity, value: "7756aa974e55413ca09c2f83d22378bb" } +SetTriple: 002595b99839431ebe65f14a1a316e06, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 002595b99839431ebe65f14a1a316e06, Index, Value { r#type: Text, value: "a0" } +SetTriple: 002595b99839431ebe65f14a1a316e06, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 002595b99839431ebe65f14a1a316e06, To entity, Value { r#type: Entity, value: "8dd452981a8241ae823776565cb134e6" } +SetTriple: 002595b99839431ebe65f14a1a316e06, From entity, Value { r#type: Entity, value: "15d11d2b2ac84cfcb253c5d53392d46a" } +SetTriple: ee78ac6fe1fb4439ba187d7b06341ef9, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: ee78ac6fe1fb4439ba187d7b06341ef9, Index, Value { r#type: Text, value: "a0" } +SetTriple: ee78ac6fe1fb4439ba187d7b06341ef9, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: ee78ac6fe1fb4439ba187d7b06341ef9, From entity, Value { r#type: Entity, value: "8dd452981a8241ae823776565cb134e6" } +SetTriple: 34cccee2b42140eea92c382cd401456f, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 34cccee2b42140eea92c382cd401456f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 34cccee2b42140eea92c382cd401456f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 34cccee2b42140eea92c382cd401456f, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 34cccee2b42140eea92c382cd401456f, From entity, Value { r#type: Entity, value: "dcc36c1c1d42419a90bc3a455d5a2399" } +SetTriple: 44f65ee245d14ca58f67a77a1b3b8729, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 44f65ee245d14ca58f67a77a1b3b8729, Index, Value { r#type: Text, value: "a0" } +SetTriple: 44f65ee245d14ca58f67a77a1b3b8729, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 44f65ee245d14ca58f67a77a1b3b8729, To entity, Value { r#type: Entity, value: "dcc36c1c1d42419a90bc3a455d5a2399" } +SetTriple: 44f65ee245d14ca58f67a77a1b3b8729, From entity, Value { r#type: Entity, value: "ba43fd1aef2d449f97c46bf8e8ac9d58" } +SetTriple: 37f13062020f4db6a83f8c946c989d20, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 37f13062020f4db6a83f8c946c989d20, Index, Value { r#type: Text, value: "a0" } +SetTriple: 37f13062020f4db6a83f8c946c989d20, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 37f13062020f4db6a83f8c946c989d20, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 37f13062020f4db6a83f8c946c989d20, From entity, Value { r#type: Entity, value: "dcc36c1c1d42419a90bc3a455d5a2399" } +SetTriple: d464beef14364b6a9c6e2e18304be132, Index, Value { r#type: Text, value: "a0" } +SetTriple: d464beef14364b6a9c6e2e18304be132, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: Person, Name, Value { r#type: Text, value: "Person" } +SetTriple: 1c9534d2cf974bc389df39259233f496, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1c9534d2cf974bc389df39259233f496, To entity, Value { r#type: Entity, value: "8dd452981a8241ae823776565cb134e6" } +SetTriple: 1c9534d2cf974bc389df39259233f496, From entity, Value { r#type: Entity, value: "dcc36c1c1d42419a90bc3a455d5a2399" } +SetTriple: 7aec99a3a4fd46e594ba4972bd14de64, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 7aec99a3a4fd46e594ba4972bd14de64, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1c9534d2cf974bc389df39259233f496, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 1c9534d2cf974bc389df39259233f496, Index, Value { r#type: Text, value: "a0" } +SetTriple: b7b8447040a244efa7040601fa5914b4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b7b8447040a244efa7040601fa5914b4, Index, Value { r#type: Text, value: "a0" } +SetTriple: b7b8447040a244efa7040601fa5914b4, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: d464beef14364b6a9c6e2e18304be132, From entity, Value { r#type: Entity, value: "912c4d9504fc4d3cbc84382b3a1904d1" } +SetTriple: b7b8447040a244efa7040601fa5914b4, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: b7b8447040a244efa7040601fa5914b4, From entity, Value { r#type: Entity, value: "912c4d9504fc4d3cbc84382b3a1904d1" } +SetTriple: d464beef14364b6a9c6e2e18304be132, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: 7aec99a3a4fd46e594ba4972bd14de64, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7aec99a3a4fd46e594ba4972bd14de64, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: 7aec99a3a4fd46e594ba4972bd14de64, From entity, Value { r#type: Entity, value: "912c4d9504fc4d3cbc84382b3a1904d1" } +SetTriple: d464beef14364b6a9c6e2e18304be132, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: a36b2d7e171c488ea6296a57084aaa2e, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: a36b2d7e171c488ea6296a57084aaa2e, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: a36b2d7e171c488ea6296a57084aaa2e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 62aa0dac2ac04142bf6dab57d55f9e0d, From entity, Value { r#type: Entity, value: "fcf7819a3894481a801df0600725cddb" } +SetTriple: 62aa0dac2ac04142bf6dab57d55f9e0d, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: 62aa0dac2ac04142bf6dab57d55f9e0d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 62aa0dac2ac04142bf6dab57d55f9e0d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 62aa0dac2ac04142bf6dab57d55f9e0d, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: a36b2d7e171c488ea6296a57084aaa2e, From entity, Value { r#type: Entity, value: "9c1922f1d7a247d1841d234cb2f56991" } +SetTriple: a36b2d7e171c488ea6296a57084aaa2e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1cce6ec1e99f41608ef3500cbb9b4132, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1cce6ec1e99f41608ef3500cbb9b4132, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 1cce6ec1e99f41608ef3500cbb9b4132, From entity, Value { r#type: Entity, value: "fb4aa45d921b42dcad68de710d64ead5" } +SetTriple: fb4aa45d921b42dcad68de710d64ead5, Indexed Space Address, Value { r#type: Text, value: "0x41155BC2156119e71d283237D299FC1a648602C2" } +SetTriple: 1cce6ec1e99f41608ef3500cbb9b4132, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: fb4aa45d921b42dcad68de710d64ead5, Name, Value { r#type: Text, value: "US Politics" } +SetTriple: 1cce6ec1e99f41608ef3500cbb9b4132, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7d890ff325d54dcd9e5674570ae2a296, Name, Value { r#type: Text, value: "Web3 economics" } +SetTriple: be2fb90170d348d0bbee40d66a6def01, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: Web3 economics, Indexed Space Address, Value { r#type: Text, value: "0x2C423d74eEC59867b16693Ec2870292b302729ec" } +SetTriple: be2fb90170d348d0bbee40d66a6def01, From entity, Value { r#type: Entity, value: "7d890ff325d54dcd9e5674570ae2a296" } +SetTriple: be2fb90170d348d0bbee40d66a6def01, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: be2fb90170d348d0bbee40d66a6def01, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: be2fb90170d348d0bbee40d66a6def01, Index, Value { r#type: Text, value: "a0" } +SetTriple: US Politics, Image, Value { r#type: Text, value: "ipfs://QmaZGX2aBuuAQ8zaDsCEKqXFySA98oAcRgQ62Ub9Km5m7W" } +SetTriple: cd411fd255014f3880b899862e681fc2, Name, Value { r#type: Text, value: "Certification" } +SetTriple: e1841e6e2c894101a16fced0582360a3, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: e1841e6e2c894101a16fced0582360a3, Index, Value { r#type: Text, value: "a0" } +SetTriple: e1841e6e2c894101a16fced0582360a3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ab72423d715a4160a0cbcd2c58f7dba3, To entity, Value { r#type: Entity, value: "e8010874d3304a4d990762e89a19371a" } +SetTriple: e1841e6e2c894101a16fced0582360a3, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: e1841e6e2c894101a16fced0582360a3, From entity, Value { r#type: Entity, value: "cd411fd255014f3880b899862e681fc2" } +SetTriple: ab72423d715a4160a0cbcd2c58f7dba3, From entity, Value { r#type: Entity, value: "cd411fd255014f3880b899862e681fc2" } +SetTriple: ab72423d715a4160a0cbcd2c58f7dba3, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: ab72423d715a4160a0cbcd2c58f7dba3, Index, Value { r#type: Text, value: "a0" } +SetTriple: ab72423d715a4160a0cbcd2c58f7dba3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: Certification, Description, Value { r#type: Text, value: "An attestation made by an issuer that a person or organization has met some criteria that helps establish quality controls" } +SetTriple: f993d8002fda4a4d81cfe3202c4a8710, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9f43acb92ff44f4b98eb7b57f15067ac, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 9f43acb92ff44f4b98eb7b57f15067ac, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9f43acb92ff44f4b98eb7b57f15067ac, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9f43acb92ff44f4b98eb7b57f15067ac, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 8b50f5cfced2485583d4a15445413e12, From entity, Value { r#type: Entity, value: "b67663f43a7d426180616df2c4eb77ce" } +SetTriple: 8b50f5cfced2485583d4a15445413e12, To entity, Value { r#type: Entity, value: "c889672097ac4b2896f4367677efd463" } +SetTriple: 8b50f5cfced2485583d4a15445413e12, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8b50f5cfced2485583d4a15445413e12, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8b50f5cfced2485583d4a15445413e12, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 2e1aee66d8574626b10081a0a94bd169, From entity, Value { r#type: Entity, value: "b67663f43a7d426180616df2c4eb77ce" } +SetTriple: 2e1aee66d8574626b10081a0a94bd169, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 2e1aee66d8574626b10081a0a94bd169, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2e1aee66d8574626b10081a0a94bd169, Index, Value { r#type: Text, value: "a0" } +SetTriple: b67663f43a7d426180616df2c4eb77ce, Name, Value { r#type: Text, value: "Book" } +SetTriple: 2e1aee66d8574626b10081a0a94bd169, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: b0a2edced01d4339bc38e60a02ee70c4, From entity, Value { r#type: Entity, value: "b67663f43a7d426180616df2c4eb77ce" } +SetTriple: b0a2edced01d4339bc38e60a02ee70c4, To entity, Value { r#type: Entity, value: "873e0723752f4cd1bccab304cb8c4383" } +SetTriple: b0a2edced01d4339bc38e60a02ee70c4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c889672097ac4b2896f4367677efd463, Name, Value { r#type: Text, value: "Genre" } +SetTriple: b0a2edced01d4339bc38e60a02ee70c4, Index, Value { r#type: Text, value: "a0" } +SetTriple: b0a2edced01d4339bc38e60a02ee70c4, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: fbfb8d59023c42a190c1a39d295916fc, From entity, Value { r#type: Entity, value: "b67663f43a7d426180616df2c4eb77ce" } +SetTriple: fbfb8d59023c42a190c1a39d295916fc, To entity, Value { r#type: Entity, value: "7fa816a3cb704534934888449869dc33" } +SetTriple: fbfb8d59023c42a190c1a39d295916fc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: fbfb8d59023c42a190c1a39d295916fc, Index, Value { r#type: Text, value: "a0" } +SetTriple: fbfb8d59023c42a190c1a39d295916fc, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: ce24cbac8b794d6997f546619e514148, From entity, Value { r#type: Entity, value: "b67663f43a7d426180616df2c4eb77ce" } +SetTriple: ce24cbac8b794d6997f546619e514148, To entity, Value { r#type: Entity, value: "916425ef66ea4913955099b75b4cb7c0" } +SetTriple: ce24cbac8b794d6997f546619e514148, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ce24cbac8b794d6997f546619e514148, Index, Value { r#type: Text, value: "a0" } +SetTriple: ce24cbac8b794d6997f546619e514148, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: f993d8002fda4a4d81cfe3202c4a8710, From entity, Value { r#type: Entity, value: "b67663f43a7d426180616df2c4eb77ce" } +SetTriple: f993d8002fda4a4d81cfe3202c4a8710, To entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: f993d8002fda4a4d81cfe3202c4a8710, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9f43acb92ff44f4b98eb7b57f15067ac, From entity, Value { r#type: Entity, value: "c889672097ac4b2896f4367677efd463" } +SetTriple: f993d8002fda4a4d81cfe3202c4a8710, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 54624aea3e7b421d829b0880a287c8a1, From entity, Value { r#type: Entity, value: "b67663f43a7d426180616df2c4eb77ce" } +SetTriple: 54624aea3e7b421d829b0880a287c8a1, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 54624aea3e7b421d829b0880a287c8a1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 54624aea3e7b421d829b0880a287c8a1, Index, Value { r#type: Text, value: "a0" } +SetTriple: 54624aea3e7b421d829b0880a287c8a1, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 9fe54d114a9a4af197def48f495ee7c5, From entity, Value { r#type: Entity, value: "b67663f43a7d426180616df2c4eb77ce" } +SetTriple: 9fe54d114a9a4af197def48f495ee7c5, To entity, Value { r#type: Entity, value: "26ccb6918cfc4b948ccc168564e2bfdf" } +SetTriple: 9fe54d114a9a4af197def48f495ee7c5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9fe54d114a9a4af197def48f495ee7c5, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9fe54d114a9a4af197def48f495ee7c5, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 84d5f875a9ec4d6bab8ad2cbda8d0ecf, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 84d5f875a9ec4d6bab8ad2cbda8d0ecf, Index, Value { r#type: Text, value: "a0" } +SetTriple: 84d5f875a9ec4d6bab8ad2cbda8d0ecf, From entity, Value { r#type: Entity, value: "26ccb6918cfc4b948ccc168564e2bfdf" } +SetTriple: 84d5f875a9ec4d6bab8ad2cbda8d0ecf, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 84d5f875a9ec4d6bab8ad2cbda8d0ecf, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: d6f77e1086424d8683bf73340e4b353a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d6f77e1086424d8683bf73340e4b353a, To entity, Value { r#type: Entity, value: "167664f668f840e1976b20bd16ed8d47" } +SetTriple: d6f77e1086424d8683bf73340e4b353a, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: d6f77e1086424d8683bf73340e4b353a, From entity, Value { r#type: Entity, value: "26ccb6918cfc4b948ccc168564e2bfdf" } +SetTriple: d6f77e1086424d8683bf73340e4b353a, Index, Value { r#type: Text, value: "a0" } +SetTriple: a88c33eee48b4b129bc65bfde8642285, Index, Value { r#type: Text, value: "a0" } +SetTriple: a88c33eee48b4b129bc65bfde8642285, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a88c33eee48b4b129bc65bfde8642285, To entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: a88c33eee48b4b129bc65bfde8642285, From entity, Value { r#type: Entity, value: "682fbeff41e242cda7f9c4909136a8c5" } +SetTriple: e1dc66cba87441c488e5a529b2829b5f, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: e1dc66cba87441c488e5a529b2829b5f, Index, Value { r#type: Text, value: "a0" } +SetTriple: e1dc66cba87441c488e5a529b2829b5f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e1dc66cba87441c488e5a529b2829b5f, To entity, Value { r#type: Entity, value: "873e0723752f4cd1bccab304cb8c4383" } +SetTriple: e1dc66cba87441c488e5a529b2829b5f, From entity, Value { r#type: Entity, value: "682fbeff41e242cda7f9c4909136a8c5" } +SetTriple: 789441037c0c498690ac09b249ca4eab, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 682fbeff41e242cda7f9c4909136a8c5, Name, Value { r#type: Text, value: "Post" } +SetTriple: 24cf9cd4ee994f9aa96bbb3ccc9d8785, To entity, Value { r#type: Entity, value: "7fa816a3cb704534934888449869dc33" } +SetTriple: 24cf9cd4ee994f9aa96bbb3ccc9d8785, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4bf3b51bd5d04f01a2f94030666e0a79, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 4bf3b51bd5d04f01a2f94030666e0a79, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4bf3b51bd5d04f01a2f94030666e0a79, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4bf3b51bd5d04f01a2f94030666e0a79, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 4bf3b51bd5d04f01a2f94030666e0a79, From entity, Value { r#type: Entity, value: "682fbeff41e242cda7f9c4909136a8c5" } +SetTriple: 24cf9cd4ee994f9aa96bbb3ccc9d8785, Index, Value { r#type: Text, value: "a0" } +SetTriple: 24cf9cd4ee994f9aa96bbb3ccc9d8785, From entity, Value { r#type: Entity, value: "682fbeff41e242cda7f9c4909136a8c5" } +SetTriple: 24cf9cd4ee994f9aa96bbb3ccc9d8785, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 789441037c0c498690ac09b249ca4eab, Index, Value { r#type: Text, value: "a0" } +SetTriple: 789441037c0c498690ac09b249ca4eab, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 789441037c0c498690ac09b249ca4eab, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 789441037c0c498690ac09b249ca4eab, From entity, Value { r#type: Entity, value: "682fbeff41e242cda7f9c4909136a8c5" } +SetTriple: a88c33eee48b4b129bc65bfde8642285, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 856e3928d08b4a0bbd605e3d2becf8b6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 856e3928d08b4a0bbd605e3d2becf8b6, Index, Value { r#type: Text, value: "a0" } +SetTriple: 856e3928d08b4a0bbd605e3d2becf8b6, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 18e5aaff8c2940af9aad61c062b57b4d, From entity, Value { r#type: Entity, value: "2edf4225793741bab2056ac91ab4aab4" } +SetTriple: 18e5aaff8c2940af9aad61c062b57b4d, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: 18e5aaff8c2940af9aad61c062b57b4d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 18e5aaff8c2940af9aad61c062b57b4d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 18e5aaff8c2940af9aad61c062b57b4d, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: d48e09a44c364c9d894248fa863b6770, From entity, Value { r#type: Entity, value: "49a283a095974640985e9c7a0d001e5c" } +SetTriple: d48e09a44c364c9d894248fa863b6770, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: d48e09a44c364c9d894248fa863b6770, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d48e09a44c364c9d894248fa863b6770, Index, Value { r#type: Text, value: "a0" } +SetTriple: d48e09a44c364c9d894248fa863b6770, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 91b57d2b185945cbb29b9593396e2343, From entity, Value { r#type: Entity, value: "49a283a095974640985e9c7a0d001e5c" } +SetTriple: 91b57d2b185945cbb29b9593396e2343, To entity, Value { r#type: Entity, value: "2edf4225793741bab2056ac91ab4aab4" } +SetTriple: 91b57d2b185945cbb29b9593396e2343, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 91b57d2b185945cbb29b9593396e2343, Index, Value { r#type: Text, value: "a0" } +SetTriple: 91b57d2b185945cbb29b9593396e2343, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 850dd29ba876457b98d24d14bb2ee7ed, From entity, Value { r#type: Entity, value: "44e726f36e5d4f5d9227e5d819724461" } +SetTriple: 850dd29ba876457b98d24d14bb2ee7ed, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 850dd29ba876457b98d24d14bb2ee7ed, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 850dd29ba876457b98d24d14bb2ee7ed, Index, Value { r#type: Text, value: "a0" } +SetTriple: 850dd29ba876457b98d24d14bb2ee7ed, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: aa3e1aa0b9364a2184a0589d455350ce, From entity, Value { r#type: Entity, value: "44e726f36e5d4f5d9227e5d819724461" } +SetTriple: aa3e1aa0b9364a2184a0589d455350ce, To entity, Value { r#type: Entity, value: "2edf4225793741bab2056ac91ab4aab4" } +SetTriple: aa3e1aa0b9364a2184a0589d455350ce, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: aa3e1aa0b9364a2184a0589d455350ce, Index, Value { r#type: Text, value: "a0" } +SetTriple: aa3e1aa0b9364a2184a0589d455350ce, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: ee0094ba7919436c82c6602fd29396b9, Index, Value { r#type: Text, value: "a0" } +SetTriple: ee0094ba7919436c82c6602fd29396b9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ee0094ba7919436c82c6602fd29396b9, To entity, Value { r#type: Entity, value: "2edf4225793741bab2056ac91ab4aab4" } +SetTriple: ee0094ba7919436c82c6602fd29396b9, From entity, Value { r#type: Entity, value: "c7747db35a3049e3863fdadebddd3e35" } +SetTriple: 5ac4ecef25e945b2b4ff84d1491b9694, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 5ac4ecef25e945b2b4ff84d1491b9694, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5ac4ecef25e945b2b4ff84d1491b9694, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 037e0dbebb6144a682961f181efac386, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: 037e0dbebb6144a682961f181efac386, From entity, Value { r#type: Entity, value: "c65eae3138054bda995b408e2aa48049" } +SetTriple: b3700ef27f5d49cbb6d446c07e0a439f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: b3700ef27f5d49cbb6d446c07e0a439f, Index, Value { r#type: Text, value: "a0" } +SetTriple: b3700ef27f5d49cbb6d446c07e0a439f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b3700ef27f5d49cbb6d446c07e0a439f, To entity, Value { r#type: Entity, value: "2edf4225793741bab2056ac91ab4aab4" } +SetTriple: b3700ef27f5d49cbb6d446c07e0a439f, From entity, Value { r#type: Entity, value: "c65eae3138054bda995b408e2aa48049" } +SetTriple: f8eb0a5529bf417fb573e12dc2c1d37e, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: f8eb0a5529bf417fb573e12dc2c1d37e, Index, Value { r#type: Text, value: "a0" } +SetTriple: f8eb0a5529bf417fb573e12dc2c1d37e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f8eb0a5529bf417fb573e12dc2c1d37e, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: f8eb0a5529bf417fb573e12dc2c1d37e, From entity, Value { r#type: Entity, value: "c65eae3138054bda995b408e2aa48049" } +SetTriple: 00e1bc3a9cb747ff8f97d28f98674223, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 00e1bc3a9cb747ff8f97d28f98674223, Index, Value { r#type: Text, value: "a0" } +SetTriple: a89fcd1081b343e48f770d9561a68acd, Name, Value { r#type: Text, value: "Email" } +SetTriple: 5e4911b82093411ea445bc2124d7f8e3, Name, Value { r#type: Text, value: "Region" } +SetTriple: 00e1bc3a9cb747ff8f97d28f98674223, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 00e1bc3a9cb747ff8f97d28f98674223, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: 00e1bc3a9cb747ff8f97d28f98674223, From entity, Value { r#type: Entity, value: "44e726f36e5d4f5d9227e5d819724461" } +SetTriple: 152506d5f2624086a21a1da79e55959d, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 152506d5f2624086a21a1da79e55959d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 152506d5f2624086a21a1da79e55959d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 152506d5f2624086a21a1da79e55959d, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: 152506d5f2624086a21a1da79e55959d, From entity, Value { r#type: Entity, value: "44e726f36e5d4f5d9227e5d819724461" } +SetTriple: 43b8c8a544d74577a6804428dfc3e78b, Name, Value { r#type: Text, value: "Career and personal development" } +SetTriple: 14ec80f2887448a4ad7d83a58576c8eb, Name, Value { r#type: Text, value: "Hygiene" } +SetTriple: 359846abd634441ab588756cb8439aa2, Name, Value { r#type: Text, value: "Mental health" } +SetTriple: 7b6644f662c34e78ba17cec9478dc6ff, Name, Value { r#type: Text, value: "Permanent supportive housing" } +SetTriple: c7747db35a3049e3863fdadebddd3e35, Name, Value { r#type: Text, value: "Transitional housing" } +SetTriple: d7d384ad608e4402a74d9a0b2b2c78ae, Name, Value { r#type: Text, value: "Temporary shelter" } +SetTriple: c65eae3138054bda995b408e2aa48049, Name, Value { r#type: Text, value: "Advocate group" } +SetTriple: 44e726f36e5d4f5d9227e5d819724461, Name, Value { r#type: Text, value: "Youth service" } +SetTriple: 49a283a095974640985e9c7a0d001e5c, Name, Value { r#type: Text, value: "Feeding program" } +SetTriple: 2edf4225793741bab2056ac91ab4aab4, Name, Value { r#type: Text, value: "Nonprofit category" } +SetTriple: fca2a465642640bb8e7ecf33742b5346, Name, Value { r#type: Text, value: "Nonprofit categories" } +SetTriple: dcb87494cb91447b9a04625bd1acc804, Name, Value { r#type: Text, value: "Nonprofit ID #" } +SetTriple: 5ac4ecef25e945b2b4ff84d1491b9694, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 5ac4ecef25e945b2b4ff84d1491b9694, From entity, Value { r#type: Entity, value: "c7747db35a3049e3863fdadebddd3e35" } +SetTriple: fdf47b946407439c9fe52e50a884105e, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 8e679daae2294699b1aab7969b66abf9, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7212b0aae47047b686ee3ae355504b9a, From entity, Value { r#type: Entity, value: "359846abd634441ab588756cb8439aa2" } +SetTriple: 7212b0aae47047b686ee3ae355504b9a, To entity, Value { r#type: Entity, value: "2edf4225793741bab2056ac91ab4aab4" } +SetTriple: 7212b0aae47047b686ee3ae355504b9a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7212b0aae47047b686ee3ae355504b9a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7212b0aae47047b686ee3ae355504b9a, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 0356b99163114fffa6e4b697dfcb17cc, From entity, Value { r#type: Entity, value: "359846abd634441ab588756cb8439aa2" } +SetTriple: 0356b99163114fffa6e4b697dfcb17cc, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: 0356b99163114fffa6e4b697dfcb17cc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0356b99163114fffa6e4b697dfcb17cc, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0356b99163114fffa6e4b697dfcb17cc, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 8488a701c88e40519cc72c1506d8a80d, From entity, Value { r#type: Entity, value: "359846abd634441ab588756cb8439aa2" } +SetTriple: 8488a701c88e40519cc72c1506d8a80d, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: 8488a701c88e40519cc72c1506d8a80d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8488a701c88e40519cc72c1506d8a80d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8488a701c88e40519cc72c1506d8a80d, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 8a26cf1e30d04ec0b6613aa98556923f, From entity, Value { r#type: Entity, value: "14ec80f2887448a4ad7d83a58576c8eb" } +SetTriple: 8a26cf1e30d04ec0b6613aa98556923f, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 8a26cf1e30d04ec0b6613aa98556923f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8a26cf1e30d04ec0b6613aa98556923f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8a26cf1e30d04ec0b6613aa98556923f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 80b0aebeb6704a529613dca6f95e7232, From entity, Value { r#type: Entity, value: "14ec80f2887448a4ad7d83a58576c8eb" } +SetTriple: 80b0aebeb6704a529613dca6f95e7232, To entity, Value { r#type: Entity, value: "2edf4225793741bab2056ac91ab4aab4" } +SetTriple: 80b0aebeb6704a529613dca6f95e7232, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 80b0aebeb6704a529613dca6f95e7232, Index, Value { r#type: Text, value: "a0" } +SetTriple: 80b0aebeb6704a529613dca6f95e7232, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 24fc2992d4ee49f29ffb872e500116c1, From entity, Value { r#type: Entity, value: "14ec80f2887448a4ad7d83a58576c8eb" } +SetTriple: 24fc2992d4ee49f29ffb872e500116c1, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: 24fc2992d4ee49f29ffb872e500116c1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 24fc2992d4ee49f29ffb872e500116c1, Index, Value { r#type: Text, value: "a0" } +SetTriple: 24fc2992d4ee49f29ffb872e500116c1, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 92c4b023f5854441a8de069d898e72ad, From entity, Value { r#type: Entity, value: "14ec80f2887448a4ad7d83a58576c8eb" } +SetTriple: 92c4b023f5854441a8de069d898e72ad, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: 92c4b023f5854441a8de069d898e72ad, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 92c4b023f5854441a8de069d898e72ad, Index, Value { r#type: Text, value: "a0" } +SetTriple: 92c4b023f5854441a8de069d898e72ad, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: c82332d3ef91441db67cb5b3f7a3d93d, From entity, Value { r#type: Entity, value: "43b8c8a544d74577a6804428dfc3e78b" } +SetTriple: c82332d3ef91441db67cb5b3f7a3d93d, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: c82332d3ef91441db67cb5b3f7a3d93d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c82332d3ef91441db67cb5b3f7a3d93d, Index, Value { r#type: Text, value: "a0" } +SetTriple: c82332d3ef91441db67cb5b3f7a3d93d, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: ab3ec86c165b48b09ca29e026ef128e8, From entity, Value { r#type: Entity, value: "43b8c8a544d74577a6804428dfc3e78b" } +SetTriple: ab3ec86c165b48b09ca29e026ef128e8, To entity, Value { r#type: Entity, value: "2edf4225793741bab2056ac91ab4aab4" } +SetTriple: ab3ec86c165b48b09ca29e026ef128e8, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ab3ec86c165b48b09ca29e026ef128e8, Index, Value { r#type: Text, value: "a0" } +SetTriple: ab3ec86c165b48b09ca29e026ef128e8, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 9743510d6deb475cbb701925a918528e, From entity, Value { r#type: Entity, value: "43b8c8a544d74577a6804428dfc3e78b" } +SetTriple: 9743510d6deb475cbb701925a918528e, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: 9743510d6deb475cbb701925a918528e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9743510d6deb475cbb701925a918528e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9743510d6deb475cbb701925a918528e, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: b08548b048724dd5a39274be98fef53c, From entity, Value { r#type: Entity, value: "43b8c8a544d74577a6804428dfc3e78b" } +SetTriple: b08548b048724dd5a39274be98fef53c, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: b08548b048724dd5a39274be98fef53c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b08548b048724dd5a39274be98fef53c, Index, Value { r#type: Text, value: "a0" } +SetTriple: b08548b048724dd5a39274be98fef53c, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: f2136f80cf0b40d8bba70803f484ec6b, From entity, Value { r#type: Entity, value: "b3b03c909b6d487cb2e2a7d685f120eb" } +SetTriple: f2136f80cf0b40d8bba70803f484ec6b, To entity, Value { r#type: Entity, value: "f9804f7c0e2e4658a8489aa65bbe411b" } +SetTriple: f2136f80cf0b40d8bba70803f484ec6b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f2136f80cf0b40d8bba70803f484ec6b, Index, Value { r#type: Text, value: "a0" } +SetTriple: f2136f80cf0b40d8bba70803f484ec6b, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 65be58bd914d4f6b977023e42dc6d098, From entity, Value { r#type: Entity, value: "b3b03c909b6d487cb2e2a7d685f120eb" } +SetTriple: 65be58bd914d4f6b977023e42dc6d098, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: 65be58bd914d4f6b977023e42dc6d098, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 65be58bd914d4f6b977023e42dc6d098, Index, Value { r#type: Text, value: "a0" } +SetTriple: 65be58bd914d4f6b977023e42dc6d098, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 368ac5940d1d47f4ab4481b5f0bffcb1, From entity, Value { r#type: Entity, value: "b3b03c909b6d487cb2e2a7d685f120eb" } +SetTriple: 368ac5940d1d47f4ab4481b5f0bffcb1, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: 368ac5940d1d47f4ab4481b5f0bffcb1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 368ac5940d1d47f4ab4481b5f0bffcb1, Index, Value { r#type: Text, value: "a0" } +SetTriple: 368ac5940d1d47f4ab4481b5f0bffcb1, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: c42002db1a6d4bcfb7a7a4af8e95074f, From entity, Value { r#type: Entity, value: "a89fcd1081b343e48f770d9561a68acd" } +SetTriple: c42002db1a6d4bcfb7a7a4af8e95074f, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: c42002db1a6d4bcfb7a7a4af8e95074f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c42002db1a6d4bcfb7a7a4af8e95074f, Index, Value { r#type: Text, value: "a0" } +SetTriple: c42002db1a6d4bcfb7a7a4af8e95074f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 277006e606d44302adf70f867b627cae, From entity, Value { r#type: Entity, value: "b3b03c909b6d487cb2e2a7d685f120eb" } +SetTriple: 277006e606d44302adf70f867b627cae, To entity, Value { r#type: Entity, value: "a89fcd1081b343e48f770d9561a68acd" } +SetTriple: 277006e606d44302adf70f867b627cae, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 277006e606d44302adf70f867b627cae, Index, Value { r#type: Text, value: "a0" } +SetTriple: 277006e606d44302adf70f867b627cae, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: daeb71de2039447f9e7c0c614ca5c0e1, From entity, Value { r#type: Entity, value: "b3b03c909b6d487cb2e2a7d685f120eb" } +SetTriple: daeb71de2039447f9e7c0c614ca5c0e1, To entity, Value { r#type: Entity, value: "cb36140946954676b62fc2290613a430" } +SetTriple: daeb71de2039447f9e7c0c614ca5c0e1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: daeb71de2039447f9e7c0c614ca5c0e1, Index, Value { r#type: Text, value: "a0" } +SetTriple: daeb71de2039447f9e7c0c614ca5c0e1, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: b3aad6b66eb84caba33582c05af69ecd, From entity, Value { r#type: Entity, value: "b3b03c909b6d487cb2e2a7d685f120eb" } +SetTriple: b3aad6b66eb84caba33582c05af69ecd, To entity, Value { r#type: Entity, value: "e8010874d3304a4d990762e89a19371a" } +SetTriple: b3aad6b66eb84caba33582c05af69ecd, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b3aad6b66eb84caba33582c05af69ecd, Index, Value { r#type: Text, value: "a0" } +SetTriple: b3aad6b66eb84caba33582c05af69ecd, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: cef3afd1db0b412eba273cec60a3b75d, From entity, Value { r#type: Entity, value: "a89fcd1081b343e48f770d9561a68acd" } +SetTriple: cef3afd1db0b412eba273cec60a3b75d, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: cef3afd1db0b412eba273cec60a3b75d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: cef3afd1db0b412eba273cec60a3b75d, Index, Value { r#type: Text, value: "a0" } +SetTriple: cef3afd1db0b412eba273cec60a3b75d, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 8a428f0bbb214c869fd8f8b078309fc7, From entity, Value { r#type: Entity, value: "5e4911b82093411ea445bc2124d7f8e3" } +SetTriple: 8a428f0bbb214c869fd8f8b078309fc7, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 8a428f0bbb214c869fd8f8b078309fc7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8a428f0bbb214c869fd8f8b078309fc7, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8a428f0bbb214c869fd8f8b078309fc7, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 8925dd3edbcf4e08941c001e753d3fca, From entity, Value { r#type: Entity, value: "b3b03c909b6d487cb2e2a7d685f120eb" } +SetTriple: 8925dd3edbcf4e08941c001e753d3fca, To entity, Value { r#type: Entity, value: "5e4911b82093411ea445bc2124d7f8e3" } +SetTriple: 8925dd3edbcf4e08941c001e753d3fca, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8925dd3edbcf4e08941c001e753d3fca, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8925dd3edbcf4e08941c001e753d3fca, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: ae987ebe573d41969086f6bcd31880e0, From entity, Value { r#type: Entity, value: "5e4911b82093411ea445bc2124d7f8e3" } +SetTriple: ae987ebe573d41969086f6bcd31880e0, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: ae987ebe573d41969086f6bcd31880e0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ae987ebe573d41969086f6bcd31880e0, Index, Value { r#type: Text, value: "a0" } +SetTriple: ae987ebe573d41969086f6bcd31880e0, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 9311d8340aee4542ac7d6719e612496d, From entity, Value { r#type: Entity, value: "dcb87494cb91447b9a04625bd1acc804" } +SetTriple: 9311d8340aee4542ac7d6719e612496d, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 9311d8340aee4542ac7d6719e612496d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9311d8340aee4542ac7d6719e612496d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9311d8340aee4542ac7d6719e612496d, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: d2e260605d1141b59eae6444694a6435, From entity, Value { r#type: Entity, value: "b3b03c909b6d487cb2e2a7d685f120eb" } +SetTriple: d2e260605d1141b59eae6444694a6435, To entity, Value { r#type: Entity, value: "dcb87494cb91447b9a04625bd1acc804" } +SetTriple: d2e260605d1141b59eae6444694a6435, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d2e260605d1141b59eae6444694a6435, Index, Value { r#type: Text, value: "a0" } +SetTriple: d2e260605d1141b59eae6444694a6435, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 367d0a5b261f42558c43cf668b15a7d0, From entity, Value { r#type: Entity, value: "dcb87494cb91447b9a04625bd1acc804" } +SetTriple: 367d0a5b261f42558c43cf668b15a7d0, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: 367d0a5b261f42558c43cf668b15a7d0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 367d0a5b261f42558c43cf668b15a7d0, Index, Value { r#type: Text, value: "a0" } +SetTriple: 367d0a5b261f42558c43cf668b15a7d0, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: afc03e413224484580f872378911b6d9, From entity, Value { r#type: Entity, value: "fca2a465642640bb8e7ecf33742b5346" } +SetTriple: afc03e413224484580f872378911b6d9, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: afc03e413224484580f872378911b6d9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: afc03e413224484580f872378911b6d9, Index, Value { r#type: Text, value: "a0" } +SetTriple: afc03e413224484580f872378911b6d9, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 8b03880fff30498a8797c1113af1c12c, From entity, Value { r#type: Entity, value: "b3b03c909b6d487cb2e2a7d685f120eb" } +SetTriple: 8b03880fff30498a8797c1113af1c12c, To entity, Value { r#type: Entity, value: "fca2a465642640bb8e7ecf33742b5346" } +SetTriple: 8b03880fff30498a8797c1113af1c12c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8b03880fff30498a8797c1113af1c12c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8b03880fff30498a8797c1113af1c12c, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 2be9a418d63b4acdae7c94bbbc9fbf2c, From entity, Value { r#type: Entity, value: "2edf4225793741bab2056ac91ab4aab4" } +SetTriple: 2be9a418d63b4acdae7c94bbbc9fbf2c, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 2be9a418d63b4acdae7c94bbbc9fbf2c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2be9a418d63b4acdae7c94bbbc9fbf2c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2be9a418d63b4acdae7c94bbbc9fbf2c, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 856e3928d08b4a0bbd605e3d2becf8b6, From entity, Value { r#type: Entity, value: "2edf4225793741bab2056ac91ab4aab4" } +SetTriple: 856e3928d08b4a0bbd605e3d2becf8b6, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: cc8f49f913eb433e977be0a6db9cfcd0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: cc8f49f913eb433e977be0a6db9cfcd0, Index, Value { r#type: Text, value: "a0" } +SetTriple: cc8f49f913eb433e977be0a6db9cfcd0, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 7300fed7bd9645ed87d9595498c52396, From entity, Value { r#type: Entity, value: "7b6644f662c34e78ba17cec9478dc6ff" } +SetTriple: 7300fed7bd9645ed87d9595498c52396, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: 7300fed7bd9645ed87d9595498c52396, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7300fed7bd9645ed87d9595498c52396, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7300fed7bd9645ed87d9595498c52396, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 8e679daae2294699b1aab7969b66abf9, From entity, Value { r#type: Entity, value: "359846abd634441ab588756cb8439aa2" } +SetTriple: 8e679daae2294699b1aab7969b66abf9, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 8e679daae2294699b1aab7969b66abf9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8e679daae2294699b1aab7969b66abf9, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: fdf47b946407439c9fe52e50a884105e, Index, Value { r#type: Text, value: "a0" } +SetTriple: fdf47b946407439c9fe52e50a884105e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: fdf47b946407439c9fe52e50a884105e, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: fdf47b946407439c9fe52e50a884105e, From entity, Value { r#type: Entity, value: "d7d384ad608e4402a74d9a0b2b2c78ae" } +SetTriple: bc45dcac750f4176bd17f913ac963017, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: bc45dcac750f4176bd17f913ac963017, Index, Value { r#type: Text, value: "a0" } +SetTriple: bc45dcac750f4176bd17f913ac963017, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bc45dcac750f4176bd17f913ac963017, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: bc45dcac750f4176bd17f913ac963017, From entity, Value { r#type: Entity, value: "d7d384ad608e4402a74d9a0b2b2c78ae" } +SetTriple: 732d36fa92764eaf9e020f9103763fa6, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 732d36fa92764eaf9e020f9103763fa6, Index, Value { r#type: Text, value: "a0" } +SetTriple: 732d36fa92764eaf9e020f9103763fa6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 732d36fa92764eaf9e020f9103763fa6, To entity, Value { r#type: Entity, value: "2edf4225793741bab2056ac91ab4aab4" } +SetTriple: 732d36fa92764eaf9e020f9103763fa6, From entity, Value { r#type: Entity, value: "d7d384ad608e4402a74d9a0b2b2c78ae" } +SetTriple: 6a3f7a5fb01144e6946bb6b0fb033530, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 6a3f7a5fb01144e6946bb6b0fb033530, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6a3f7a5fb01144e6946bb6b0fb033530, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6a3f7a5fb01144e6946bb6b0fb033530, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 6a3f7a5fb01144e6946bb6b0fb033530, From entity, Value { r#type: Entity, value: "d7d384ad608e4402a74d9a0b2b2c78ae" } +SetTriple: 6435d629b9634c81ba0f3ad4a6f55daa, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 6435d629b9634c81ba0f3ad4a6f55daa, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6435d629b9634c81ba0f3ad4a6f55daa, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6435d629b9634c81ba0f3ad4a6f55daa, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: 6435d629b9634c81ba0f3ad4a6f55daa, From entity, Value { r#type: Entity, value: "c65eae3138054bda995b408e2aa48049" } +SetTriple: 037e0dbebb6144a682961f181efac386, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 037e0dbebb6144a682961f181efac386, Index, Value { r#type: Text, value: "a0" } +SetTriple: 037e0dbebb6144a682961f181efac386, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d20f68603c854be2bfcc262797e42062, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: d20f68603c854be2bfcc262797e42062, From entity, Value { r#type: Entity, value: "c7747db35a3049e3863fdadebddd3e35" } +SetTriple: 30d530f6727841ab88b3fd42a3f9dcc6, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 30d530f6727841ab88b3fd42a3f9dcc6, Index, Value { r#type: Text, value: "a0" } +SetTriple: 30d530f6727841ab88b3fd42a3f9dcc6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 30d530f6727841ab88b3fd42a3f9dcc6, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: 30d530f6727841ab88b3fd42a3f9dcc6, From entity, Value { r#type: Entity, value: "c7747db35a3049e3863fdadebddd3e35" } +SetTriple: ee0094ba7919436c82c6602fd29396b9, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: d20f68603c854be2bfcc262797e42062, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d20f68603c854be2bfcc262797e42062, Index, Value { r#type: Text, value: "a0" } +SetTriple: d20f68603c854be2bfcc262797e42062, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: d0a60fc6fc5d4d20940603646e1a59c5, From entity, Value { r#type: Entity, value: "7b6644f662c34e78ba17cec9478dc6ff" } +SetTriple: d0a60fc6fc5d4d20940603646e1a59c5, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: d0a60fc6fc5d4d20940603646e1a59c5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d0a60fc6fc5d4d20940603646e1a59c5, Index, Value { r#type: Text, value: "a0" } +SetTriple: d0a60fc6fc5d4d20940603646e1a59c5, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 9dee7c6366df436892415156a9a51d13, From entity, Value { r#type: Entity, value: "7b6644f662c34e78ba17cec9478dc6ff" } +SetTriple: 9dee7c6366df436892415156a9a51d13, To entity, Value { r#type: Entity, value: "2edf4225793741bab2056ac91ab4aab4" } +SetTriple: 9dee7c6366df436892415156a9a51d13, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9dee7c6366df436892415156a9a51d13, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9dee7c6366df436892415156a9a51d13, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: cc8f49f913eb433e977be0a6db9cfcd0, From entity, Value { r#type: Entity, value: "7b6644f662c34e78ba17cec9478dc6ff" } +SetTriple: cc8f49f913eb433e977be0a6db9cfcd0, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: b87e2a4d60ea462b8003e6cade6fba3f, From entity, Value { r#type: Entity, value: "911a8e0a52f24655a0c6d89cd161bb12" } +SetTriple: b87e2a4d60ea462b8003e6cade6fba3f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 911a8e0a52f24655a0c6d89cd161bb12, Description, Value { r#type: Text, value: "A country, state, county, city, or other geographic region" } +SetTriple: b87e2a4d60ea462b8003e6cade6fba3f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 911a8e0a52f24655a0c6d89cd161bb12, Name, Value { r#type: Text, value: "Region" } +SetTriple: b87e2a4d60ea462b8003e6cade6fba3f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b87e2a4d60ea462b8003e6cade6fba3f, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 29645c2126d946cd9068a56ef276edea, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 29645c2126d946cd9068a56ef276edea, Index, Value { r#type: Text, value: "a0" } +SetTriple: 29645c2126d946cd9068a56ef276edea, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 29645c2126d946cd9068a56ef276edea, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 29645c2126d946cd9068a56ef276edea, From entity, Value { r#type: Entity, value: "fca2a465642640bb8e7ecf33742b5346" } +SetTriple: 802d85d1aecf424293166e275d677c01, To entity, Value { r#type: Entity, value: "911a8e0a52f24655a0c6d89cd161bb12" } +SetTriple: 320716bc4a4a4bad93a0e80b070fb580, From entity, Value { r#type: Entity, value: "f9804f7c0e2e4658a8489aa65bbe411b" } +SetTriple: 320716bc4a4a4bad93a0e80b070fb580, To entity, Value { r#type: Entity, value: "f71912463dca4e778a79d9cdc9804127" } +SetTriple: 320716bc4a4a4bad93a0e80b070fb580, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 320716bc4a4a4bad93a0e80b070fb580, Index, Value { r#type: Text, value: "a0" } +SetTriple: 320716bc4a4a4bad93a0e80b070fb580, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 802d85d1aecf424293166e275d677c01, From entity, Value { r#type: Entity, value: "5e4911b82093411ea445bc2124d7f8e3" } +SetTriple: 802d85d1aecf424293166e275d677c01, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 802d85d1aecf424293166e275d677c01, Index, Value { r#type: Text, value: "a0" } +SetTriple: 802d85d1aecf424293166e275d677c01, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 3d5bfbe8d3434042bb3d159e61d06c6b, From entity, Value { r#type: Entity, value: "fca2a465642640bb8e7ecf33742b5346" } +SetTriple: 3d5bfbe8d3434042bb3d159e61d06c6b, To entity, Value { r#type: Entity, value: "2edf4225793741bab2056ac91ab4aab4" } +SetTriple: 3d5bfbe8d3434042bb3d159e61d06c6b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3d5bfbe8d3434042bb3d159e61d06c6b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3d5bfbe8d3434042bb3d159e61d06c6b, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 8383a196cd34488f93c75ead31108eca, From entity, Value { r#type: Entity, value: "2edf4225793741bab2056ac91ab4aab4" } +SetTriple: 8383a196cd34488f93c75ead31108eca, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 8383a196cd34488f93c75ead31108eca, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8383a196cd34488f93c75ead31108eca, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9799195182574fd5adb90cfd12c1d89b, To entity, Value { r#type: Entity, value: "2edf4225793741bab2056ac91ab4aab4" } +SetTriple: 9799195182574fd5adb90cfd12c1d89b, From entity, Value { r#type: Entity, value: "00335c6a51ab49a1922bb3d8c6fbbae3" } +SetTriple: 1fd1c99cd880401ea7ed3f1c824ff08d, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 1fd1c99cd880401ea7ed3f1c824ff08d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1fd1c99cd880401ea7ed3f1c824ff08d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1fd1c99cd880401ea7ed3f1c824ff08d, To entity, Value { r#type: Entity, value: "2edf4225793741bab2056ac91ab4aab4" } +SetTriple: 1fd1c99cd880401ea7ed3f1c824ff08d, From entity, Value { r#type: Entity, value: "00335c6a51ab49a1922bb3d8c6fbbae3" } +SetTriple: 9799195182574fd5adb90cfd12c1d89b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9799195182574fd5adb90cfd12c1d89b, Relation type, Value { r#type: Entity, value: "577bd9fbb29e4e2bb5f8f48aedbd26ac" } +SetTriple: 55b7aeca5a3b4dac96f595ede20f156d, Name, Value { r#type: Text, value: "Personal development" } +SetTriple: Career and personal development, Name, Value { r#type: Text, value: "Career development" } +SetTriple: 00335c6a51ab49a1922bb3d8c6fbbae3, Name, Value { r#type: Text, value: "Nonprofit categories" } +SetTriple: Nonprofit categories, Filter, Value { r#type: Text, value: "{typeIds_contains_nocase: [\"2edf4225793741bab2056ac91ab4aab4\"], entityOf_: {space: \"ab7d4b9e02f840dab9746d352acb0ac6\"}}" } +SetTriple: 8383a196cd34488f93c75ead31108eca, To entity, Value { r#type: Entity, value: "00335c6a51ab49a1922bb3d8c6fbbae3" } +SetTriple: Youth service, Name, Value { r#type: Text, value: "Youth services" } +SetTriple: 9799195182574fd5adb90cfd12c1d89b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 19c4b605e52445988cb8474e1001068f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 19c4b605e52445988cb8474e1001068f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 19c4b605e52445988cb8474e1001068f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 19c4b605e52445988cb8474e1001068f, To entity, Value { r#type: Entity, value: "2edf4225793741bab2056ac91ab4aab4" } +SetTriple: 19c4b605e52445988cb8474e1001068f, From entity, Value { r#type: Entity, value: "bd6337e709654622b0455f6a80daa7bb" } +SetTriple: d592826f383449ee9981bcdbe1222875, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: d592826f383449ee9981bcdbe1222875, Index, Value { r#type: Text, value: "a0" } +SetTriple: d592826f383449ee9981bcdbe1222875, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d592826f383449ee9981bcdbe1222875, To entity, Value { r#type: Entity, value: "2edf4225793741bab2056ac91ab4aab4" } +SetTriple: d592826f383449ee9981bcdbe1222875, From entity, Value { r#type: Entity, value: "4d10be48f22d41d891b729a4acf5ddd5" } +SetTriple: 7ed09dd56e2649998f0428348569fc12, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 7ed09dd56e2649998f0428348569fc12, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7ed09dd56e2649998f0428348569fc12, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7ed09dd56e2649998f0428348569fc12, To entity, Value { r#type: Entity, value: "2edf4225793741bab2056ac91ab4aab4" } +SetTriple: 7ed09dd56e2649998f0428348569fc12, From entity, Value { r#type: Entity, value: "f3fe618a0f6444b9800478f56ef6fe35" } +SetTriple: 44584af30d0442fcbaefa2c86be62107, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 44584af30d0442fcbaefa2c86be62107, Index, Value { r#type: Text, value: "a0" } +SetTriple: 44584af30d0442fcbaefa2c86be62107, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 44584af30d0442fcbaefa2c86be62107, To entity, Value { r#type: Entity, value: "2edf4225793741bab2056ac91ab4aab4" } +SetTriple: 44584af30d0442fcbaefa2c86be62107, From entity, Value { r#type: Entity, value: "b7c5fb240ea748bd91affc80c70f1432" } +SetTriple: c1cc875548c349419238b2b0a25fd335, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: c1cc875548c349419238b2b0a25fd335, Index, Value { r#type: Text, value: "a0" } +SetTriple: c1cc875548c349419238b2b0a25fd335, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c1cc875548c349419238b2b0a25fd335, To entity, Value { r#type: Entity, value: "2edf4225793741bab2056ac91ab4aab4" } +SetTriple: c1cc875548c349419238b2b0a25fd335, From entity, Value { r#type: Entity, value: "55b7aeca5a3b4dac96f595ede20f156d" } +SetTriple: bf8c5b837e05444cb10ff53e52395bd9, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: bf8c5b837e05444cb10ff53e52395bd9, Index, Value { r#type: Text, value: "a0" } +SetTriple: bf8c5b837e05444cb10ff53e52395bd9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bf8c5b837e05444cb10ff53e52395bd9, To entity, Value { r#type: Entity, value: "88d5925217ae4d9aa36724710129eb47" } +SetTriple: bf8c5b837e05444cb10ff53e52395bd9, From entity, Value { r#type: Entity, value: "00335c6a51ab49a1922bb3d8c6fbbae3" } +SetTriple: bd6337e709654622b0455f6a80daa7bb, Name, Value { r#type: Text, value: "Crisis assistance" } +SetTriple: 4d10be48f22d41d891b729a4acf5ddd5, Name, Value { r#type: Text, value: "Family services" } +SetTriple: Advocate group, Name, Value { r#type: Text, value: "Advocacy group" } +SetTriple: f3fe618a0f6444b9800478f56ef6fe35, Name, Value { r#type: Text, value: "Clothing" } +SetTriple: b7c5fb240ea748bd91affc80c70f1432, Name, Value { r#type: Text, value: "Reentry services" } +SetTriple: Feeding program, Name, Value { r#type: Text, value: "Food services" } +SetTriple: 201b2fe4cd764b91b00a0ae0d14a6fd1, From entity, Value { r#type: Entity, value: "37ae1d79b26e4bf588cb69087a992dc9" } +SetTriple: 66bc95f0710e430b97a2ae9d3709b5c0, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 66bc95f0710e430b97a2ae9d3709b5c0, Index, Value { r#type: Text, value: "a0" } +SetTriple: 66bc95f0710e430b97a2ae9d3709b5c0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 201b2fe4cd764b91b00a0ae0d14a6fd1, Index, Value { r#type: Text, value: "a0" } +SetTriple: 37ae1d79b26e4bf588cb69087a992dc9, Name, Value { r#type: Text, value: "Definition" } +SetTriple: 66bc95f0710e430b97a2ae9d3709b5c0, From entity, Value { r#type: Entity, value: "37ae1d79b26e4bf588cb69087a992dc9" } +SetTriple: 66bc95f0710e430b97a2ae9d3709b5c0, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 201b2fe4cd764b91b00a0ae0d14a6fd1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 201b2fe4cd764b91b00a0ae0d14a6fd1, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 201b2fe4cd764b91b00a0ae0d14a6fd1, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: f816ebf954404a7796dc1bf9882b38de, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: f816ebf954404a7796dc1bf9882b38de, Index, Value { r#type: Text, value: "a0" } +SetTriple: f816ebf954404a7796dc1bf9882b38de, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f816ebf954404a7796dc1bf9882b38de, To entity, Value { r#type: Entity, value: "37ae1d79b26e4bf588cb69087a992dc9" } +SetTriple: f816ebf954404a7796dc1bf9882b38de, From entity, Value { r#type: Entity, value: "1d7f027e415c4f69800e460fde65feb9" } +SetTriple: Definition, Name, Value { r#type: Text, value: "Definitions" } +SetTriple: b71308dd50604f87acd06ed2e3e2d468, Index, Value { r#type: Text, value: "a0" } +SetTriple: b71308dd50604f87acd06ed2e3e2d468, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b71308dd50604f87acd06ed2e3e2d468, To entity, Value { r#type: Entity, value: "873e0723752f4cd1bccab304cb8c4383" } +SetTriple: b71308dd50604f87acd06ed2e3e2d468, From entity, Value { r#type: Entity, value: "2411d4a11eea4963bdbf852ce6ced5a4" } +SetTriple: b71308dd50604f87acd06ed2e3e2d468, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 348a946aefc145d0b0f25df0ff94a8ca, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 348a946aefc145d0b0f25df0ff94a8ca, Index, Value { r#type: Text, value: "a0" } +SetTriple: 348a946aefc145d0b0f25df0ff94a8ca, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 348a946aefc145d0b0f25df0ff94a8ca, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 348a946aefc145d0b0f25df0ff94a8ca, From entity, Value { r#type: Entity, value: "2496fc45a30d4d7f90d7965f88f5c310" } +SetTriple: 2496fc45a30d4d7f90d7965f88f5c310, Name, Value { r#type: Text, value: "Initiative" } +SetTriple: d6fb3cc8265a4b6ebd9c3823d6bd8f70, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5ed8eeb56c724baa829832c2bbda1078, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 5ed8eeb56c724baa829832c2bbda1078, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5ed8eeb56c724baa829832c2bbda1078, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5ed8eeb56c724baa829832c2bbda1078, To entity, Value { r#type: Entity, value: "6904c3bbed784ee9aa6075028dbdc2cd" } +SetTriple: 5ed8eeb56c724baa829832c2bbda1078, From entity, Value { r#type: Entity, value: "79e43124950544cb93d67b93ddd2fd3a" } +SetTriple: d6fb3cc8265a4b6ebd9c3823d6bd8f70, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: d6fb3cc8265a4b6ebd9c3823d6bd8f70, Index, Value { r#type: Text, value: "a0" } +SetTriple: 79e43124950544cb93d67b93ddd2fd3a, Name, Value { r#type: Text, value: "Politician" } +SetTriple: d6fb3cc8265a4b6ebd9c3823d6bd8f70, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: d6fb3cc8265a4b6ebd9c3823d6bd8f70, From entity, Value { r#type: Entity, value: "79e43124950544cb93d67b93ddd2fd3a" } +SetTriple: 0a660064fcc14b32b0c7611b01dd0c3b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 784d4f3f61f448d28c59f0d33d70164e, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 784d4f3f61f448d28c59f0d33d70164e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 784d4f3f61f448d28c59f0d33d70164e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 784d4f3f61f448d28c59f0d33d70164e, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 784d4f3f61f448d28c59f0d33d70164e, From entity, Value { r#type: Entity, value: "284f02213aea456a83eabe0e28f63a2c" } +SetTriple: a06059c064e3472ea9117fb869421b1e, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: a06059c064e3472ea9117fb869421b1e, Index, Value { r#type: Text, value: "a0" } +SetTriple: a06059c064e3472ea9117fb869421b1e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a06059c064e3472ea9117fb869421b1e, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: a06059c064e3472ea9117fb869421b1e, From entity, Value { r#type: Entity, value: "25c1b007e6a144c6aed1da2e0dd39a2c" } +SetTriple: aad533cd423e42b78202b6c8cc1571db, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: aad533cd423e42b78202b6c8cc1571db, Index, Value { r#type: Text, value: "a0" } +SetTriple: aad533cd423e42b78202b6c8cc1571db, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: aad533cd423e42b78202b6c8cc1571db, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: aad533cd423e42b78202b6c8cc1571db, From entity, Value { r#type: Entity, value: "c0ae7c77d33f41a8a8e6563c9d4f7ae6" } +SetTriple: 1900abe6d8b14bad9daa9ce23d829c0d, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 1900abe6d8b14bad9daa9ce23d829c0d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1900abe6d8b14bad9daa9ce23d829c0d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1900abe6d8b14bad9daa9ce23d829c0d, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 1900abe6d8b14bad9daa9ce23d829c0d, From entity, Value { r#type: Entity, value: "4a65923f16454702b50b5d063efe9cc8" } +SetTriple: f779137803f54fa3a07594b3ab8673bc, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: f779137803f54fa3a07594b3ab8673bc, Index, Value { r#type: Text, value: "a0" } +SetTriple: f779137803f54fa3a07594b3ab8673bc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f779137803f54fa3a07594b3ab8673bc, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: f779137803f54fa3a07594b3ab8673bc, From entity, Value { r#type: Entity, value: "2abfb81cb1354d16a455dc6813e64405" } +SetTriple: 0a660064fcc14b32b0c7611b01dd0c3b, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 0a660064fcc14b32b0c7611b01dd0c3b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0a660064fcc14b32b0c7611b01dd0c3b, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 0a660064fcc14b32b0c7611b01dd0c3b, From entity, Value { r#type: Entity, value: "04b86c09e7ab45d09f5c25f61c31bb9c" } +SetTriple: f27e5d2cab304b6bb2d5442991721001, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: f27e5d2cab304b6bb2d5442991721001, Index, Value { r#type: Text, value: "a0" } +SetTriple: f27e5d2cab304b6bb2d5442991721001, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f27e5d2cab304b6bb2d5442991721001, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: f27e5d2cab304b6bb2d5442991721001, From entity, Value { r#type: Entity, value: "04b86c09e7ab45d09f5c25f61c31bb9c" } +SetTriple: 708e9371a863441ba9e616e302119811, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 708e9371a863441ba9e616e302119811, Index, Value { r#type: Text, value: "a0" } +SetTriple: 708e9371a863441ba9e616e302119811, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 708e9371a863441ba9e616e302119811, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 708e9371a863441ba9e616e302119811, From entity, Value { r#type: Entity, value: "f2b51833ffbe453d86b021563de7c946" } +SetTriple: 4a87a753fadb49bc97951774d695e343, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 4a87a753fadb49bc97951774d695e343, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4a87a753fadb49bc97951774d695e343, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4a87a753fadb49bc97951774d695e343, To entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: 4a87a753fadb49bc97951774d695e343, From entity, Value { r#type: Entity, value: "f2b51833ffbe453d86b021563de7c946" } +SetTriple: 3530cbc7d4c94c138049379634ccc9c8, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 3530cbc7d4c94c138049379634ccc9c8, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3530cbc7d4c94c138049379634ccc9c8, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3530cbc7d4c94c138049379634ccc9c8, To entity, Value { r#type: Entity, value: "26ccb6918cfc4b948ccc168564e2bfdf" } +SetTriple: 3530cbc7d4c94c138049379634ccc9c8, From entity, Value { r#type: Entity, value: "f2b51833ffbe453d86b021563de7c946" } +SetTriple: 62dcbe13c91a4a7b85b0a8d087993d2e, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 62dcbe13c91a4a7b85b0a8d087993d2e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 62dcbe13c91a4a7b85b0a8d087993d2e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 62dcbe13c91a4a7b85b0a8d087993d2e, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 62dcbe13c91a4a7b85b0a8d087993d2e, From entity, Value { r#type: Entity, value: "f2b51833ffbe453d86b021563de7c946" } +SetTriple: 705f7e8372724f859a3ed0752fae7a2a, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 705f7e8372724f859a3ed0752fae7a2a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 705f7e8372724f859a3ed0752fae7a2a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 705f7e8372724f859a3ed0752fae7a2a, To entity, Value { r#type: Entity, value: "873e0723752f4cd1bccab304cb8c4383" } +SetTriple: 705f7e8372724f859a3ed0752fae7a2a, From entity, Value { r#type: Entity, value: "284f02213aea456a83eabe0e28f63a2c" } +SetTriple: 32c585f1ba574fbb869d967561631370, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 32c585f1ba574fbb869d967561631370, Index, Value { r#type: Text, value: "a0" } +SetTriple: 32c585f1ba574fbb869d967561631370, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 32c585f1ba574fbb869d967561631370, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 32c585f1ba574fbb869d967561631370, From entity, Value { r#type: Entity, value: "284f02213aea456a83eabe0e28f63a2c" } +SetTriple: ca33a3d636a24e8e8e8c6ebe5332e1c3, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: ca33a3d636a24e8e8e8c6ebe5332e1c3, Index, Value { r#type: Text, value: "a0" } +SetTriple: ca33a3d636a24e8e8e8c6ebe5332e1c3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ca33a3d636a24e8e8e8c6ebe5332e1c3, To entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: ca33a3d636a24e8e8e8c6ebe5332e1c3, From entity, Value { r#type: Entity, value: "284f02213aea456a83eabe0e28f63a2c" } +SetTriple: 284f02213aea456a83eabe0e28f63a2c, Name, Value { r#type: Text, value: "Podcast" } +SetTriple: f2b51833ffbe453d86b021563de7c946, Name, Value { r#type: Text, value: "Podcast episode" } +SetTriple: 04b86c09e7ab45d09f5c25f61c31bb9c, Name, Value { r#type: Text, value: "Guests" } +SetTriple: 2abfb81cb1354d16a455dc6813e64405, Name, Value { r#type: Text, value: "Party" } +SetTriple: 4a65923f16454702b50b5d063efe9cc8, Name, Value { r#type: Text, value: "Legislation" } +SetTriple: c0ae7c77d33f41a8a8e6563c9d4f7ae6, Name, Value { r#type: Text, value: "Political Institution" } +SetTriple: b63c5c7cb20d4a499e4d27f3c8406abb, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b63c5c7cb20d4a499e4d27f3c8406abb, To entity, Value { r#type: Entity, value: "2edf4225793741bab2056ac91ab4aab4" } +SetTriple: b63c5c7cb20d4a499e4d27f3c8406abb, From entity, Value { r#type: Entity, value: "36399a9303734105a1064f7f72599f2c" } +SetTriple: Permanent supportive housing, Name, Value { r#type: Text, value: "Case Management and Mentoring Services" } +SetTriple: Personal development, Name, Value { r#type: Text, value: "Education, Life Skills Training, and Personal Development Services" } +SetTriple: Youth services, Name, Value { r#type: Text, value: "Childcare, Youth, and Family Services" } +SetTriple: Nonprofit category, Description, Value { r#type: Text, value: "" } +SetTriple: Nonprofit categories, Name, Value { r#type: Text, value: "Nonprofit categories" } +SetTriple: 36399a9303734105a1064f7f72599f2c, Name, Value { r#type: Text, value: "Follow-up, Aftercare, and Re-entry Services" } +SetTriple: Hygiene, Name, Value { r#type: Text, value: "Hygiene, Laundry and Clothing Services" } +SetTriple: Career development, Name, Value { r#type: Text, value: "Job SkillsTraining, Employment Services, and Career Development Services" } +SetTriple: Crisis assistance, Name, Value { r#type: Text, value: "Emergency Shelter Services" } +SetTriple: Temporary shelter, Name, Value { r#type: Text, value: "Crisis Intervention and Abuse Treatment" } +SetTriple: Mental health, Name, Value { r#type: Text, value: "Mental Health Services" } +SetTriple: Reentry services, Name, Value { r#type: Text, value: "Financial Literacy, Managing Expenses and Budgeting Services " } +SetTriple: Family services, Name, Value { r#type: Text, value: "Legal Services" } +SetTriple: Food services, Name, Value { r#type: Text, value: "Food and Meals Services" } +SetTriple: Clothing, Name, Value { r#type: Text, value: "Medical Care Services" } +SetTriple: Transitional housing, Name, Value { r#type: Text, value: "Transportation Services" } +SetTriple: Advocacy group, Name, Value { r#type: Text, value: "Advocacy and Outreach Services" } +SetTriple: b63c5c7cb20d4a499e4d27f3c8406abb, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: b63c5c7cb20d4a499e4d27f3c8406abb, Index, Value { r#type: Text, value: "a0" } +SetTriple: 864c9685fd454528a7caedd51316c09c, Name, Value { r#type: Text, value: "Source URL" } +SetTriple: b653021ab50244e7bc91645ca9b26923, Index, Value { r#type: Text, value: "a0" } +SetTriple: b653021ab50244e7bc91645ca9b26923, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: b653021ab50244e7bc91645ca9b26923, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b653021ab50244e7bc91645ca9b26923, To entity, Value { r#type: Entity, value: "dfc221d98cce4f0b9353e437a98387e3" } +SetTriple: b653021ab50244e7bc91645ca9b26923, From entity, Value { r#type: Entity, value: "864c9685fd454528a7caedd51316c09c" } +SetTriple: 43b1d88f680c4e80bf4b73efb82cdcf6, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 43b1d88f680c4e80bf4b73efb82cdcf6, Index, Value { r#type: Text, value: "a0" } +SetTriple: 43b1d88f680c4e80bf4b73efb82cdcf6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 43b1d88f680c4e80bf4b73efb82cdcf6, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 43b1d88f680c4e80bf4b73efb82cdcf6, From entity, Value { r#type: Entity, value: "864c9685fd454528a7caedd51316c09c" } +SetTriple: Types, Filter, Value { r#type: Text, value: "{and: [{typeIds_contains_nocase: [\"d7ab40920ab5441e88c35c27952de773\"]}, {entityOf_: {space: \"ab7d4b9e02f840dab9746d352acb0ac6\"}}, {name_starts_with_nocase: \"California\"}]}" } +SetTriple: Mental Health Services, Name, Value { r#type: Text, value: "Mental Health" } +SetTriple: Types, Filter, Value { r#type: Text, value: "{and: [{typeIds_contains_nocase: [\"d7ab40920ab5441e88c35c27952de773\"]}, {entityOf_: {space: \"ab7d4b9e02f840dab9746d352acb0ac6\"}}, {name_starts_with_nocase: \"California\"}]}" } +SetTriple: Hygiene, Laundry and Clothing Services, Name, Value { r#type: Text, value: "Hygiene, Laundry and Clothing " } +SetTriple: Hygiene, Laundry and Clothing , Name, Value { r#type: Text, value: "Hygiene, Laundry and Clothing " } +SetTriple: Types, Filter, Value { r#type: Text, value: "{and: [{typeIds_contains_nocase: [\"d7ab40920ab5441e88c35c27952de773\"]}, {entityOf_: {space: \"ab7d4b9e02f840dab9746d352acb0ac6\"}}, {name_starts_with_nocase: \"California\"}]}" } +SetTriple: Hygiene, Laundry and Clothing , Name, Value { r#type: Text, value: "Hygiene, Laundry and Clothing" } +SetTriple: Financial Literacy, Managing Expenses and Budgeting Services , Name, Value { r#type: Text, value: "Financial Literacy, Managing Expenses and Budgeting" } +SetTriple: Case Management and Mentoring Services, Name, Value { r#type: Text, value: "Case Management and Mentoring" } +SetTriple: Education, Life Skills Training, and Personal Development Services, Name, Value { r#type: Text, value: "Education, Life Skills Training, and Personal Development " } +SetTriple: Food and Meals Services, Name, Value { r#type: Text, value: "Food and Meals" } +SetTriple: Follow-up, Aftercare, and Re-entry Services, Name, Value { r#type: Text, value: "Follow-up, Aftercare, and Re-entry" } +SetTriple: Job SkillsTraining, Employment Services, and Career Development Services, Name, Value { r#type: Text, value: "Job Skills Training, Employment, and Career Development" } +SetTriple: Emergency Shelter Services, Name, Value { r#type: Text, value: "Emergency Shelter" } +SetTriple: Transportation Services, Name, Value { r#type: Text, value: "Transportation " } +SetTriple: Advocacy and Outreach Services, Name, Value { r#type: Text, value: "Advocacy and Outreach" } +SetTriple: Medical Care Services, Name, Value { r#type: Text, value: "Medical Care " } +SetTriple: Financial Literacy, Managing Expenses and Budgeting, Name, Value { r#type: Text, value: "Financial Literacy, Managing Expenses and Budgeting" } +SetTriple: Education, Life Skills Training, and Personal Development , Name, Value { r#type: Text, value: "Education, Life Skills Training, and Personal Development " } +SetTriple: Emergency Shelter, Name, Value { r#type: Text, value: "Emergency Shelter" } +SetTriple: Advocacy and Outreach, Name, Value { r#type: Text, value: "Advocacy and Outreach" } +SetTriple: Transportation , Name, Value { r#type: Text, value: "Transportation " } +SetTriple: Medical Care , Name, Value { r#type: Text, value: "Medical Care " } +SetTriple: Case Management and Mentoring, Name, Value { r#type: Text, value: "Case Management and Mentoring" } +SetTriple: Food and Meals, Name, Value { r#type: Text, value: "Food and Meals" } +SetTriple: Job Skills Training, Employment, and Career Development, Name, Value { r#type: Text, value: "Job Skills Training, Employment, and Career Development" } +SetTriple: Follow-up, Aftercare, and Re-entry, Name, Value { r#type: Text, value: "Follow-up, Aftercare, and Re-entry" } +SetTriple: Hygiene, Laundry and Clothing, Name, Value { r#type: Text, value: "Hygiene, Laundry and Clothing" } +SetTriple: Types, Filter, Value { r#type: Text, value: "{typeIds_contains_nocase: [\"d7ab40920ab5441e88c35c27952de773\"], entityOf_: {space: \"ab7d4b9e02f840dab9746d352acb0ac6\"}}" } +SetTriple: f4ff9dc36f6a43cd807eeab45e355374, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: aee9d1f009c54ddf9ba79dcdf78d5780, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: aee9d1f009c54ddf9ba79dcdf78d5780, Index, Value { r#type: Text, value: "a0" } +SetTriple: aee9d1f009c54ddf9ba79dcdf78d5780, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: aee9d1f009c54ddf9ba79dcdf78d5780, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: aee9d1f009c54ddf9ba79dcdf78d5780, From entity, Value { r#type: Entity, value: "749e295a675e47aab00d5503aa877ebe" } +SetTriple: 25891df8884440ef94872222697d0a4a, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 25891df8884440ef94872222697d0a4a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 25891df8884440ef94872222697d0a4a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 25891df8884440ef94872222697d0a4a, To entity, Value { r#type: Entity, value: "530f696c94a84c5fa881649e456e5e34" } +SetTriple: 25891df8884440ef94872222697d0a4a, From entity, Value { r#type: Entity, value: "79e43124950544cb93d67b93ddd2fd3a" } +SetTriple: 7d0f25d877504cecaf8c6b70deb25c03, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 7d0f25d877504cecaf8c6b70deb25c03, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7d0f25d877504cecaf8c6b70deb25c03, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7d0f25d877504cecaf8c6b70deb25c03, To entity, Value { r#type: Entity, value: "e8010874d3304a4d990762e89a19371a" } +SetTriple: 7d0f25d877504cecaf8c6b70deb25c03, From entity, Value { r#type: Entity, value: "79e43124950544cb93d67b93ddd2fd3a" } +SetTriple: a97b89c3834345e7afa0b11f371339ae, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: a97b89c3834345e7afa0b11f371339ae, Index, Value { r#type: Text, value: "a0" } +SetTriple: a97b89c3834345e7afa0b11f371339ae, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a97b89c3834345e7afa0b11f371339ae, To entity, Value { r#type: Entity, value: "7fa816a3cb704534934888449869dc33" } +SetTriple: a97b89c3834345e7afa0b11f371339ae, From entity, Value { r#type: Entity, value: "79e43124950544cb93d67b93ddd2fd3a" } +SetTriple: 6c2d41707244452689668fa8ae3709bb, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 6c2d41707244452689668fa8ae3709bb, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6c2d41707244452689668fa8ae3709bb, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6c2d41707244452689668fa8ae3709bb, To entity, Value { r#type: Entity, value: "749e295a675e47aab00d5503aa877ebe" } +SetTriple: 6c2d41707244452689668fa8ae3709bb, From entity, Value { r#type: Entity, value: "79e43124950544cb93d67b93ddd2fd3a" } +SetTriple: df3145e0b19c41f6bea9f225c650a0c7, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: df3145e0b19c41f6bea9f225c650a0c7, Index, Value { r#type: Text, value: "a0" } +SetTriple: df3145e0b19c41f6bea9f225c650a0c7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: df3145e0b19c41f6bea9f225c650a0c7, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: df3145e0b19c41f6bea9f225c650a0c7, From entity, Value { r#type: Entity, value: "749e295a675e47aab00d5503aa877ebe" } +SetTriple: e137e66c0af7442fa592f7ae1b3ec6f3, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: e137e66c0af7442fa592f7ae1b3ec6f3, Index, Value { r#type: Text, value: "a0" } +SetTriple: e137e66c0af7442fa592f7ae1b3ec6f3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e137e66c0af7442fa592f7ae1b3ec6f3, To entity, Value { r#type: Entity, value: "a4705583c630469499191d0c19c410ef" } +SetTriple: ffcb9bf6b5e540f58e3274af8cc68bbc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ffcb9bf6b5e540f58e3274af8cc68bbc, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: ffcb9bf6b5e540f58e3274af8cc68bbc, From entity, Value { r#type: Entity, value: "a4705583c630469499191d0c19c410ef" } +SetTriple: ffcb9bf6b5e540f58e3274af8cc68bbc, Index, Value { r#type: Text, value: "a0" } +SetTriple: ffcb9bf6b5e540f58e3274af8cc68bbc, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: f4ff9dc36f6a43cd807eeab45e355374, From entity, Value { r#type: Entity, value: "a4705583c630469499191d0c19c410ef" } +SetTriple: f4ff9dc36f6a43cd807eeab45e355374, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: d5cd5ae3d6204a9a950b8ee07566886c, Index, Value { r#type: Text, value: "a0" } +SetTriple: d5cd5ae3d6204a9a950b8ee07566886c, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: e137e66c0af7442fa592f7ae1b3ec6f3, From entity, Value { r#type: Entity, value: "79e43124950544cb93d67b93ddd2fd3a" } +SetTriple: f4ff9dc36f6a43cd807eeab45e355374, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f4ff9dc36f6a43cd807eeab45e355374, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6b7e980454f445e18f42d94a1c747bd9, From entity, Value { r#type: Entity, value: "b2ab96adccd843c29ce4643a765492fd" } +SetTriple: 6b7e980454f445e18f42d94a1c747bd9, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 6b7e980454f445e18f42d94a1c747bd9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6b7e980454f445e18f42d94a1c747bd9, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6b7e980454f445e18f42d94a1c747bd9, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: d5cd5ae3d6204a9a950b8ee07566886c, From entity, Value { r#type: Entity, value: "b2ab96adccd843c29ce4643a765492fd" } +SetTriple: d5cd5ae3d6204a9a950b8ee07566886c, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: d5cd5ae3d6204a9a950b8ee07566886c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a4705583c630469499191d0c19c410ef, Name, Value { r#type: Text, value: "Political party" } +SetTriple: b2ab96adccd843c29ce4643a765492fd, Name, Value { r#type: Text, value: "Positions" } +SetTriple: 749e295a675e47aab00d5503aa877ebe, Name, Value { r#type: Text, value: "Past roles" } +SetTriple: baf54c327c764955806e7ab045c1412d, Index, Value { r#type: Text, value: "a0" } +SetTriple: f21e6625749b435c9652b94516acba10, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: baf54c327c764955806e7ab045c1412d, From entity, Value { r#type: Entity, value: "f2b51833ffbe453d86b021563de7c946" } +SetTriple: baf54c327c764955806e7ab045c1412d, To entity, Value { r#type: Entity, value: "7fa816a3cb704534934888449869dc33" } +SetTriple: baf54c327c764955806e7ab045c1412d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4c5566b4f9294f35bf8477c897ce49c3, From entity, Value { r#type: Entity, value: "2abfb81cb1354d16a455dc6813e64405" } +SetTriple: 4c5566b4f9294f35bf8477c897ce49c3, To entity, Value { r#type: Entity, value: "e8010874d3304a4d990762e89a19371a" } +SetTriple: baf54c327c764955806e7ab045c1412d, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: bae2ed2a842e4d31ac3cc4b2732627ea, From entity, Value { r#type: Entity, value: "f2b51833ffbe453d86b021563de7c946" } +SetTriple: bae2ed2a842e4d31ac3cc4b2732627ea, To entity, Value { r#type: Entity, value: "e8010874d3304a4d990762e89a19371a" } +SetTriple: bae2ed2a842e4d31ac3cc4b2732627ea, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bae2ed2a842e4d31ac3cc4b2732627ea, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: bae2ed2a842e4d31ac3cc4b2732627ea, Index, Value { r#type: Text, value: "a0" } +SetTriple: News network, Name, Value { r#type: Text, value: "Publisher" } +SetTriple: 4c5566b4f9294f35bf8477c897ce49c3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4c5566b4f9294f35bf8477c897ce49c3, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4c5566b4f9294f35bf8477c897ce49c3, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 2471f532220840589931d4cd466e131c, From entity, Value { r#type: Entity, value: "682fbeff41e242cda7f9c4909136a8c5" } +SetTriple: 2471f532220840589931d4cd466e131c, To entity, Value { r#type: Entity, value: "26ccb6918cfc4b948ccc168564e2bfdf" } +SetTriple: 2471f532220840589931d4cd466e131c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2471f532220840589931d4cd466e131c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2471f532220840589931d4cd466e131c, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: cf795171bbdd48038288a2f39601a5a7, From entity, Value { r#type: Entity, value: "682fbeff41e242cda7f9c4909136a8c5" } +SetTriple: cf795171bbdd48038288a2f39601a5a7, To entity, Value { r#type: Entity, value: "e8010874d3304a4d990762e89a19371a" } +SetTriple: cf795171bbdd48038288a2f39601a5a7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: cf795171bbdd48038288a2f39601a5a7, Index, Value { r#type: Text, value: "a0" } +SetTriple: cf795171bbdd48038288a2f39601a5a7, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: c3f0df004700470faa89a649d3ca9816, From entity, Value { r#type: Entity, value: "682fbeff41e242cda7f9c4909136a8c5" } +SetTriple: c3f0df004700470faa89a649d3ca9816, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: b8ad2c3a61a14334a1ebb36e77d94d8e, From entity, Value { r#type: Entity, value: "2abfb81cb1354d16a455dc6813e64405" } +SetTriple: b8ad2c3a61a14334a1ebb36e77d94d8e, To entity, Value { r#type: Entity, value: "b2ab96adccd843c29ce4643a765492fd" } +SetTriple: b8ad2c3a61a14334a1ebb36e77d94d8e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b8ad2c3a61a14334a1ebb36e77d94d8e, Index, Value { r#type: Text, value: "a0" } +SetTriple: b8ad2c3a61a14334a1ebb36e77d94d8e, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: f21e6625749b435c9652b94516acba10, From entity, Value { r#type: Entity, value: "2abfb81cb1354d16a455dc6813e64405" } +SetTriple: f21e6625749b435c9652b94516acba10, To entity, Value { r#type: Entity, value: "7fa816a3cb704534934888449869dc33" } +SetTriple: f21e6625749b435c9652b94516acba10, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c3f0df004700470faa89a649d3ca9816, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c3f0df004700470faa89a649d3ca9816, Index, Value { r#type: Text, value: "a0" } +SetTriple: c3f0df004700470faa89a649d3ca9816, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: f21e6625749b435c9652b94516acba10, Index, Value { r#type: Text, value: "a0" } +SetTriple: Legal Services, Name, Value { r#type: Text, value: "Housing: Temporary, Transitional, Program-based, Long-term, Housing assistance services... " } +SetTriple: Mental Health, Name, Value { r#type: Text, value: "Homeless (Stage 3): Case Worker, Mentor, 'Client-centric' personal plan.." } +SetTriple: Follow-up, Aftercare, and Re-entry, Name, Value { r#type: Text, value: "Homeless (Stage 4): 'Process-centric' program, Goal-driven behavior modifications, Addiction care...." } +SetTriple: Hygiene, Laundry and Clothing, Name, Value { r#type: Text, value: "Homeless (Stage 2): Street outreach, Assisting Services (Hygiene, Medical, Mental Health, Transportation, Housing...)" } +SetTriple: Education, Life Skills Training, and Personal Development , Name, Value { r#type: Text, value: "Low income: Advocacy, Outreach, Financial assistance, Social Services, Legal Services... " } +SetTriple: Case Management and Mentoring, Name, Value { r#type: Text, value: "Low Income: Childcare, Youth, Family, Parenting, Elderly, Special Needs...services" } +SetTriple: Job Skills Training, Employment, and Career Development, Name, Value { r#type: Text, value: "Homeless (Stage 5): Personal development, Life skills, peer-groups, workshops, trainings,,," } +SetTriple: Childcare, Youth, and Family Services, Name, Value { r#type: Text, value: "Homeless (Stage 6): Re-entry, Education, Job Skills, Employment, Career Development...Self-sustaining " } +SetTriple: Food and Meals, Name, Value { r#type: Text, value: "Homeless Prevention (Stage 7): After-care, Thriving enablement, Giving back... " } +SetTriple: Homeless (Stage 6): Re-entry, Education, Job Skills, Employment, Career Development...Self-sustaining , Name, Value { r#type: Text, value: "Homeless (Stage 6): Re-entry, Education, Job Skills, Employment, Career Development...Self-sustaining " } +SetTriple: Homeless (Stage 2): Street outreach, Assisting Services (Hygiene, Medical, Mental Health, Transportation, Housing...), Name, Value { r#type: Text, value: "Homeless (Stage 2): Street outreach, Assisting Services (Hygiene, Medical, Mental Health, Transportation, Housing...)" } +SetTriple: Homeless (Stage 3): Case Worker, Mentor, 'Client-centric' personal plan.., Name, Value { r#type: Text, value: "Homeless (Stage 3): Case Worker, Mentor, 'Client-centric' personal plan.." } +SetTriple: Low income: Advocacy, Outreach, Financial assistance, Social Services, Legal Services... , Name, Value { r#type: Text, value: "Low income: Advocacy, Outreach, Financial assistance, Social Services, Legal Services... " } +SetTriple: Low Income: Childcare, Youth, Family, Parenting, Elderly, Special Needs...services, Name, Value { r#type: Text, value: "Low Income: Childcare, Youth, Family, Parenting, Elderly, Special Needs...services" } +SetTriple: Housing: Temporary, Transitional, Program-based, Long-term, Housing assistance services... , Name, Value { r#type: Text, value: "Housing: Temporary, Transitional, Program-based, Long-term, Housing assistance services... " } +SetTriple: Homeless Prevention (Stage 7): After-care, Thriving enablement, Giving back... , Name, Value { r#type: Text, value: "Homeless Prevention (Stage 7): After-care, Thriving enablement, Giving back... " } +SetTriple: Homeless (Stage 5): Personal development, Life skills, peer-groups, workshops, trainings,,,, Name, Value { r#type: Text, value: "Homeless (Stage 5): Personal development, Life skills, peer-groups, workshops, trainings,,," } +SetTriple: Homeless (Stage 4): 'Process-centric' program, Goal-driven behavior modifications, Addiction care...., Name, Value { r#type: Text, value: "Homeless (Stage 4): 'Process-centric' program, Goal-driven behavior modifications, Addiction care...." } +SetTriple: Homeless (Stage 6): Re-entry, Education, Job Skills, Employment, Career Development...Self-sustaining , Name, Value { r#type: Text, value: "Homeless (Stage 6): Re-entry, Education, Job Skills, Employment, Career Development...Self-sustaining " } +SetTriple: Low income: Advocacy, Outreach, Financial assistance, Social Services, Legal Services... , Name, Value { r#type: Text, value: "Low income: Advocacy, Outreach, Financial assistance, Social Services, Legal Services... " } +SetTriple: Homeless (Stage 2): Street outreach, Assisting Services (Hygiene, Medical, Mental Health, Transportation, Housing...), Name, Value { r#type: Text, value: "Homeless (Stage 2): Street outreach, Assisting Services (Hygiene, Medical, Mental Health, Transportation, Housing...)" } +SetTriple: Homeless (Stage 3): Case Worker, Mentor, 'Client-centric' personal plan.., Name, Value { r#type: Text, value: "Homeless (Stage 3): Case Worker, Mentor, 'Client-centric' personal plan.." } +SetTriple: Low Income: Childcare, Youth, Family, Parenting, Elderly, Special Needs...services, Name, Value { r#type: Text, value: "Low Income: Childcare, Youth, Family, Parenting, Elderly, Special Needs...services" } +SetTriple: Homeless (Stage 5): Personal development, Life skills, peer-groups, workshops, trainings,,,, Name, Value { r#type: Text, value: "Homeless (Stage 5): Personal development, Life skills, peer-groups, workshops, trainings,,," } +SetTriple: Housing: Temporary, Transitional, Program-based, Long-term, Housing assistance services... , Name, Value { r#type: Text, value: "Housing: Temporary, Transitional, Program-based, Long-term, Housing assistance services... " } +SetTriple: Homeless (Stage 4): 'Process-centric' program, Goal-driven behavior modifications, Addiction care...., Name, Value { r#type: Text, value: "Homeless (Stage 4): 'Process-centric' program, Goal-driven behavior modifications, Addiction care...." } +SetTriple: Homeless Prevention (Stage 7): After-care, Thriving enablement, Giving back... , Name, Value { r#type: Text, value: "Homeless Prevention (Stage 7): After-care, Thriving enablement, Giving back... " } +SetTriple: b40ab9a0e69747cfad73777d3bd7e2f6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b40ab9a0e69747cfad73777d3bd7e2f6, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: b40ab9a0e69747cfad73777d3bd7e2f6, Index, Value { r#type: Text, value: "a0" } +SetTriple: b40ab9a0e69747cfad73777d3bd7e2f6, To entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: b40ab9a0e69747cfad73777d3bd7e2f6, From entity, Value { r#type: Entity, value: "b3b03c909b6d487cb2e2a7d685f120eb" } +SetTriple: 013a5994360e4ae0bc124908cac5320f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 17076c6b72cc40b1bfa2c7487c694c09, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: fe76697a6ee749b1b5dc9186c367a6e6, From entity, Value { r#type: Entity, value: "2bd4bd53ee974d37909a0c7a2bf62a9e" } +SetTriple: fe76697a6ee749b1b5dc9186c367a6e6, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: fe76697a6ee749b1b5dc9186c367a6e6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: fe76697a6ee749b1b5dc9186c367a6e6, Index, Value { r#type: Text, value: "a0" } +SetTriple: fe76697a6ee749b1b5dc9186c367a6e6, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 17076c6b72cc40b1bfa2c7487c694c09, Index, Value { r#type: Text, value: "a0" } +SetTriple: 17076c6b72cc40b1bfa2c7487c694c09, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 17076c6b72cc40b1bfa2c7487c694c09, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 17076c6b72cc40b1bfa2c7487c694c09, From entity, Value { r#type: Entity, value: "2bd4bd53ee974d37909a0c7a2bf62a9e" } +SetTriple: d32aea3c5ac746a5980c1e4e1c3bb9d1, From entity, Value { r#type: Entity, value: "c53929358a224ba2b035cbad8cdb60e1" } +SetTriple: d32aea3c5ac746a5980c1e4e1c3bb9d1, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: d32aea3c5ac746a5980c1e4e1c3bb9d1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d32aea3c5ac746a5980c1e4e1c3bb9d1, Index, Value { r#type: Text, value: "a0" } +SetTriple: d32aea3c5ac746a5980c1e4e1c3bb9d1, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 37e8f58a1b4e4095aa243172aab07839, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: c15e71479ced41c8bb76a3c1199948bf, From entity, Value { r#type: Entity, value: "e5de3dc0ea7d4a44b5305544f3d30a21" } +SetTriple: 37e8f58a1b4e4095aa243172aab07839, From entity, Value { r#type: Entity, value: "c53929358a224ba2b035cbad8cdb60e1" } +SetTriple: 37e8f58a1b4e4095aa243172aab07839, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 37e8f58a1b4e4095aa243172aab07839, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 37e8f58a1b4e4095aa243172aab07839, Index, Value { r#type: Text, value: "a0" } +SetTriple: d6b2fa4f79914a8290a80edbfc0b8856, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: d6b2fa4f79914a8290a80edbfc0b8856, Index, Value { r#type: Text, value: "a0" } +SetTriple: d6b2fa4f79914a8290a80edbfc0b8856, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d6b2fa4f79914a8290a80edbfc0b8856, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: d6b2fa4f79914a8290a80edbfc0b8856, From entity, Value { r#type: Entity, value: "e5de3dc0ea7d4a44b5305544f3d30a21" } +SetTriple: 7fc281f13c2a46ad89ccd06daebd69ce, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 7fc281f13c2a46ad89ccd06daebd69ce, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7fc281f13c2a46ad89ccd06daebd69ce, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7fc281f13c2a46ad89ccd06daebd69ce, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 7fc281f13c2a46ad89ccd06daebd69ce, From entity, Value { r#type: Entity, value: "42dd85553b3d4f1c8001e993fc31f106" } +SetTriple: 4d83beb9077140a3abc261c1a6fd628b, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 4d83beb9077140a3abc261c1a6fd628b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4d83beb9077140a3abc261c1a6fd628b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4d83beb9077140a3abc261c1a6fd628b, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 4d83beb9077140a3abc261c1a6fd628b, From entity, Value { r#type: Entity, value: "42dd85553b3d4f1c8001e993fc31f106" } +SetTriple: bedf32a0eadb453ca1fc167c23344bd6, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: bedf32a0eadb453ca1fc167c23344bd6, Index, Value { r#type: Text, value: "a0" } +SetTriple: bedf32a0eadb453ca1fc167c23344bd6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bedf32a0eadb453ca1fc167c23344bd6, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: bedf32a0eadb453ca1fc167c23344bd6, From entity, Value { r#type: Entity, value: "3b6cb9e53bf24d30bca11b4920abac08" } +SetTriple: 0d6cb8216b8b46d497b0154ba4adf2b2, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 0d6cb8216b8b46d497b0154ba4adf2b2, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0d6cb8216b8b46d497b0154ba4adf2b2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0d6cb8216b8b46d497b0154ba4adf2b2, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 0d6cb8216b8b46d497b0154ba4adf2b2, From entity, Value { r#type: Entity, value: "3b6cb9e53bf24d30bca11b4920abac08" } +SetTriple: dc21b8693912434e8fa928e62d61e4ae, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: dc21b8693912434e8fa928e62d61e4ae, Index, Value { r#type: Text, value: "a0" } +SetTriple: dc21b8693912434e8fa928e62d61e4ae, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: dc21b8693912434e8fa928e62d61e4ae, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: dc21b8693912434e8fa928e62d61e4ae, From entity, Value { r#type: Entity, value: "248b5cab31074bdb9fce993df6daa984" } +SetTriple: 477036737948474ab8257a0fc53f35d1, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 477036737948474ab8257a0fc53f35d1, Index, Value { r#type: Text, value: "a0" } +SetTriple: 477036737948474ab8257a0fc53f35d1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 477036737948474ab8257a0fc53f35d1, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 477036737948474ab8257a0fc53f35d1, From entity, Value { r#type: Entity, value: "248b5cab31074bdb9fce993df6daa984" } +SetTriple: e229297569c04b099e133aec30eb8b9b, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: e229297569c04b099e133aec30eb8b9b, Index, Value { r#type: Text, value: "a0" } +SetTriple: e229297569c04b099e133aec30eb8b9b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e229297569c04b099e133aec30eb8b9b, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: e229297569c04b099e133aec30eb8b9b, From entity, Value { r#type: Entity, value: "d6bf2dc947154e619831aaa77c610103" } +SetTriple: af69faaaf77d42f190711e8b436abc62, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: af69faaaf77d42f190711e8b436abc62, Index, Value { r#type: Text, value: "a0" } +SetTriple: af69faaaf77d42f190711e8b436abc62, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: af69faaaf77d42f190711e8b436abc62, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: af69faaaf77d42f190711e8b436abc62, From entity, Value { r#type: Entity, value: "d6bf2dc947154e619831aaa77c610103" } +SetTriple: 013a5994360e4ae0bc124908cac5320f, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 013a5994360e4ae0bc124908cac5320f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 013a5994360e4ae0bc124908cac5320f, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 013a5994360e4ae0bc124908cac5320f, From entity, Value { r#type: Entity, value: "05586f45f04c4443923e15d85f7c84fe" } +SetTriple: 9a97686573af4cc899046943c616064a, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 9a97686573af4cc899046943c616064a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9a97686573af4cc899046943c616064a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9a97686573af4cc899046943c616064a, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 9a97686573af4cc899046943c616064a, From entity, Value { r#type: Entity, value: "05586f45f04c4443923e15d85f7c84fe" } +SetTriple: 05586f45f04c4443923e15d85f7c84fe, Name, Value { r#type: Text, value: "Sponsored Legislation" } +SetTriple: d6bf2dc947154e619831aaa77c610103, Name, Value { r#type: Text, value: "Cosponsored Legislation" } +SetTriple: Cosponsored Legislation, Description, Value { r#type: Text, value: "" } +SetTriple: 248b5cab31074bdb9fce993df6daa984, Name, Value { r#type: Text, value: "Legislative Votes" } +SetTriple: 3b6cb9e53bf24d30bca11b4920abac08, Name, Value { r#type: Text, value: "Supported Voting Issues" } +SetTriple: 42dd85553b3d4f1c8001e993fc31f106, Name, Value { r#type: Text, value: "Bioguide ID" } +SetTriple: e5de3dc0ea7d4a44b5305544f3d30a21, Name, Value { r#type: Text, value: "Introduced" } +SetTriple: c53929358a224ba2b035cbad8cdb60e1, Name, Value { r#type: Text, value: "Political institution" } +SetTriple: 2bd4bd53ee974d37909a0c7a2bf62a9e, Name, Value { r#type: Text, value: "Regional Level" } +SetTriple: 9687d8be2d76451c979a0f46a8dc8014, Name, Value { r#type: Text, value: "Sponsor" } +SetTriple: 291982289bcf4fc08b088082687b2200, Name, Value { r#type: Text, value: "Cosponsors" } +SetTriple: 109c9287b19643aca081052ad427f9c6, Name, Value { r#type: Text, value: "Voting issues" } +SetTriple: 8d6bf2371d8b48ae81b8f9fa34c01abc, Name, Value { r#type: Text, value: "Voting issue position" } +SetTriple: de45823b6a9e4169828bea8e95fb51c1, Name, Value { r#type: Text, value: "Voting results" } +SetTriple: 315bc13712e3435298bb8a1e873b0584, From entity, Value { r#type: Entity, value: "9687d8be2d76451c979a0f46a8dc8014" } +SetTriple: c15e71479ced41c8bb76a3c1199948bf, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: c15e71479ced41c8bb76a3c1199948bf, Index, Value { r#type: Text, value: "a0" } +SetTriple: c15e71479ced41c8bb76a3c1199948bf, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c15e71479ced41c8bb76a3c1199948bf, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 315bc13712e3435298bb8a1e873b0584, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 315bc13712e3435298bb8a1e873b0584, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 315bc13712e3435298bb8a1e873b0584, Index, Value { r#type: Text, value: "a0" } +SetTriple: 315bc13712e3435298bb8a1e873b0584, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 450bf707c2e745298a6ef16f7ecf164e, From entity, Value { r#type: Entity, value: "9687d8be2d76451c979a0f46a8dc8014" } +SetTriple: 450bf707c2e745298a6ef16f7ecf164e, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 450bf707c2e745298a6ef16f7ecf164e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 450bf707c2e745298a6ef16f7ecf164e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 450bf707c2e745298a6ef16f7ecf164e, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 22517b7612b14a0aa396c4d0cdfb17dc, From entity, Value { r#type: Entity, value: "291982289bcf4fc08b088082687b2200" } +SetTriple: 22517b7612b14a0aa396c4d0cdfb17dc, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 22517b7612b14a0aa396c4d0cdfb17dc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 22517b7612b14a0aa396c4d0cdfb17dc, Index, Value { r#type: Text, value: "a0" } +SetTriple: 22517b7612b14a0aa396c4d0cdfb17dc, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 8ac12ad7439546ea9f93033f9b2906a8, From entity, Value { r#type: Entity, value: "291982289bcf4fc08b088082687b2200" } +SetTriple: 8ac12ad7439546ea9f93033f9b2906a8, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 8ac12ad7439546ea9f93033f9b2906a8, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8ac12ad7439546ea9f93033f9b2906a8, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8ac12ad7439546ea9f93033f9b2906a8, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 3207a8e651db41038ffe4c2192ff3ecf, From entity, Value { r#type: Entity, value: "109c9287b19643aca081052ad427f9c6" } +SetTriple: 3207a8e651db41038ffe4c2192ff3ecf, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 3207a8e651db41038ffe4c2192ff3ecf, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3207a8e651db41038ffe4c2192ff3ecf, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3207a8e651db41038ffe4c2192ff3ecf, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: aaa1c4b8c4f6400fa1c8d36cafbf8fda, From entity, Value { r#type: Entity, value: "109c9287b19643aca081052ad427f9c6" } +SetTriple: aaa1c4b8c4f6400fa1c8d36cafbf8fda, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: aaa1c4b8c4f6400fa1c8d36cafbf8fda, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: aaa1c4b8c4f6400fa1c8d36cafbf8fda, Index, Value { r#type: Text, value: "a0" } +SetTriple: aaa1c4b8c4f6400fa1c8d36cafbf8fda, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: ca5a9a8bfb9d418291bc235ffa207a31, From entity, Value { r#type: Entity, value: "8d6bf2371d8b48ae81b8f9fa34c01abc" } +SetTriple: ca5a9a8bfb9d418291bc235ffa207a31, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: ca5a9a8bfb9d418291bc235ffa207a31, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ca5a9a8bfb9d418291bc235ffa207a31, Index, Value { r#type: Text, value: "a0" } +SetTriple: ca5a9a8bfb9d418291bc235ffa207a31, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 48dfcdfc4ca54fe29630b580f539baff, From entity, Value { r#type: Entity, value: "8d6bf2371d8b48ae81b8f9fa34c01abc" } +SetTriple: 48dfcdfc4ca54fe29630b580f539baff, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 48dfcdfc4ca54fe29630b580f539baff, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 48dfcdfc4ca54fe29630b580f539baff, Index, Value { r#type: Text, value: "a0" } +SetTriple: 48dfcdfc4ca54fe29630b580f539baff, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: b9afb56dee2246aeb4f36495c2a7bc59, From entity, Value { r#type: Entity, value: "de45823b6a9e4169828bea8e95fb51c1" } +SetTriple: b9afb56dee2246aeb4f36495c2a7bc59, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: b9afb56dee2246aeb4f36495c2a7bc59, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b9afb56dee2246aeb4f36495c2a7bc59, Index, Value { r#type: Text, value: "a0" } +SetTriple: b9afb56dee2246aeb4f36495c2a7bc59, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 1274cebd9ad8405dafbc3a979510a703, From entity, Value { r#type: Entity, value: "de45823b6a9e4169828bea8e95fb51c1" } +SetTriple: 1274cebd9ad8405dafbc3a979510a703, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 1274cebd9ad8405dafbc3a979510a703, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1274cebd9ad8405dafbc3a979510a703, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1274cebd9ad8405dafbc3a979510a703, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 2e235c0388a942cdbdbcc97366cb5e71, From entity, Value { r#type: Entity, value: "4a65923f16454702b50b5d063efe9cc8" } +SetTriple: 2e235c0388a942cdbdbcc97366cb5e71, To entity, Value { r#type: Entity, value: "dcc36c1c1d42419a90bc3a455d5a2399" } +SetTriple: 2e235c0388a942cdbdbcc97366cb5e71, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2e235c0388a942cdbdbcc97366cb5e71, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2e235c0388a942cdbdbcc97366cb5e71, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 6c6218154c9d417384f1d5f52f344771, From entity, Value { r#type: Entity, value: "4a65923f16454702b50b5d063efe9cc8" } +SetTriple: 6c6218154c9d417384f1d5f52f344771, To entity, Value { r#type: Entity, value: "109c9287b19643aca081052ad427f9c6" } +SetTriple: 6c6218154c9d417384f1d5f52f344771, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6c6218154c9d417384f1d5f52f344771, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6c6218154c9d417384f1d5f52f344771, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: f490de53ec73441e88ad378dc95afaf3, From entity, Value { r#type: Entity, value: "4a65923f16454702b50b5d063efe9cc8" } +SetTriple: f490de53ec73441e88ad378dc95afaf3, To entity, Value { r#type: Entity, value: "8d6bf2371d8b48ae81b8f9fa34c01abc" } +SetTriple: f490de53ec73441e88ad378dc95afaf3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f490de53ec73441e88ad378dc95afaf3, Index, Value { r#type: Text, value: "a0" } +SetTriple: f490de53ec73441e88ad378dc95afaf3, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: f468b91f2788426b899c25d553d9a080, From entity, Value { r#type: Entity, value: "4a65923f16454702b50b5d063efe9cc8" } +SetTriple: f468b91f2788426b899c25d553d9a080, To entity, Value { r#type: Entity, value: "de45823b6a9e4169828bea8e95fb51c1" } +SetTriple: f468b91f2788426b899c25d553d9a080, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f468b91f2788426b899c25d553d9a080, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: af547a31495044e0ad7021e1c74b32b7, From entity, Value { r#type: Entity, value: "4a65923f16454702b50b5d063efe9cc8" } +SetTriple: af547a31495044e0ad7021e1c74b32b7, To entity, Value { r#type: Entity, value: "e8010874d3304a4d990762e89a19371a" } +SetTriple: af547a31495044e0ad7021e1c74b32b7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: af547a31495044e0ad7021e1c74b32b7, Index, Value { r#type: Text, value: "a0" } +SetTriple: af547a31495044e0ad7021e1c74b32b7, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: ff667ac043724951a19024bb8034a775, From entity, Value { r#type: Entity, value: "c0ae7c77d33f41a8a8e6563c9d4f7ae6" } +SetTriple: ff667ac043724951a19024bb8034a775, To entity, Value { r#type: Entity, value: "2bd4bd53ee974d37909a0c7a2bf62a9e" } +SetTriple: ff667ac043724951a19024bb8034a775, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ff667ac043724951a19024bb8034a775, Index, Value { r#type: Text, value: "a0" } +SetTriple: ff667ac043724951a19024bb8034a775, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: c938baca50d0447396444846ce343d62, From entity, Value { r#type: Entity, value: "c0ae7c77d33f41a8a8e6563c9d4f7ae6" } +SetTriple: c938baca50d0447396444846ce343d62, To entity, Value { r#type: Entity, value: "5e4911b82093411ea445bc2124d7f8e3" } +SetTriple: 0123cb76d15643c094efb3e3afd20065, From entity, Value { r#type: Entity, value: "79e43124950544cb93d67b93ddd2fd3a" } +SetTriple: 0123cb76d15643c094efb3e3afd20065, To entity, Value { r#type: Entity, value: "d6bf2dc947154e619831aaa77c610103" } +SetTriple: 0123cb76d15643c094efb3e3afd20065, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0123cb76d15643c094efb3e3afd20065, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0123cb76d15643c094efb3e3afd20065, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: b856af56e894426b9e866a88dc2fe0a1, From entity, Value { r#type: Entity, value: "79e43124950544cb93d67b93ddd2fd3a" } +SetTriple: b856af56e894426b9e866a88dc2fe0a1, To entity, Value { r#type: Entity, value: "05586f45f04c4443923e15d85f7c84fe" } +SetTriple: b856af56e894426b9e866a88dc2fe0a1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b856af56e894426b9e866a88dc2fe0a1, Index, Value { r#type: Text, value: "a0" } +SetTriple: b856af56e894426b9e866a88dc2fe0a1, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 6ab232af1fd04ec58cc99aada0218bd4, From entity, Value { r#type: Entity, value: "79e43124950544cb93d67b93ddd2fd3a" } +SetTriple: 6ab232af1fd04ec58cc99aada0218bd4, To entity, Value { r#type: Entity, value: "b2ab96adccd843c29ce4643a765492fd" } +SetTriple: 6ab232af1fd04ec58cc99aada0218bd4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6ab232af1fd04ec58cc99aada0218bd4, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6ab232af1fd04ec58cc99aada0218bd4, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 34c894a76b574c10baf88ae88767498e, From entity, Value { r#type: Entity, value: "79e43124950544cb93d67b93ddd2fd3a" } +SetTriple: 34c894a76b574c10baf88ae88767498e, To entity, Value { r#type: Entity, value: "42dd85553b3d4f1c8001e993fc31f106" } +SetTriple: 34c894a76b574c10baf88ae88767498e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 34c894a76b574c10baf88ae88767498e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 34c894a76b574c10baf88ae88767498e, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 2e1cd5f645864ff4b13c409ae3a103e1, From entity, Value { r#type: Entity, value: "7e9b803c456c47c88a26d879e16d52ec" } +SetTriple: 2e1cd5f645864ff4b13c409ae3a103e1, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 2e1cd5f645864ff4b13c409ae3a103e1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2e1cd5f645864ff4b13c409ae3a103e1, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2e1cd5f645864ff4b13c409ae3a103e1, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: b89b57662b93404e85a5d77fedf4d4da, From entity, Value { r#type: Entity, value: "7e9b803c456c47c88a26d879e16d52ec" } +SetTriple: b89b57662b93404e85a5d77fedf4d4da, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: b89b57662b93404e85a5d77fedf4d4da, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b89b57662b93404e85a5d77fedf4d4da, Index, Value { r#type: Text, value: "a0" } +SetTriple: b89b57662b93404e85a5d77fedf4d4da, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: e1f7682a663c49d7b64fb4afa976d9cc, From entity, Value { r#type: Entity, value: "79e43124950544cb93d67b93ddd2fd3a" } +SetTriple: e1f7682a663c49d7b64fb4afa976d9cc, To entity, Value { r#type: Entity, value: "7e9b803c456c47c88a26d879e16d52ec" } +SetTriple: e1f7682a663c49d7b64fb4afa976d9cc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e1f7682a663c49d7b64fb4afa976d9cc, Index, Value { r#type: Text, value: "a0" } +SetTriple: e1f7682a663c49d7b64fb4afa976d9cc, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: f48aa34097074ba88b5b6dc42def2d99, From entity, Value { r#type: Entity, value: "2abfb81cb1354d16a455dc6813e64405" } +SetTriple: f48aa34097074ba88b5b6dc42def2d99, To entity, Value { r#type: Entity, value: "c4b9a30a92a945748f9b31c41eb8bbd8" } +SetTriple: f48aa34097074ba88b5b6dc42def2d99, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f48aa34097074ba88b5b6dc42def2d99, Index, Value { r#type: Text, value: "a0" } +SetTriple: f48aa34097074ba88b5b6dc42def2d99, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 7f5885a7a513435187579057796e5270, From entity, Value { r#type: Entity, value: "4a65923f16454702b50b5d063efe9cc8" } +SetTriple: 7f5885a7a513435187579057796e5270, To entity, Value { r#type: Entity, value: "c53929358a224ba2b035cbad8cdb60e1" } +SetTriple: 7f5885a7a513435187579057796e5270, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 83fad0b16b6e49249e5a6b8a29425c01, Name, Value { r#type: Text, value: "Government branch" } +SetTriple: 7e9b803c456c47c88a26d879e16d52ec, Name, Value { r#type: Text, value: "Enacted Legislation" } +SetTriple: c938baca50d0447396444846ce343d62, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f468b91f2788426b899c25d553d9a080, Index, Value { r#type: Text, value: "a0" } +SetTriple: 297c3ca0671d4bbeb6122bcfb3d4087d, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 297c3ca0671d4bbeb6122bcfb3d4087d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 297c3ca0671d4bbeb6122bcfb3d4087d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 297c3ca0671d4bbeb6122bcfb3d4087d, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 297c3ca0671d4bbeb6122bcfb3d4087d, From entity, Value { r#type: Entity, value: "83fad0b16b6e49249e5a6b8a29425c01" } +SetTriple: f09bce07f8bf4a56bf1d119362554e64, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 7f5885a7a513435187579057796e5270, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7f5885a7a513435187579057796e5270, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: d86b6ccfb3de4dd9961162783c809ee4, From entity, Value { r#type: Entity, value: "4a65923f16454702b50b5d063efe9cc8" } +SetTriple: d86b6ccfb3de4dd9961162783c809ee4, To entity, Value { r#type: Entity, value: "2bd4bd53ee974d37909a0c7a2bf62a9e" } +SetTriple: f09bce07f8bf4a56bf1d119362554e64, Index, Value { r#type: Text, value: "a0" } +SetTriple: f09bce07f8bf4a56bf1d119362554e64, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f09bce07f8bf4a56bf1d119362554e64, To entity, Value { r#type: Entity, value: "83fad0b16b6e49249e5a6b8a29425c01" } +SetTriple: f09bce07f8bf4a56bf1d119362554e64, From entity, Value { r#type: Entity, value: "c0ae7c77d33f41a8a8e6563c9d4f7ae6" } +SetTriple: 1946b0371a3046b9a6845e2b4f7b1236, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 1946b0371a3046b9a6845e2b4f7b1236, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1946b0371a3046b9a6845e2b4f7b1236, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1946b0371a3046b9a6845e2b4f7b1236, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 1946b0371a3046b9a6845e2b4f7b1236, From entity, Value { r#type: Entity, value: "83fad0b16b6e49249e5a6b8a29425c01" } +SetTriple: 5d1892bbeedc40b5a6c91096f293dfda, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 5d1892bbeedc40b5a6c91096f293dfda, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5d1892bbeedc40b5a6c91096f293dfda, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5d1892bbeedc40b5a6c91096f293dfda, To entity, Value { r#type: Entity, value: "e8010874d3304a4d990762e89a19371a" } +SetTriple: 5d1892bbeedc40b5a6c91096f293dfda, From entity, Value { r#type: Entity, value: "c0ae7c77d33f41a8a8e6563c9d4f7ae6" } +SetTriple: b91fd42cd01948d7ac49a1cc3e36d96e, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: b91fd42cd01948d7ac49a1cc3e36d96e, Index, Value { r#type: Text, value: "a0" } +SetTriple: b91fd42cd01948d7ac49a1cc3e36d96e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b91fd42cd01948d7ac49a1cc3e36d96e, To entity, Value { r#type: Entity, value: "c4b9a30a92a945748f9b31c41eb8bbd8" } +SetTriple: b91fd42cd01948d7ac49a1cc3e36d96e, From entity, Value { r#type: Entity, value: "c0ae7c77d33f41a8a8e6563c9d4f7ae6" } +SetTriple: c938baca50d0447396444846ce343d62, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: c938baca50d0447396444846ce343d62, Index, Value { r#type: Text, value: "a0" } +SetTriple: d86b6ccfb3de4dd9961162783c809ee4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d86b6ccfb3de4dd9961162783c809ee4, Index, Value { r#type: Text, value: "a0" } +SetTriple: d86b6ccfb3de4dd9961162783c809ee4, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 7a51ce07fb89449aa28744a54b621eb4, From entity, Value { r#type: Entity, value: "4a65923f16454702b50b5d063efe9cc8" } +SetTriple: 7a51ce07fb89449aa28744a54b621eb4, To entity, Value { r#type: Entity, value: "5e4911b82093411ea445bc2124d7f8e3" } +SetTriple: 7a51ce07fb89449aa28744a54b621eb4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7a51ce07fb89449aa28744a54b621eb4, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7a51ce07fb89449aa28744a54b621eb4, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 16149372f15d43daa485ed82d4b8e3d0, From entity, Value { r#type: Entity, value: "4a65923f16454702b50b5d063efe9cc8" } +SetTriple: 16149372f15d43daa485ed82d4b8e3d0, To entity, Value { r#type: Entity, value: "9687d8be2d76451c979a0f46a8dc8014" } +SetTriple: 16149372f15d43daa485ed82d4b8e3d0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 16149372f15d43daa485ed82d4b8e3d0, Index, Value { r#type: Text, value: "a0" } +SetTriple: 16149372f15d43daa485ed82d4b8e3d0, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 057e4104a93a48b2a8d438af750863e8, From entity, Value { r#type: Entity, value: "4a65923f16454702b50b5d063efe9cc8" } +SetTriple: 057e4104a93a48b2a8d438af750863e8, To entity, Value { r#type: Entity, value: "291982289bcf4fc08b088082687b2200" } +SetTriple: 057e4104a93a48b2a8d438af750863e8, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 057e4104a93a48b2a8d438af750863e8, Index, Value { r#type: Text, value: "a0" } +SetTriple: 057e4104a93a48b2a8d438af750863e8, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 67e41e3e47e442a394ac5c1b15cf9e20, From entity, Value { r#type: Entity, value: "2abfb81cb1354d16a455dc6813e64405" } +SetTriple: d0c75f5ec26f4b20947f3ca220f75563, Name, Value { r#type: Text, value: "Enacted Legislation" } +SetTriple: b5c3782e545944138d66c7803f447b03, Name, Value { r#type: Text, value: "Sponsored Legislation" } +SetTriple: c42c3544233e49a59f3a8688550ea668, Name, Value { r#type: Text, value: "Cosponsored Legislation" } +SetTriple: 874b21e5c5dc4b08bde00bccda6d8268, Name, Value { r#type: Text, value: "Legislative Votes" } +SetTriple: 07139daae92d4066b3bd9c74f7bcd0a9, Name, Value { r#type: Text, value: "Supported Voting Issues" } +SetTriple: Publisher, Name, Value { r#type: Text, value: "Publisher" } +SetTriple: f59698992238433f8aadf1537ab774f7, Name, Value { r#type: Text, value: "Political Institution" } +SetTriple: a1a4489a3ffc4279b0ce3d67d1cc0c5c, Name, Value { r#type: Text, value: "Regional Level" } +SetTriple: 8f92f3e4c2fd40f18ba87b63833a371d, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 8f92f3e4c2fd40f18ba87b63833a371d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8f92f3e4c2fd40f18ba87b63833a371d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8f92f3e4c2fd40f18ba87b63833a371d, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 8f92f3e4c2fd40f18ba87b63833a371d, From entity, Value { r#type: Entity, value: "a1a4489a3ffc4279b0ce3d67d1cc0c5c" } +SetTriple: 9f6fdf806d7f4407befa9f1e52f111de, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 9f6fdf806d7f4407befa9f1e52f111de, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9f6fdf806d7f4407befa9f1e52f111de, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9f6fdf806d7f4407befa9f1e52f111de, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 9f6fdf806d7f4407befa9f1e52f111de, From entity, Value { r#type: Entity, value: "a1a4489a3ffc4279b0ce3d67d1cc0c5c" } +SetTriple: 645c1644e84e4267b08d8b46f5b76d42, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 645c1644e84e4267b08d8b46f5b76d42, Index, Value { r#type: Text, value: "a0" } +SetTriple: 645c1644e84e4267b08d8b46f5b76d42, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 645c1644e84e4267b08d8b46f5b76d42, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 645c1644e84e4267b08d8b46f5b76d42, From entity, Value { r#type: Entity, value: "f59698992238433f8aadf1537ab774f7" } +SetTriple: 0ee5a6c6f7aa42dfb09de5f10c323c0c, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 0ee5a6c6f7aa42dfb09de5f10c323c0c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0ee5a6c6f7aa42dfb09de5f10c323c0c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0ee5a6c6f7aa42dfb09de5f10c323c0c, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 0ee5a6c6f7aa42dfb09de5f10c323c0c, From entity, Value { r#type: Entity, value: "f59698992238433f8aadf1537ab774f7" } +SetTriple: 9c45840bc144467fb3ef978193dffb08, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 67e41e3e47e442a394ac5c1b15cf9e20, To entity, Value { r#type: Entity, value: "b2ab96adccd843c29ce4643a765492fd" } +SetTriple: 67e41e3e47e442a394ac5c1b15cf9e20, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 67e41e3e47e442a394ac5c1b15cf9e20, Index, Value { r#type: Text, value: "a0" } +SetTriple: 67e41e3e47e442a394ac5c1b15cf9e20, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: ddc87b1bd6fa4423b0b090f0260f3d39, From entity, Value { r#type: Entity, value: "2abfb81cb1354d16a455dc6813e64405" } +SetTriple: ddc87b1bd6fa4423b0b090f0260f3d39, To entity, Value { r#type: Entity, value: "7fa816a3cb704534934888449869dc33" } +SetTriple: ddc87b1bd6fa4423b0b090f0260f3d39, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ddc87b1bd6fa4423b0b090f0260f3d39, Index, Value { r#type: Text, value: "a0" } +SetTriple: ddc87b1bd6fa4423b0b090f0260f3d39, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 61214c40e7884d0890be7f597e267168, From entity, Value { r#type: Entity, value: "2abfb81cb1354d16a455dc6813e64405" } +SetTriple: 61214c40e7884d0890be7f597e267168, To entity, Value { r#type: Entity, value: "e8010874d3304a4d990762e89a19371a" } +SetTriple: 61214c40e7884d0890be7f597e267168, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 61214c40e7884d0890be7f597e267168, Index, Value { r#type: Text, value: "a0" } +SetTriple: 61214c40e7884d0890be7f597e267168, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: a11a870b3fd84218a88522bd6bfa1b6f, From entity, Value { r#type: Entity, value: "682fbeff41e242cda7f9c4909136a8c5" } +SetTriple: a11a870b3fd84218a88522bd6bfa1b6f, To entity, Value { r#type: Entity, value: "26ccb6918cfc4b948ccc168564e2bfdf" } +SetTriple: a11a870b3fd84218a88522bd6bfa1b6f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a11a870b3fd84218a88522bd6bfa1b6f, Index, Value { r#type: Text, value: "a0" } +SetTriple: a11a870b3fd84218a88522bd6bfa1b6f, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 769a3a12113d4f37b612e3eafba7b9ee, From entity, Value { r#type: Entity, value: "682fbeff41e242cda7f9c4909136a8c5" } +SetTriple: 769a3a12113d4f37b612e3eafba7b9ee, To entity, Value { r#type: Entity, value: "e8010874d3304a4d990762e89a19371a" } +SetTriple: 769a3a12113d4f37b612e3eafba7b9ee, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 769a3a12113d4f37b612e3eafba7b9ee, Index, Value { r#type: Text, value: "a0" } +SetTriple: 769a3a12113d4f37b612e3eafba7b9ee, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 19367d6e1cad442da6d817aa2f4092c5, From entity, Value { r#type: Entity, value: "682fbeff41e242cda7f9c4909136a8c5" } +SetTriple: 19367d6e1cad442da6d817aa2f4092c5, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: 19367d6e1cad442da6d817aa2f4092c5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 19367d6e1cad442da6d817aa2f4092c5, Index, Value { r#type: Text, value: "a0" } +SetTriple: 19367d6e1cad442da6d817aa2f4092c5, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 1d2c040708b04e9da956f1944b5a3f31, From entity, Value { r#type: Entity, value: "f2b51833ffbe453d86b021563de7c946" } +SetTriple: 1d2c040708b04e9da956f1944b5a3f31, To entity, Value { r#type: Entity, value: "7fa816a3cb704534934888449869dc33" } +SetTriple: 1d2c040708b04e9da956f1944b5a3f31, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1d2c040708b04e9da956f1944b5a3f31, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1d2c040708b04e9da956f1944b5a3f31, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 00240fce0dec4fab8a54e3eda546b0c6, From entity, Value { r#type: Entity, value: "f2b51833ffbe453d86b021563de7c946" } +SetTriple: 00240fce0dec4fab8a54e3eda546b0c6, To entity, Value { r#type: Entity, value: "e8010874d3304a4d990762e89a19371a" } +SetTriple: 00240fce0dec4fab8a54e3eda546b0c6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 00240fce0dec4fab8a54e3eda546b0c6, Index, Value { r#type: Text, value: "a0" } +SetTriple: 00240fce0dec4fab8a54e3eda546b0c6, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: f43fcbb79b5f4cf09a484f911d93cb6f, From entity, Value { r#type: Entity, value: "d0c75f5ec26f4b20947f3ca220f75563" } +SetTriple: f43fcbb79b5f4cf09a484f911d93cb6f, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: f43fcbb79b5f4cf09a484f911d93cb6f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f43fcbb79b5f4cf09a484f911d93cb6f, Index, Value { r#type: Text, value: "a0" } +SetTriple: f43fcbb79b5f4cf09a484f911d93cb6f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 2ca0f2b4e84c44198cffce713c57cc6e, From entity, Value { r#type: Entity, value: "d0c75f5ec26f4b20947f3ca220f75563" } +SetTriple: 2ca0f2b4e84c44198cffce713c57cc6e, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 2ca0f2b4e84c44198cffce713c57cc6e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2ca0f2b4e84c44198cffce713c57cc6e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2ca0f2b4e84c44198cffce713c57cc6e, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 73cf3267b5954c5db89a6716e91e3bbb, From entity, Value { r#type: Entity, value: "b5c3782e545944138d66c7803f447b03" } +SetTriple: 73cf3267b5954c5db89a6716e91e3bbb, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 73cf3267b5954c5db89a6716e91e3bbb, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 73cf3267b5954c5db89a6716e91e3bbb, Index, Value { r#type: Text, value: "a0" } +SetTriple: 73cf3267b5954c5db89a6716e91e3bbb, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 0ec15adc28b4466b9ee86ac60766b5d1, From entity, Value { r#type: Entity, value: "b5c3782e545944138d66c7803f447b03" } +SetTriple: 0ec15adc28b4466b9ee86ac60766b5d1, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 0ec15adc28b4466b9ee86ac60766b5d1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0ec15adc28b4466b9ee86ac60766b5d1, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0ec15adc28b4466b9ee86ac60766b5d1, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 7b63ab0ff7f748438fe109b658df458d, From entity, Value { r#type: Entity, value: "c42c3544233e49a59f3a8688550ea668" } +SetTriple: 7b63ab0ff7f748438fe109b658df458d, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 7b63ab0ff7f748438fe109b658df458d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7b63ab0ff7f748438fe109b658df458d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7b63ab0ff7f748438fe109b658df458d, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 2bdce1de01ea457a92f5b7ec5c7a58e4, From entity, Value { r#type: Entity, value: "c42c3544233e49a59f3a8688550ea668" } +SetTriple: 2bdce1de01ea457a92f5b7ec5c7a58e4, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 2bdce1de01ea457a92f5b7ec5c7a58e4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2bdce1de01ea457a92f5b7ec5c7a58e4, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2bdce1de01ea457a92f5b7ec5c7a58e4, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 19668bdb1cfe424ea4330939e641bf51, From entity, Value { r#type: Entity, value: "874b21e5c5dc4b08bde00bccda6d8268" } +SetTriple: 19668bdb1cfe424ea4330939e641bf51, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 19668bdb1cfe424ea4330939e641bf51, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 19668bdb1cfe424ea4330939e641bf51, Index, Value { r#type: Text, value: "a0" } +SetTriple: 19668bdb1cfe424ea4330939e641bf51, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 1f38c055be124095a7898912b2b7ed8a, From entity, Value { r#type: Entity, value: "874b21e5c5dc4b08bde00bccda6d8268" } +SetTriple: 1f38c055be124095a7898912b2b7ed8a, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 1f38c055be124095a7898912b2b7ed8a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1f38c055be124095a7898912b2b7ed8a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9c45840bc144467fb3ef978193dffb08, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1f38c055be124095a7898912b2b7ed8a, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 9c45840bc144467fb3ef978193dffb08, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9c45840bc144467fb3ef978193dffb08, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 9c45840bc144467fb3ef978193dffb08, From entity, Value { r#type: Entity, value: "07139daae92d4066b3bd9c74f7bcd0a9" } +SetTriple: ab3e0a0cff3048e781c940f893b6f6f0, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: ab3e0a0cff3048e781c940f893b6f6f0, Index, Value { r#type: Text, value: "a0" } +SetTriple: ab3e0a0cff3048e781c940f893b6f6f0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ab3e0a0cff3048e781c940f893b6f6f0, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: ab3e0a0cff3048e781c940f893b6f6f0, From entity, Value { r#type: Entity, value: "07139daae92d4066b3bd9c74f7bcd0a9" } +SetTriple: dba117542d5e4df9806d726779c59b0e, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 5a94a32d826f4c2d912f61cf7bcfa3de, From entity, Value { r#type: Entity, value: "9438ee038c1145af9bf66b7ba8d4c1f3" } +SetTriple: 5a94a32d826f4c2d912f61cf7bcfa3de, To entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: 5a94a32d826f4c2d912f61cf7bcfa3de, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: dba117542d5e4df9806d726779c59b0e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5a94a32d826f4c2d912f61cf7bcfa3de, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5a94a32d826f4c2d912f61cf7bcfa3de, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 89accee9555543078b41cd2c891d7b14, From entity, Value { r#type: Entity, value: "9438ee038c1145af9bf66b7ba8d4c1f3" } +SetTriple: 89accee9555543078b41cd2c891d7b14, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 89accee9555543078b41cd2c891d7b14, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 89accee9555543078b41cd2c891d7b14, Index, Value { r#type: Text, value: "a0" } +SetTriple: 89accee9555543078b41cd2c891d7b14, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: dba117542d5e4df9806d726779c59b0e, From entity, Value { r#type: Entity, value: "9438ee038c1145af9bf66b7ba8d4c1f3" } +SetTriple: bc65aefd62e8476e89565423701258e0, From entity, Value { r#type: Entity, value: "9438ee038c1145af9bf66b7ba8d4c1f3" } +SetTriple: bc65aefd62e8476e89565423701258e0, To entity, Value { r#type: Entity, value: "043ac5aed65e45eca732ec409d3b10fc" } +SetTriple: bc65aefd62e8476e89565423701258e0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bc65aefd62e8476e89565423701258e0, Index, Value { r#type: Text, value: "a0" } +SetTriple: bc65aefd62e8476e89565423701258e0, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: c6f8c47f56f84d748ed3f687feab2f1b, From entity, Value { r#type: Entity, value: "9438ee038c1145af9bf66b7ba8d4c1f3" } +SetTriple: c6f8c47f56f84d748ed3f687feab2f1b, To entity, Value { r#type: Entity, value: "e40b39dc2853404b9d06bf89ee241afd" } +SetTriple: c6f8c47f56f84d748ed3f687feab2f1b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c6f8c47f56f84d748ed3f687feab2f1b, Index, Value { r#type: Text, value: "a0" } +SetTriple: c6f8c47f56f84d748ed3f687feab2f1b, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: dba117542d5e4df9806d726779c59b0e, To entity, Value { r#type: Entity, value: "7fa816a3cb704534934888449869dc33" } +SetTriple: dba117542d5e4df9806d726779c59b0e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4b50a93b53cb4d53ac1987ad1bd02dbd, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 4b50a93b53cb4d53ac1987ad1bd02dbd, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4b50a93b53cb4d53ac1987ad1bd02dbd, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4b50a93b53cb4d53ac1987ad1bd02dbd, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 4b50a93b53cb4d53ac1987ad1bd02dbd, From entity, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: a44686dc8fbf4aada5a1ff4e3b653e69, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6a04975600e74b54be74d1513b49b52d, From entity, Value { r#type: Entity, value: "a6c1f0ad86a24b789d28910a80f22dce" } +SetTriple: 6a04975600e74b54be74d1513b49b52d, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 6a04975600e74b54be74d1513b49b52d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6a04975600e74b54be74d1513b49b52d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6a04975600e74b54be74d1513b49b52d, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: a44686dc8fbf4aada5a1ff4e3b653e69, From entity, Value { r#type: Entity, value: "682fbeff41e242cda7f9c4909136a8c5" } +SetTriple: a44686dc8fbf4aada5a1ff4e3b653e69, To entity, Value { r#type: Entity, value: "a6c1f0ad86a24b789d28910a80f22dce" } +SetTriple: a44686dc8fbf4aada5a1ff4e3b653e69, Index, Value { r#type: Text, value: "a0" } +SetTriple: a44686dc8fbf4aada5a1ff4e3b653e69, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 8d83814b3ade48c7a9e6caafbee5a20b, From entity, Value { r#type: Entity, value: "a6c1f0ad86a24b789d28910a80f22dce" } +SetTriple: 8d83814b3ade48c7a9e6caafbee5a20b, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 8d83814b3ade48c7a9e6caafbee5a20b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8d83814b3ade48c7a9e6caafbee5a20b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8d83814b3ade48c7a9e6caafbee5a20b, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: a6c1f0ad86a24b789d28910a80f22dce, Name, Value { r#type: Text, value: "sub-post" } +SetTriple: 75f32b7f2f644a2f9d7d9a4483575be2, Index, Value { r#type: Text, value: "a0" } +SetTriple: 75f32b7f2f644a2f9d7d9a4483575be2, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 47666d02bae84c2692b525da2fbf460a, From entity, Value { r#type: Entity, value: "912c4d9504fc4d3cbc84382b3a1904d1" } +SetTriple: 47666d02bae84c2692b525da2fbf460a, To entity, Value { r#type: Entity, value: "71a5569e688e4e0f8eb0d8c361211e7c" } +SetTriple: 47666d02bae84c2692b525da2fbf460a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 47666d02bae84c2692b525da2fbf460a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 47666d02bae84c2692b525da2fbf460a, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 11ba8cf9d4964d33b77e8d67b79a52a2, From entity, Value { r#type: Entity, value: "912c4d9504fc4d3cbc84382b3a1904d1" } +SetTriple: 11ba8cf9d4964d33b77e8d67b79a52a2, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 11ba8cf9d4964d33b77e8d67b79a52a2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 75f32b7f2f644a2f9d7d9a4483575be2, To entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: 75f32b7f2f644a2f9d7d9a4483575be2, From entity, Value { r#type: Entity, value: "912c4d9504fc4d3cbc84382b3a1904d1" } +SetTriple: 833d6d3daf6447009159e2f0299517e8, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 833d6d3daf6447009159e2f0299517e8, To entity, Value { r#type: Entity, value: "edd686eff11d4855bd49d22822a3f434" } +SetTriple: 833d6d3daf6447009159e2f0299517e8, From entity, Value { r#type: Entity, value: "912c4d9504fc4d3cbc84382b3a1904d1" } +SetTriple: 11ba8cf9d4964d33b77e8d67b79a52a2, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 11ba8cf9d4964d33b77e8d67b79a52a2, Index, Value { r#type: Text, value: "a0" } +SetTriple: 75f32b7f2f644a2f9d7d9a4483575be2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 833d6d3daf6447009159e2f0299517e8, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 833d6d3daf6447009159e2f0299517e8, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4f372e0401cc4d489840bf14539e6e9b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4f372e0401cc4d489840bf14539e6e9b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4f372e0401cc4d489840bf14539e6e9b, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 4f372e0401cc4d489840bf14539e6e9b, From entity, Value { r#type: Entity, value: "8b07ea978d504aa38f15e4da8659f685" } +SetTriple: 8b07ea978d504aa38f15e4da8659f685, Name, Value { r#type: Text, value: "Service" } +SetTriple: 4f372e0401cc4d489840bf14539e6e9b, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 9e98d3c2c71343fe97ba0eb0869c1f9c, Name, Value { r#type: Text, value: "Address" } +SetTriple: f1af050224db4ce3891f317695ca8354, From entity, Value { r#type: Entity, value: "9e98d3c2c71343fe97ba0eb0869c1f9c" } +SetTriple: f1af050224db4ce3891f317695ca8354, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: f1af050224db4ce3891f317695ca8354, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f1af050224db4ce3891f317695ca8354, Index, Value { r#type: Text, value: "a0" } +SetTriple: f1af050224db4ce3891f317695ca8354, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: ca66b9e2f5cc45a5854cbd1bf4277936, From entity, Value { r#type: Entity, value: "b3b03c909b6d487cb2e2a7d685f120eb" } +SetTriple: ca66b9e2f5cc45a5854cbd1bf4277936, To entity, Value { r#type: Entity, value: "c4b9a30a92a945748f9b31c41eb8bbd8" } +SetTriple: ca66b9e2f5cc45a5854cbd1bf4277936, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ca66b9e2f5cc45a5854cbd1bf4277936, Index, Value { r#type: Text, value: "a0" } +SetTriple: ca66b9e2f5cc45a5854cbd1bf4277936, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: e37a2b6e1c844264b64893cc3c0232ce, Index, Value { r#type: Text, value: "a0" } +SetTriple: e37a2b6e1c844264b64893cc3c0232ce, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e37a2b6e1c844264b64893cc3c0232ce, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 0db47aca1ccf4c9fbeb689519ebe9eed, Name, Value { r#type: Text, value: "Related topics" } +SetTriple: e37a2b6e1c844264b64893cc3c0232ce, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 8756f26bc1b64de58a6998c9bca4a11e, From entity, Value { r#type: Entity, value: "1d7f027e415c4f69800e460fde65feb9" } +SetTriple: 8756f26bc1b64de58a6998c9bca4a11e, To entity, Value { r#type: Entity, value: "0db47aca1ccf4c9fbeb689519ebe9eed" } +SetTriple: 8756f26bc1b64de58a6998c9bca4a11e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8756f26bc1b64de58a6998c9bca4a11e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8756f26bc1b64de58a6998c9bca4a11e, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: cec307e78b1444968467c9c23d47e8d3, From entity, Value { r#type: Entity, value: "0db47aca1ccf4c9fbeb689519ebe9eed" } +SetTriple: cec307e78b1444968467c9c23d47e8d3, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: cec307e78b1444968467c9c23d47e8d3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: cec307e78b1444968467c9c23d47e8d3, Index, Value { r#type: Text, value: "a0" } +SetTriple: cec307e78b1444968467c9c23d47e8d3, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: e37a2b6e1c844264b64893cc3c0232ce, From entity, Value { r#type: Entity, value: "0db47aca1ccf4c9fbeb689519ebe9eed" } +SetTriple: 733d0d9271944ed08d2767f38cef5bdc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 733d0d9271944ed08d2767f38cef5bdc, Index, Value { r#type: Text, value: "a0" } +SetTriple: 733d0d9271944ed08d2767f38cef5bdc, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 58c48114c53640749c9a403ed724d633, From entity, Value { r#type: Entity, value: "d38a0fce0a114233b14788a53e1aab4b" } +SetTriple: 58c48114c53640749c9a403ed724d633, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: Claims, Name, Value { r#type: Text, value: "Claims from" } +SetTriple: 58c48114c53640749c9a403ed724d633, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d07fd4c281bc4d1490a1f85f6e6b6d96, Index, Value { r#type: Text, value: "a0" } +SetTriple: d07fd4c281bc4d1490a1f85f6e6b6d96, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 9ffd939451c441228c0ec83a1b957409, From entity, Value { r#type: Entity, value: "47b1ca0c2857467ab56aaf1deef6a177" } +SetTriple: 9ffd939451c441228c0ec83a1b957409, To entity, Value { r#type: Entity, value: "d38a0fce0a114233b14788a53e1aab4b" } +SetTriple: 9ffd939451c441228c0ec83a1b957409, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9ffd939451c441228c0ec83a1b957409, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9ffd939451c441228c0ec83a1b957409, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 58c48114c53640749c9a403ed724d633, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 58c48114c53640749c9a403ed724d633, Index, Value { r#type: Text, value: "a0" } +SetTriple: aef29bd995c74fcfa6f6d14b56320db6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: aef29bd995c74fcfa6f6d14b56320db6, Index, Value { r#type: Text, value: "a0" } +SetTriple: aef29bd995c74fcfa6f6d14b56320db6, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 733d0d9271944ed08d2767f38cef5bdc, From entity, Value { r#type: Entity, value: "55a7c6143622426a84568a493eed94b9" } +SetTriple: 733d0d9271944ed08d2767f38cef5bdc, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: d07fd4c281bc4d1490a1f85f6e6b6d96, To entity, Value { r#type: Entity, value: "d38a0fce0a114233b14788a53e1aab4b" } +SetTriple: d07fd4c281bc4d1490a1f85f6e6b6d96, From entity, Value { r#type: Entity, value: "3ae35a5902bc4420af6cdc9805e1d379" } +SetTriple: d07fd4c281bc4d1490a1f85f6e6b6d96, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 47b1ca0c2857467ab56aaf1deef6a177, Name, Value { r#type: Text, value: "Yes" } +SetTriple: 3ae35a5902bc4420af6cdc9805e1d379, Name, Value { r#type: Text, value: "No" } +SetTriple: d38a0fce0a114233b14788a53e1aab4b, Name, Value { r#type: Text, value: "Yes/No" } +SetTriple: 55a7c6143622426a84568a493eed94b9, Name, Value { r#type: Text, value: "Claims about" } +SetTriple: aef29bd995c74fcfa6f6d14b56320db6, From entity, Value { r#type: Entity, value: "55a7c6143622426a84568a493eed94b9" } +SetTriple: aef29bd995c74fcfa6f6d14b56320db6, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: cfcc72b0375e40658c5ebfec21613529, To entity, Value { r#type: Entity, value: "6904c3bbed784ee9aa6075028dbdc2cd" } +SetTriple: cfcc72b0375e40658c5ebfec21613529, Index, Value { r#type: Text, value: "a0" } +SetTriple: cfcc72b0375e40658c5ebfec21613529, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: cfcc72b0375e40658c5ebfec21613529, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: cfcc72b0375e40658c5ebfec21613529, From entity, Value { r#type: Entity, value: "912c4d9504fc4d3cbc84382b3a1904d1" } +SetTriple: Action, Name, Value { r#type: Text, value: "Activity" } +SetTriple: Current role, Name, Value { r#type: Text, value: "Current roles" } +SetTriple: 7fa7701ec33246f6ad93dea025ba317e, Name, Value { r#type: Text, value: "Hosts" } +SetTriple: 0ce5e9a6ec3f4dc1b48ca10b9f337f8e, Name, Value { r#type: Text, value: "Debaters" } +SetTriple: f5df623b504e48048d0f3df6adb10610, Name, Value { r#type: Text, value: "Debate" } +SetTriple: 2005b87f8bfe433c9a20da1676b428f6, From entity, Value { r#type: Entity, value: "f5df623b504e48048d0f3df6adb10610" } +SetTriple: 2005b87f8bfe433c9a20da1676b428f6, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 2005b87f8bfe433c9a20da1676b428f6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2005b87f8bfe433c9a20da1676b428f6, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2005b87f8bfe433c9a20da1676b428f6, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: d9a777465a6d4a9a8e51253ae7d4253d, From entity, Value { r#type: Entity, value: "f5df623b504e48048d0f3df6adb10610" } +SetTriple: d9a777465a6d4a9a8e51253ae7d4253d, To entity, Value { r#type: Entity, value: "7fa7701ec33246f6ad93dea025ba317e" } +SetTriple: d9a777465a6d4a9a8e51253ae7d4253d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d9a777465a6d4a9a8e51253ae7d4253d, Index, Value { r#type: Text, value: "a0" } +SetTriple: d9a777465a6d4a9a8e51253ae7d4253d, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 0185196f8938494db6827d1fcaba6dc2, From entity, Value { r#type: Entity, value: "f5df623b504e48048d0f3df6adb10610" } +SetTriple: 0185196f8938494db6827d1fcaba6dc2, To entity, Value { r#type: Entity, value: "0ce5e9a6ec3f4dc1b48ca10b9f337f8e" } +SetTriple: 0185196f8938494db6827d1fcaba6dc2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0185196f8938494db6827d1fcaba6dc2, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0185196f8938494db6827d1fcaba6dc2, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 78336e3dfc2f4236906bb0d8384fbf91, From entity, Value { r#type: Entity, value: "f5df623b504e48048d0f3df6adb10610" } +SetTriple: 78336e3dfc2f4236906bb0d8384fbf91, To entity, Value { r#type: Entity, value: "c9935cc57e2e4be68c3cd7acc6ed7b12" } +SetTriple: 78336e3dfc2f4236906bb0d8384fbf91, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 78336e3dfc2f4236906bb0d8384fbf91, Index, Value { r#type: Text, value: "a0" } +SetTriple: 78336e3dfc2f4236906bb0d8384fbf91, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: d76184edbb8e40c689254525ad13545a, From entity, Value { r#type: Entity, value: "f5df623b504e48048d0f3df6adb10610" } +SetTriple: d76184edbb8e40c689254525ad13545a, To entity, Value { r#type: Entity, value: "e77065f3fec741d989ed86ab01d4e999" } +SetTriple: d76184edbb8e40c689254525ad13545a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d76184edbb8e40c689254525ad13545a, Index, Value { r#type: Text, value: "a0" } +SetTriple: d76184edbb8e40c689254525ad13545a, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 8fc7511e5aa443a38504e05539cd9aa4, From entity, Value { r#type: Entity, value: "0ce5e9a6ec3f4dc1b48ca10b9f337f8e" } +SetTriple: 8fc7511e5aa443a38504e05539cd9aa4, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 8fc7511e5aa443a38504e05539cd9aa4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8fc7511e5aa443a38504e05539cd9aa4, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8fc7511e5aa443a38504e05539cd9aa4, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: bd57a1ca80114d349f1a72bab6dcbcdf, From entity, Value { r#type: Entity, value: "7fa7701ec33246f6ad93dea025ba317e" } +SetTriple: bd57a1ca80114d349f1a72bab6dcbcdf, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: bd57a1ca80114d349f1a72bab6dcbcdf, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bd57a1ca80114d349f1a72bab6dcbcdf, Index, Value { r#type: Text, value: "a0" } +SetTriple: bd57a1ca80114d349f1a72bab6dcbcdf, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: fd6bc968472749bbb61614bcf62b810e, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: fd6bc968472749bbb61614bcf62b810e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: fd6bc968472749bbb61614bcf62b810e, Index, Value { r#type: Text, value: "a0" } +SetTriple: fd6bc968472749bbb61614bcf62b810e, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: ee19ef5c4d66435e89ef404280455911, From entity, Value { r#type: Entity, value: "0ce5e9a6ec3f4dc1b48ca10b9f337f8e" } +SetTriple: ee19ef5c4d66435e89ef404280455911, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: ee19ef5c4d66435e89ef404280455911, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ee19ef5c4d66435e89ef404280455911, Index, Value { r#type: Text, value: "a0" } +SetTriple: ee19ef5c4d66435e89ef404280455911, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: fd6bc968472749bbb61614bcf62b810e, From entity, Value { r#type: Entity, value: "7fa7701ec33246f6ad93dea025ba317e" } +SetTriple: ee498149704b431388b6f196d04a856d, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: ee498149704b431388b6f196d04a856d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ee498149704b431388b6f196d04a856d, Index, Value { r#type: Text, value: "a0" } +SetTriple: ee498149704b431388b6f196d04a856d, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: ac0dc3bf85f7469dbd4b8692bc1bdf99, Name, Value { r#type: Text, value: "Transcript" } +SetTriple: ca6fff44601247ac88e0e95d4b844226, To entity, Value { r#type: Entity, value: "912c4d9504fc4d3cbc84382b3a1904d1" } +SetTriple: ca6fff44601247ac88e0e95d4b844226, From entity, Value { r#type: Entity, value: "0ce5e9a6ec3f4dc1b48ca10b9f337f8e" } +SetTriple: ca6fff44601247ac88e0e95d4b844226, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ca6fff44601247ac88e0e95d4b844226, Index, Value { r#type: Text, value: "a0" } +SetTriple: ca6fff44601247ac88e0e95d4b844226, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 35a24e908dcb4b449e3531b33d2f10d9, From entity, Value { r#type: Entity, value: "0ce5e9a6ec3f4dc1b48ca10b9f337f8e" } +SetTriple: 35a24e908dcb4b449e3531b33d2f10d9, To entity, Value { r#type: Entity, value: "79e43124950544cb93d67b93ddd2fd3a" } +SetTriple: 35a24e908dcb4b449e3531b33d2f10d9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 35a24e908dcb4b449e3531b33d2f10d9, Index, Value { r#type: Text, value: "a0" } +SetTriple: 35a24e908dcb4b449e3531b33d2f10d9, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: ee498149704b431388b6f196d04a856d, From entity, Value { r#type: Entity, value: "ac0dc3bf85f7469dbd4b8692bc1bdf99" } +SetTriple: 3a3bffcb4e0a4554aa7aa3d26d883212, To entity, Value { r#type: Entity, value: "1160ed82001d4d15a998b9044ea7d213" } +SetTriple: 4aa5db6e5af744ab87b881b3ba0138d1, Description, Value { r#type: Text, value: "Geography specific " } +SetTriple: Nonprofit category, Name, Value { r#type: Text, value: "Nonprofit " } +SetTriple: Low Income: Childcare, Youth, Family, Parenting, Elderly, Special Needs...services, Name, Value { r#type: Text, value: "Low Income" } +SetTriple: Homeless (Stage 5): Personal development, Life skills, peer-groups, workshops, trainings,,,, Name, Value { r#type: Text, value: "Homeless Assistance" } +SetTriple: Homeless (Stage 6): Re-entry, Education, Job Skills, Employment, Career Development...Self-sustaining , Name, Value { r#type: Text, value: "Homeless Re-entry " } +SetTriple: Homeless (Stage 3): Case Worker, Mentor, 'Client-centric' personal plan.., Name, Value { r#type: Text, value: "Homeless Workers" } +SetTriple: Homeless Prevention (Stage 7): After-care, Thriving enablement, Giving back... , Name, Value { r#type: Text, value: "Homeless Prevention" } +SetTriple: 3a3bffcb4e0a4554aa7aa3d26d883212, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 3a3bffcb4e0a4554aa7aa3d26d883212, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4aa5db6e5af744ab87b881b3ba0138d1, Name, Value { r#type: Text, value: "Location" } +SetTriple: Crisis Intervention and Abuse Treatment, Name, Value { r#type: Text, value: "Abuse and Intervention" } +SetTriple: 3a3bffcb4e0a4554aa7aa3d26d883212, From entity, Value { r#type: Entity, value: "4aa5db6e5af744ab87b881b3ba0138d1" } +SetTriple: 3a3bffcb4e0a4554aa7aa3d26d883212, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6c5ad781f4564140bcf1279d423553fc, From entity, Value { r#type: Entity, value: "4aa5db6e5af744ab87b881b3ba0138d1" } +SetTriple: 6c5ad781f4564140bcf1279d423553fc, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 6c5ad781f4564140bcf1279d423553fc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6c5ad781f4564140bcf1279d423553fc, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6c5ad781f4564140bcf1279d423553fc, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 62f2cc0a438a4e169a7b17139073e5be, From entity, Value { r#type: Entity, value: "4aa5db6e5af744ab87b881b3ba0138d1" } +SetTriple: 62f2cc0a438a4e169a7b17139073e5be, To entity, Value { r#type: Entity, value: "eb1b8bbc23a94bbd98f0f8b4a2c9ad6d" } +SetTriple: 62f2cc0a438a4e169a7b17139073e5be, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 62f2cc0a438a4e169a7b17139073e5be, Index, Value { r#type: Text, value: "a0" } +SetTriple: 62f2cc0a438a4e169a7b17139073e5be, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: Homeless (Stage 2): Street outreach, Assisting Services (Hygiene, Medical, Mental Health, Transportation, Housing...), Name, Value { r#type: Text, value: "Homeless street programs" } +SetTriple: Homeless (Stage 4): 'Process-centric' program, Goal-driven behavior modifications, Addiction care...., Name, Value { r#type: Text, value: "Homeless programs of care" } +SetTriple: 73c56a5c67cd4251bc9a6b44b93f1507, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ba7d1075ea4945948c5612aeb05e49a1, From entity, Value { r#type: Entity, value: "f5df623b504e48048d0f3df6adb10610" } +SetTriple: ba7d1075ea4945948c5612aeb05e49a1, To entity, Value { r#type: Entity, value: "55a7c6143622426a84568a493eed94b9" } +SetTriple: ba7d1075ea4945948c5612aeb05e49a1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ba7d1075ea4945948c5612aeb05e49a1, Index, Value { r#type: Text, value: "a0" } +SetTriple: ba7d1075ea4945948c5612aeb05e49a1, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: beee0cb2f85f49e7a8f6b00e4dbada6c, From entity, Value { r#type: Entity, value: "f5df623b504e48048d0f3df6adb10610" } +SetTriple: beee0cb2f85f49e7a8f6b00e4dbada6c, To entity, Value { r#type: Entity, value: "7fa816a3cb704534934888449869dc33" } +SetTriple: beee0cb2f85f49e7a8f6b00e4dbada6c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: beee0cb2f85f49e7a8f6b00e4dbada6c, Index, Value { r#type: Text, value: "a0" } +SetTriple: beee0cb2f85f49e7a8f6b00e4dbada6c, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 73c56a5c67cd4251bc9a6b44b93f1507, From entity, Value { r#type: Entity, value: "697e4766e75c4a0f9131036cc85a3b6b" } +SetTriple: 73c56a5c67cd4251bc9a6b44b93f1507, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 73c56a5c67cd4251bc9a6b44b93f1507, Index, Value { r#type: Text, value: "a0" } +SetTriple: 73c56a5c67cd4251bc9a6b44b93f1507, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 5199522a42f243cdb7e144c7eedae609, From entity, Value { r#type: Entity, value: "697e4766e75c4a0f9131036cc85a3b6b" } +SetTriple: 5199522a42f243cdb7e144c7eedae609, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 5199522a42f243cdb7e144c7eedae609, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5199522a42f243cdb7e144c7eedae609, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5199522a42f243cdb7e144c7eedae609, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 697e4766e75c4a0f9131036cc85a3b6b, Name, Value { r#type: Text, value: "Politician" } +SetTriple: d52899d95967474d96f3ff937a823677, To entity, Value { r#type: Entity, value: "912c4d9504fc4d3cbc84382b3a1904d1" } +SetTriple: d52899d95967474d96f3ff937a823677, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d52899d95967474d96f3ff937a823677, Index, Value { r#type: Text, value: "a0" } +SetTriple: d52899d95967474d96f3ff937a823677, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: f3f6fdbdabf54bd2ac66c9c2dc6cb102, From entity, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: Politician, Name, Value { r#type: Text, value: "Politicians" } +SetTriple: f3f6fdbdabf54bd2ac66c9c2dc6cb102, To entity, Value { r#type: Entity, value: "79e43124950544cb93d67b93ddd2fd3a" } +SetTriple: f3f6fdbdabf54bd2ac66c9c2dc6cb102, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f3f6fdbdabf54bd2ac66c9c2dc6cb102, Index, Value { r#type: Text, value: "a0" } +SetTriple: f3f6fdbdabf54bd2ac66c9c2dc6cb102, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: d52899d95967474d96f3ff937a823677, From entity, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 6d8b2d59fc0c4835af26b30e59f3be2a, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 947f6ccbfcae426d89a1ea164f227685, From entity, Value { r#type: Entity, value: "ad1598efc7674e4fa70cbe6bfae70e2b" } +SetTriple: 947f6ccbfcae426d89a1ea164f227685, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 947f6ccbfcae426d89a1ea164f227685, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 947f6ccbfcae426d89a1ea164f227685, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4101c52cdd524864abb70208712df496, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: feb48f93d5e94ad58567ea8353998e52, Description, Value { r#type: Text, value: "" } +SetTriple: 4101c52cdd524864abb70208712df496, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 4101c52cdd524864abb70208712df496, From entity, Value { r#type: Entity, value: "feb48f93d5e94ad58567ea8353998e52" } +SetTriple: b7ff2edbd98f4f439f5e24928e8bb81f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: b7ff2edbd98f4f439f5e24928e8bb81f, Index, Value { r#type: Text, value: "a0" } +SetTriple: b7ff2edbd98f4f439f5e24928e8bb81f, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 8ba973ae0443457ca4ed2ea4f6f101ce, Name, Value { r#type: Text, value: "Voting positions" } +SetTriple: ad1598efc7674e4fa70cbe6bfae70e2b, Name, Value { r#type: Text, value: "Voting positions" } +SetTriple: c8ec5342083f4c71bb72db66c610ee19, Name, Value { r#type: Text, value: "Restaurant" } +SetTriple: f496c0697cf946bbbc4ad4040bca433b, Name, Value { r#type: Text, value: "Hotel" } +SetTriple: b8fcd15d28574a039e3ec5dab3cad36a, Name, Value { r#type: Text, value: "Park" } +SetTriple: 05dc22aa533847b887ebbfcd24a78de9, Name, Value { r#type: Text, value: "Train station" } +SetTriple: 5bc939aa6c834bd1870f7c0acfa48844, Name, Value { r#type: Text, value: "Airport" } +SetTriple: 4101c52cdd524864abb70208712df496, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 4101c52cdd524864abb70208712df496, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4e1966c79f51435284b630151ec2d3e5, Name, Value { r#type: Text, value: "Tourist office" } +SetTriple: feb48f93d5e94ad58567ea8353998e52, Name, Value { r#type: Text, value: "Quotes from" } +SetTriple: 947f6ccbfcae426d89a1ea164f227685, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 6ea3dede985a4db986c309c963ceecef, From entity, Value { r#type: Entity, value: "c8ec5342083f4c71bb72db66c610ee19" } +SetTriple: 6ea3dede985a4db986c309c963ceecef, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 6ea3dede985a4db986c309c963ceecef, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6ea3dede985a4db986c309c963ceecef, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6ea3dede985a4db986c309c963ceecef, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 756d006a829f46f5bc5d2b5f01897938, From entity, Value { r#type: Entity, value: "f496c0697cf946bbbc4ad4040bca433b" } +SetTriple: 756d006a829f46f5bc5d2b5f01897938, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 756d006a829f46f5bc5d2b5f01897938, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 756d006a829f46f5bc5d2b5f01897938, Index, Value { r#type: Text, value: "a0" } +SetTriple: b7ff2edbd98f4f439f5e24928e8bb81f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 756d006a829f46f5bc5d2b5f01897938, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 7958295ed04c4b40b1c3fda30e4b1ca9, From entity, Value { r#type: Entity, value: "5bc939aa6c834bd1870f7c0acfa48844" } +SetTriple: 7958295ed04c4b40b1c3fda30e4b1ca9, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 7958295ed04c4b40b1c3fda30e4b1ca9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7958295ed04c4b40b1c3fda30e4b1ca9, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 7958295ed04c4b40b1c3fda30e4b1ca9, Index, Value { r#type: Text, value: "a0" } +SetTriple: b7ff2edbd98f4f439f5e24928e8bb81f, From entity, Value { r#type: Entity, value: "4e1966c79f51435284b630151ec2d3e5" } +SetTriple: 17c9f791e55d4335bb9b3861282075be, From entity, Value { r#type: Entity, value: "79e43124950544cb93d67b93ddd2fd3a" } +SetTriple: 17c9f791e55d4335bb9b3861282075be, To entity, Value { r#type: Entity, value: "8ba973ae0443457ca4ed2ea4f6f101ce" } +SetTriple: 17c9f791e55d4335bb9b3861282075be, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 17c9f791e55d4335bb9b3861282075be, Index, Value { r#type: Text, value: "a0" } +SetTriple: 17c9f791e55d4335bb9b3861282075be, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 6d8b2d59fc0c4835af26b30e59f3be2a, From entity, Value { r#type: Entity, value: "8ba973ae0443457ca4ed2ea4f6f101ce" } +SetTriple: 6d8b2d59fc0c4835af26b30e59f3be2a, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 6d8b2d59fc0c4835af26b30e59f3be2a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6d8b2d59fc0c4835af26b30e59f3be2a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8974b7f8331948a5a2a64362cf54a749, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a71f8d03a78f44229080bcbe6bfa0cda, Name, Value { r#type: Text, value: "Political campaigns" } +SetTriple: 8a2ee6437afe4610a050b7bcfdcfa54b, Name, Value { r#type: Text, value: "Parties" } +SetTriple: c881cb2426cc4b03871d8ded043fba84, Name, Value { r#type: Text, value: "Elections" } +SetTriple: 56ce4b4e3d6f4ddbaffe5acede4ab83b, Name, Value { r#type: Text, value: "Broader voting positions" } +SetTriple: 4f9502cab2de4b3aa8bd352295c39f48, Name, Value { r#type: Text, value: "Legislations" } +SetTriple: f1f53d5384f244579bd691b4aea7a490, Name, Value { r#type: Text, value: "Controversy" } +SetTriple: 68ee14807b774f53b02c94422749b36f, Name, Value { r#type: Text, value: "Election" } +SetTriple: abf54171e51945528db1ff6f2ed05e54, Name, Value { r#type: Text, value: "Political event" } +SetTriple: c64f9303c4d74a3dbc1e343fe4be86b5, Name, Value { r#type: Text, value: "Political campaign" } +SetTriple: 6a9be4e6d2914a83a0bd177169798f18, Name, Value { r#type: Text, value: "Signed into law" } +SetTriple: c0ebfcc2389b4d4ea64a750f34dfe4a2, From entity, Value { r#type: Entity, value: "8a2ee6437afe4610a050b7bcfdcfa54b" } +SetTriple: c0ebfcc2389b4d4ea64a750f34dfe4a2, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: c0ebfcc2389b4d4ea64a750f34dfe4a2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c0ebfcc2389b4d4ea64a750f34dfe4a2, Index, Value { r#type: Text, value: "a0" } +SetTriple: c0ebfcc2389b4d4ea64a750f34dfe4a2, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 4a7c3f0b5b274ff3a9e5279e51979d30, From entity, Value { r#type: Entity, value: "8a2ee6437afe4610a050b7bcfdcfa54b" } +SetTriple: 4a7c3f0b5b274ff3a9e5279e51979d30, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 4a7c3f0b5b274ff3a9e5279e51979d30, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4a7c3f0b5b274ff3a9e5279e51979d30, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4a7c3f0b5b274ff3a9e5279e51979d30, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 0b53ec0276444562a6bd26fbd4c47ad4, From entity, Value { r#type: Entity, value: "c881cb2426cc4b03871d8ded043fba84" } +SetTriple: 0b53ec0276444562a6bd26fbd4c47ad4, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 0b53ec0276444562a6bd26fbd4c47ad4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0b53ec0276444562a6bd26fbd4c47ad4, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0b53ec0276444562a6bd26fbd4c47ad4, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: d3b65931f6ff4aad814bc2b553a10bcd, From entity, Value { r#type: Entity, value: "c881cb2426cc4b03871d8ded043fba84" } +SetTriple: d3b65931f6ff4aad814bc2b553a10bcd, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: d3b65931f6ff4aad814bc2b553a10bcd, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d3b65931f6ff4aad814bc2b553a10bcd, Index, Value { r#type: Text, value: "a0" } +SetTriple: d3b65931f6ff4aad814bc2b553a10bcd, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 6db247d7d0be41cfac06e5bab21eefa2, From entity, Value { r#type: Entity, value: "56ce4b4e3d6f4ddbaffe5acede4ab83b" } +SetTriple: 6db247d7d0be41cfac06e5bab21eefa2, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 6db247d7d0be41cfac06e5bab21eefa2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6db247d7d0be41cfac06e5bab21eefa2, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6db247d7d0be41cfac06e5bab21eefa2, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 20804bcf4f6246d7bb2afd01b6c672b7, From entity, Value { r#type: Entity, value: "56ce4b4e3d6f4ddbaffe5acede4ab83b" } +SetTriple: 20804bcf4f6246d7bb2afd01b6c672b7, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 20804bcf4f6246d7bb2afd01b6c672b7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 20804bcf4f6246d7bb2afd01b6c672b7, Index, Value { r#type: Text, value: "a0" } +SetTriple: 20804bcf4f6246d7bb2afd01b6c672b7, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 95668db4fa6947958459cdb101272999, From entity, Value { r#type: Entity, value: "a71f8d03a78f44229080bcbe6bfa0cda" } +SetTriple: 95668db4fa6947958459cdb101272999, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 95668db4fa6947958459cdb101272999, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 95668db4fa6947958459cdb101272999, Index, Value { r#type: Text, value: "a0" } +SetTriple: 95668db4fa6947958459cdb101272999, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 18033884100340f89372b77c7da1dddd, From entity, Value { r#type: Entity, value: "a71f8d03a78f44229080bcbe6bfa0cda" } +SetTriple: 18033884100340f89372b77c7da1dddd, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 18033884100340f89372b77c7da1dddd, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 18033884100340f89372b77c7da1dddd, Index, Value { r#type: Text, value: "a0" } +SetTriple: 18033884100340f89372b77c7da1dddd, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 178c2a22297a4ea3b4e658bfd95e174b, From entity, Value { r#type: Entity, value: "4f9502cab2de4b3aa8bd352295c39f48" } +SetTriple: 178c2a22297a4ea3b4e658bfd95e174b, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 178c2a22297a4ea3b4e658bfd95e174b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 178c2a22297a4ea3b4e658bfd95e174b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 178c2a22297a4ea3b4e658bfd95e174b, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 671ea834eceb4b5abb58bbd64f050b1a, From entity, Value { r#type: Entity, value: "4f9502cab2de4b3aa8bd352295c39f48" } +SetTriple: 671ea834eceb4b5abb58bbd64f050b1a, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 671ea834eceb4b5abb58bbd64f050b1a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 671ea834eceb4b5abb58bbd64f050b1a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 671ea834eceb4b5abb58bbd64f050b1a, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: c5fd7f9572224f11b785e80fd12263d1, From entity, Value { r#type: Entity, value: "f1f53d5384f244579bd691b4aea7a490" } +SetTriple: c5fd7f9572224f11b785e80fd12263d1, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: c5fd7f9572224f11b785e80fd12263d1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c5fd7f9572224f11b785e80fd12263d1, Index, Value { r#type: Text, value: "a0" } +SetTriple: c5fd7f9572224f11b785e80fd12263d1, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 341b0d6d89584f35bb995f97b40fdec0, From entity, Value { r#type: Entity, value: "f1f53d5384f244579bd691b4aea7a490" } +SetTriple: 341b0d6d89584f35bb995f97b40fdec0, To entity, Value { r#type: Entity, value: "697e4766e75c4a0f9131036cc85a3b6b" } +SetTriple: 341b0d6d89584f35bb995f97b40fdec0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 341b0d6d89584f35bb995f97b40fdec0, Index, Value { r#type: Text, value: "a0" } +SetTriple: 341b0d6d89584f35bb995f97b40fdec0, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: dce478550e314b109c1cec97d58a1d06, From entity, Value { r#type: Entity, value: "68ee14807b774f53b02c94422749b36f" } +SetTriple: dce478550e314b109c1cec97d58a1d06, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: dce478550e314b109c1cec97d58a1d06, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: dce478550e314b109c1cec97d58a1d06, Index, Value { r#type: Text, value: "a0" } +SetTriple: dce478550e314b109c1cec97d58a1d06, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 8974b7f8331948a5a2a64362cf54a749, From entity, Value { r#type: Entity, value: "abf54171e51945528db1ff6f2ed05e54" } +SetTriple: 8974b7f8331948a5a2a64362cf54a749, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 8974b7f8331948a5a2a64362cf54a749, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8974b7f8331948a5a2a64362cf54a749, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 3185db3fec1f4174ab63dd52392b5dd4, From entity, Value { r#type: Entity, value: "c64f9303c4d74a3dbc1e343fe4be86b5" } +SetTriple: 3185db3fec1f4174ab63dd52392b5dd4, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 3185db3fec1f4174ab63dd52392b5dd4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3185db3fec1f4174ab63dd52392b5dd4, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3185db3fec1f4174ab63dd52392b5dd4, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 80606e492fb0441b8b9adebbdc5aafc8, From entity, Value { r#type: Entity, value: "6a9be4e6d2914a83a0bd177169798f18" } +SetTriple: 80606e492fb0441b8b9adebbdc5aafc8, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 80606e492fb0441b8b9adebbdc5aafc8, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 80606e492fb0441b8b9adebbdc5aafc8, Index, Value { r#type: Text, value: "a0" } +SetTriple: 80606e492fb0441b8b9adebbdc5aafc8, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: e6e6d1b50aba4890b376f7f201ed9df4, From entity, Value { r#type: Entity, value: "6a9be4e6d2914a83a0bd177169798f18" } +SetTriple: e6e6d1b50aba4890b376f7f201ed9df4, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: e6e6d1b50aba4890b376f7f201ed9df4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e6e6d1b50aba4890b376f7f201ed9df4, Index, Value { r#type: Text, value: "a0" } +SetTriple: e6e6d1b50aba4890b376f7f201ed9df4, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 1a13fc95a9394e70977d644d176b7a77, From entity, Value { r#type: Entity, value: "7ec3d462c754460fa8d17f3cb2d04895" } +SetTriple: 1a13fc95a9394e70977d644d176b7a77, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7ec3d462c754460fa8d17f3cb2d04895, Name, Value { r#type: Text, value: "Top-level" } +SetTriple: 1a13fc95a9394e70977d644d176b7a77, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1a13fc95a9394e70977d644d176b7a77, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 1a13fc95a9394e70977d644d176b7a77, To entity, Value { r#type: Entity, value: "3d31f766b65148afa357271343a773de" } +SetTriple: 7eeeb22fc1f742e9a793a40765dc2f84, Image, Value { r#type: Text, value: "ipfs://QmSSswW6vGD2vVejEoTSaD6VzuafKRBtJostAzeBakwbtF" } +SetTriple: 7eeeb22fc1f742e9a793a40765dc2f84, Indexed Space Address, Value { r#type: Text, value: "0xd93A5fCf65b520BA24364682aCcf50dd2F9aC18B" } +SetTriple: 7eeeb22fc1f742e9a793a40765dc2f84, Name, Value { r#type: Text, value: "Agriculture" } +SetTriple: 1844467c2c7a4af0ad623f2db9feff2d, From entity, Value { r#type: Entity, value: "7eeeb22fc1f742e9a793a40765dc2f84" } +SetTriple: 1844467c2c7a4af0ad623f2db9feff2d, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: 1844467c2c7a4af0ad623f2db9feff2d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1844467c2c7a4af0ad623f2db9feff2d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1844467c2c7a4af0ad623f2db9feff2d, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: b644369b303b4999bbda8fd9c6e38fd7, Image, Value { r#type: Text, value: "ipfs://QmbpjviGmvEDgEfL2uWENWNLiAMNr3xTJVoGYBsuz8m2Bz" } +SetTriple: f6120b68376348e9804648bf0e6e439a, Index, Value { r#type: Text, value: "a0" } +SetTriple: f6120b68376348e9804648bf0e6e439a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f6120b68376348e9804648bf0e6e439a, From entity, Value { r#type: Entity, value: "b644369b303b4999bbda8fd9c6e38fd7" } +SetTriple: f6120b68376348e9804648bf0e6e439a, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: b644369b303b4999bbda8fd9c6e38fd7, Name, Value { r#type: Text, value: "Books" } +SetTriple: f6120b68376348e9804648bf0e6e439a, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: Books, Indexed Space Address, Value { r#type: Text, value: "0x96543F995669446ECB91aE84A6e564242eE0af39" } +SetTriple: 481b1d7306d445f696227078bc65c55c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 481b1d7306d445f696227078bc65c55c, From entity, Value { r#type: Entity, value: "efb85a90b2ae4eef8053ffc733dc4a93" } +SetTriple: efb85a90b2ae4eef8053ffc733dc4a93, Indexed Space Address, Value { r#type: Text, value: "0x4b6c1BCBB27CC1F8FaCb1Db263cc3bB3cc95587f" } +SetTriple: efb85a90b2ae4eef8053ffc733dc4a93, Name, Value { r#type: Text, value: "Employment" } +SetTriple: Employment, Image, Value { r#type: Text, value: "ipfs://QmVBntbYiWgMsSJwko2Mc2MWy3pQRLsfWrYK7w3y9RQ3yF" } +SetTriple: 481b1d7306d445f696227078bc65c55c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 481b1d7306d445f696227078bc65c55c, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 481b1d7306d445f696227078bc65c55c, To entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: 6548768ed18047b28e9c823f390e205c, Name, Value { r#type: Text, value: "Podcast" } +SetTriple: 453747e798d444cdb227272d0a85f2a3, Description, Value { r#type: Text, value: "Refers to the title of the book in its original language, or the title that was given to the book when it was first written by the author. " } +SetTriple: 453747e798d444cdb227272d0a85f2a3, Name, Value { r#type: Text, value: "Original title" } +SetTriple: 2f57b2673a0846eaa980737f0cc5490f, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 2f57b2673a0846eaa980737f0cc5490f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2f57b2673a0846eaa980737f0cc5490f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2f57b2673a0846eaa980737f0cc5490f, To entity, Value { r#type: Entity, value: "7fa7701ec33246f6ad93dea025ba317e" } +SetTriple: 2f57b2673a0846eaa980737f0cc5490f, From entity, Value { r#type: Entity, value: "284f02213aea456a83eabe0e28f63a2c" } +SetTriple: 08cd5f0fb4794183968d1798e24bafb6, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 08cd5f0fb4794183968d1798e24bafb6, Index, Value { r#type: Text, value: "a0" } +SetTriple: 08cd5f0fb4794183968d1798e24bafb6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 08cd5f0fb4794183968d1798e24bafb6, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: 08cd5f0fb4794183968d1798e24bafb6, From entity, Value { r#type: Entity, value: "453747e798d444cdb227272d0a85f2a3" } +SetTriple: e51613793afa44fe8ef81946d99e79a3, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: e51613793afa44fe8ef81946d99e79a3, Index, Value { r#type: Text, value: "a0" } +SetTriple: e51613793afa44fe8ef81946d99e79a3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e51613793afa44fe8ef81946d99e79a3, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: e51613793afa44fe8ef81946d99e79a3, From entity, Value { r#type: Entity, value: "453747e798d444cdb227272d0a85f2a3" } +SetTriple: fdbeba5d5c8643ddb7d38b7abe17373a, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: fdbeba5d5c8643ddb7d38b7abe17373a, Index, Value { r#type: Text, value: "a0" } +SetTriple: fdbeba5d5c8643ddb7d38b7abe17373a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: fdbeba5d5c8643ddb7d38b7abe17373a, To entity, Value { r#type: Entity, value: "453747e798d444cdb227272d0a85f2a3" } +SetTriple: fdbeba5d5c8643ddb7d38b7abe17373a, From entity, Value { r#type: Entity, value: "b67663f43a7d426180616df2c4eb77ce" } +SetTriple: 40798739566048c8b600650f85b520a6, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 40798739566048c8b600650f85b520a6, Index, Value { r#type: Text, value: "a0" } +SetTriple: 40798739566048c8b600650f85b520a6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 40798739566048c8b600650f85b520a6, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: 40798739566048c8b600650f85b520a6, From entity, Value { r#type: Entity, value: "b67663f43a7d426180616df2c4eb77ce" } +SetTriple: 13cf3b8e005b4feaa34baf1717832d6f, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 13cf3b8e005b4feaa34baf1717832d6f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 13cf3b8e005b4feaa34baf1717832d6f, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: Podcast, Description, Value { r#type: Text, value: "A podcast is a digital audio or video program that is made available on the internet for people to stream or download and listen to or watch at their convenience. " } +SetTriple: d283717af1e444cf8262ef7d2f6f40b8, Name, Value { r#type: Text, value: "Podcast episodes" } +SetTriple: Podcast episodes, Description, Value { r#type: Text, value: "Podcasts are typically organized into episodes, each containing content that is related to the overarching theme or subject of the podcast. Episodes are the building blocks of a podcast and are usually released on a regular schedule, such as daily, weekly, or monthly." } +SetTriple: 13cf3b8e005b4feaa34baf1717832d6f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 13cf3b8e005b4feaa34baf1717832d6f, From entity, Value { r#type: Entity, value: "b67663f43a7d426180616df2c4eb77ce" } +SetTriple: ba26ec84181c4e6d8c25732f7599d93c, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: ba26ec84181c4e6d8c25732f7599d93c, Index, Value { r#type: Text, value: "a0" } +SetTriple: ba26ec84181c4e6d8c25732f7599d93c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ba26ec84181c4e6d8c25732f7599d93c, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: ba26ec84181c4e6d8c25732f7599d93c, From entity, Value { r#type: Entity, value: "6548768ed18047b28e9c823f390e205c" } +SetTriple: 67f65d44200848de9bec9ce96c021fb1, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 67f65d44200848de9bec9ce96c021fb1, Index, Value { r#type: Text, value: "a0" } +SetTriple: 67f65d44200848de9bec9ce96c021fb1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 67f65d44200848de9bec9ce96c021fb1, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 67f65d44200848de9bec9ce96c021fb1, From entity, Value { r#type: Entity, value: "6548768ed18047b28e9c823f390e205c" } +SetTriple: 6c716ac41d4849b48814108adc320ca0, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 6c716ac41d4849b48814108adc320ca0, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6c716ac41d4849b48814108adc320ca0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6c716ac41d4849b48814108adc320ca0, To entity, Value { r#type: Entity, value: "6548768ed18047b28e9c823f390e205c" } +SetTriple: 6c716ac41d4849b48814108adc320ca0, From entity, Value { r#type: Entity, value: "f2b51833ffbe453d86b021563de7c946" } +SetTriple: d7a6a31ed15c4d238006b98a5de7cc47, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: d7a6a31ed15c4d238006b98a5de7cc47, Index, Value { r#type: Text, value: "a0" } +SetTriple: d7a6a31ed15c4d238006b98a5de7cc47, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d7a6a31ed15c4d238006b98a5de7cc47, To entity, Value { r#type: Entity, value: "04b86c09e7ab45d09f5c25f61c31bb9c" } +SetTriple: d7a6a31ed15c4d238006b98a5de7cc47, From entity, Value { r#type: Entity, value: "f2b51833ffbe453d86b021563de7c946" } +SetTriple: 450b27d624eb4963a952c81caed1df33, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 450b27d624eb4963a952c81caed1df33, Index, Value { r#type: Text, value: "a0" } +SetTriple: 450b27d624eb4963a952c81caed1df33, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 450b27d624eb4963a952c81caed1df33, To entity, Value { r#type: Entity, value: "7fa7701ec33246f6ad93dea025ba317e" } +SetTriple: 450b27d624eb4963a952c81caed1df33, From entity, Value { r#type: Entity, value: "f2b51833ffbe453d86b021563de7c946" } +SetTriple: 131bac6a5a1e43eb8f4efb89e9f133dc, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 131bac6a5a1e43eb8f4efb89e9f133dc, Index, Value { r#type: Text, value: "a0" } +SetTriple: 131bac6a5a1e43eb8f4efb89e9f133dc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 131bac6a5a1e43eb8f4efb89e9f133dc, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 131bac6a5a1e43eb8f4efb89e9f133dc, From entity, Value { r#type: Entity, value: "d283717af1e444cf8262ef7d2f6f40b8" } +SetTriple: a6fbd29d1b854297bc234ed2c9a57cb3, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: a6fbd29d1b854297bc234ed2c9a57cb3, Index, Value { r#type: Text, value: "a0" } +SetTriple: a6fbd29d1b854297bc234ed2c9a57cb3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a6fbd29d1b854297bc234ed2c9a57cb3, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: a6fbd29d1b854297bc234ed2c9a57cb3, From entity, Value { r#type: Entity, value: "d283717af1e444cf8262ef7d2f6f40b8" } +SetTriple: 2288db2c2b7048958f19eb7a6215fa9a, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 2288db2c2b7048958f19eb7a6215fa9a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2288db2c2b7048958f19eb7a6215fa9a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2288db2c2b7048958f19eb7a6215fa9a, To entity, Value { r#type: Entity, value: "d283717af1e444cf8262ef7d2f6f40b8" } +SetTriple: 2288db2c2b7048958f19eb7a6215fa9a, From entity, Value { r#type: Entity, value: "284f02213aea456a83eabe0e28f63a2c" } +SetTriple: 4ebf7af7c97d4ecca79f7283c53b0782, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 4ebf7af7c97d4ecca79f7283c53b0782, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4ebf7af7c97d4ecca79f7283c53b0782, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4ebf7af7c97d4ecca79f7283c53b0782, To entity, Value { r#type: Entity, value: "f724b80589e1424bb149acff9ecfd0f7" } +SetTriple: 4ebf7af7c97d4ecca79f7283c53b0782, From entity, Value { r#type: Entity, value: "284f02213aea456a83eabe0e28f63a2c" } +SetTriple: 611fe48225eb4b73b1545a31c9518091, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 2598395514b541289da4042dd901842f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 611fe48225eb4b73b1545a31c9518091, From entity, Value { r#type: Entity, value: "cea8f64b0ec743a58dd5f4ae7b493cfa" } +SetTriple: 611fe48225eb4b73b1545a31c9518091, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: 611fe48225eb4b73b1545a31c9518091, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 611fe48225eb4b73b1545a31c9518091, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4f43e72b69ab4bd89680dba359e4e40d, From entity, Value { r#type: Entity, value: "b67663f43a7d426180616df2c4eb77ce" } +SetTriple: 4e3881834a8e47b28ef764a7edfc82d1, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 4e3881834a8e47b28ef764a7edfc82d1, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4e3881834a8e47b28ef764a7edfc82d1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4e3881834a8e47b28ef764a7edfc82d1, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 4e3881834a8e47b28ef764a7edfc82d1, From entity, Value { r#type: Entity, value: "c889672097ac4b2896f4367677efd463" } +SetTriple: 2598395514b541289da4042dd901842f, From entity, Value { r#type: Entity, value: "cea8f64b0ec743a58dd5f4ae7b493cfa" } +SetTriple: 2598395514b541289da4042dd901842f, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 4f43e72b69ab4bd89680dba359e4e40d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4f43e72b69ab4bd89680dba359e4e40d, To entity, Value { r#type: Entity, value: "cea8f64b0ec743a58dd5f4ae7b493cfa" } +SetTriple: 2598395514b541289da4042dd901842f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2598395514b541289da4042dd901842f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4f43e72b69ab4bd89680dba359e4e40d, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 4f43e72b69ab4bd89680dba359e4e40d, Index, Value { r#type: Text, value: "a0" } +SetTriple: cea8f64b0ec743a58dd5f4ae7b493cfa, Name, Value { r#type: Text, value: "Copyright" } +SetTriple: 06f344496fa54cc899aaaee549b2765b, To entity, Value { r#type: Entity, value: "e40b39dc2853404b9d06bf89ee241afd" } +SetTriple: 06f344496fa54cc899aaaee549b2765b, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 06f344496fa54cc899aaaee549b2765b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 06f344496fa54cc899aaaee549b2765b, From entity, Value { r#type: Entity, value: "b67663f43a7d426180616df2c4eb77ce" } +SetTriple: 06f344496fa54cc899aaaee549b2765b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 74149bc266314f61adf83616a1415785, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 74149bc266314f61adf83616a1415785, Index, Value { r#type: Text, value: "a0" } +SetTriple: 74149bc266314f61adf83616a1415785, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 74149bc266314f61adf83616a1415785, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: 74149bc266314f61adf83616a1415785, From entity, Value { r#type: Entity, value: "f71912463dca4e778a79d9cdc9804127" } +SetTriple: 61683c50a41b4a079befc2ce512bf501, Index, Value { r#type: Text, value: "a0" } +SetTriple: 61683c50a41b4a079befc2ce512bf501, To entity, Value { r#type: Entity, value: "3d31f766b65148afa357271343a773de" } +SetTriple: 61683c50a41b4a079befc2ce512bf501, From entity, Value { r#type: Entity, value: "f044ced29c7140caae7e192d7c847121" } +SetTriple: 61683c50a41b4a079befc2ce512bf501, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 61683c50a41b4a079befc2ce512bf501, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f044ced29c7140caae7e192d7c847121, Description, Value { r#type: Text, value: "Used to filter entities that are at the top level of a hierarchy" } +SetTriple: f044ced29c7140caae7e192d7c847121, Name, Value { r#type: Text, value: "Top level" } +SetTriple: 926b4854efe54f1aba02e2ab50b356e8, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 926b4854efe54f1aba02e2ab50b356e8, From entity, Value { r#type: Entity, value: "1e158076b9134724adf38ce65aa04f93" } +SetTriple: c52fc1aca97c4d969675159f581e8e72, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c52fc1aca97c4d969675159f581e8e72, From entity, Value { r#type: Entity, value: "1e158076b9134724adf38ce65aa04f93" } +SetTriple: ded0abfc19bd4deaa1492b6159a7e85f, Index, Value { r#type: Text, value: "a0" } +SetTriple: ded0abfc19bd4deaa1492b6159a7e85f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ded0abfc19bd4deaa1492b6159a7e85f, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: c52fc1aca97c4d969675159f581e8e72, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 779277fc06ee494d91adaf067b7048d0, From entity, Value { r#type: Entity, value: "89d76dbafaeb4afbb6aaac67ccd8f2be" } +SetTriple: 779277fc06ee494d91adaf067b7048d0, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 779277fc06ee494d91adaf067b7048d0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c52fc1aca97c4d969675159f581e8e72, Index, Value { r#type: Text, value: "a0" } +SetTriple: c52fc1aca97c4d969675159f581e8e72, To entity, Value { r#type: Entity, value: "89d76dbafaeb4afbb6aaac67ccd8f2be" } +SetTriple: 1e158076b9134724adf38ce65aa04f93, Name, Value { r#type: Text, value: "Conflict" } +SetTriple: 89d76dbafaeb4afbb6aaac67ccd8f2be, Name, Value { r#type: Text, value: "Participants" } +SetTriple: ded0abfc19bd4deaa1492b6159a7e85f, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 926b4854efe54f1aba02e2ab50b356e8, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 779277fc06ee494d91adaf067b7048d0, Index, Value { r#type: Text, value: "a0" } +SetTriple: 779277fc06ee494d91adaf067b7048d0, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: ded0abfc19bd4deaa1492b6159a7e85f, From entity, Value { r#type: Entity, value: "89d76dbafaeb4afbb6aaac67ccd8f2be" } +SetTriple: 926b4854efe54f1aba02e2ab50b356e8, Index, Value { r#type: Text, value: "a0" } +SetTriple: 926b4854efe54f1aba02e2ab50b356e8, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d7dc474c57f24c58bd2be155abfad786, Index, Value { r#type: Text, value: "a0" } +SetTriple: d7dc474c57f24c58bd2be155abfad786, To entity, Value { r#type: Entity, value: "912c4d9504fc4d3cbc84382b3a1904d1" } +SetTriple: d7dc474c57f24c58bd2be155abfad786, From entity, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: d7dc474c57f24c58bd2be155abfad786, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: d7dc474c57f24c58bd2be155abfad786, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b7740f16b4d64a76b42dc5a292db6276, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b7740f16b4d64a76b42dc5a292db6276, From entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: b7740f16b4d64a76b42dc5a292db6276, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: b7740f16b4d64a76b42dc5a292db6276, Index, Value { r#type: Text, value: "a0" } +SetTriple: b7740f16b4d64a76b42dc5a292db6276, To entity, Value { r#type: Entity, value: "912c4d9504fc4d3cbc84382b3a1904d1" } +SetTriple: 6224dcfac4c34078b98dbc5dd9bd45b0, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 4ca754c9a01a4ef2a5d6597c58764529, Name, Value { r#type: Text, value: "Quotes" } +SetTriple: 329e1022e2b34cfc8da9c8ac0ea30af4, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 329e1022e2b34cfc8da9c8ac0ea30af4, Index, Value { r#type: Text, value: "a0" } +SetTriple: 329e1022e2b34cfc8da9c8ac0ea30af4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 329e1022e2b34cfc8da9c8ac0ea30af4, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 329e1022e2b34cfc8da9c8ac0ea30af4, From entity, Value { r#type: Entity, value: "4ca754c9a01a4ef2a5d6597c58764529" } +SetTriple: 6224dcfac4c34078b98dbc5dd9bd45b0, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6224dcfac4c34078b98dbc5dd9bd45b0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6224dcfac4c34078b98dbc5dd9bd45b0, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 6224dcfac4c34078b98dbc5dd9bd45b0, From entity, Value { r#type: Entity, value: "4ca754c9a01a4ef2a5d6597c58764529" } +SetTriple: 9656f6e4c5784cdb8dd843d5fcb1e010, From entity, Value { r#type: Entity, value: "1390be437d4c4080a925b2f7bc03fc86" } +SetTriple: 9656f6e4c5784cdb8dd843d5fcb1e010, To entity, Value { r#type: Entity, value: "55a7c6143622426a84568a493eed94b9" } +SetTriple: 9656f6e4c5784cdb8dd843d5fcb1e010, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9656f6e4c5784cdb8dd843d5fcb1e010, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9656f6e4c5784cdb8dd843d5fcb1e010, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 3794d09f6f3844e1a6390584592110d3, From entity, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 3794d09f6f3844e1a6390584592110d3, To entity, Value { r#type: Entity, value: "1d7f027e415c4f69800e460fde65feb9" } +SetTriple: 3794d09f6f3844e1a6390584592110d3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3794d09f6f3844e1a6390584592110d3, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3794d09f6f3844e1a6390584592110d3, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 37fa8e7b2cd943c481ae7ea0876dd3dd, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 37fa8e7b2cd943c481ae7ea0876dd3dd, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 37fa8e7b2cd943c481ae7ea0876dd3dd, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 37fa8e7b2cd943c481ae7ea0876dd3dd, From entity, Value { r#type: Entity, value: "c74bc40820f94d798918b968d6d65bf3" } +SetTriple: 3e1c49a1851c4053825e9931d933f43e, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 3e1c49a1851c4053825e9931d933f43e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3e1c49a1851c4053825e9931d933f43e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3e1c49a1851c4053825e9931d933f43e, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: 3e1c49a1851c4053825e9931d933f43e, From entity, Value { r#type: Entity, value: "c8ec5342083f4c71bb72db66c610ee19" } +SetTriple: e9e16321c65a4721acd2818cef5dc9a1, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: e9e16321c65a4721acd2818cef5dc9a1, Index, Value { r#type: Text, value: "a0" } +SetTriple: e9e16321c65a4721acd2818cef5dc9a1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e9e16321c65a4721acd2818cef5dc9a1, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: e9e16321c65a4721acd2818cef5dc9a1, From entity, Value { r#type: Entity, value: "c8ec5342083f4c71bb72db66c610ee19" } +SetTriple: 6c2a9a23d21d44628e159a1cd444948a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6c2a9a23d21d44628e159a1cd444948a, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 4252fa35135e42fdaa2ae8e2c837368b, From entity, Value { r#type: Entity, value: "c8ec5342083f4c71bb72db66c610ee19" } +SetTriple: 4252fa35135e42fdaa2ae8e2c837368b, To entity, Value { r#type: Entity, value: "c74bc40820f94d798918b968d6d65bf3" } +SetTriple: 4252fa35135e42fdaa2ae8e2c837368b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4252fa35135e42fdaa2ae8e2c837368b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4252fa35135e42fdaa2ae8e2c837368b, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: Restaurant, Description, Value { r#type: Text, value: "A place where people sit and eat or order takeout or delivery." } +SetTriple: c74bc40820f94d798918b968d6d65bf3, Description, Value { r#type: Text, value: "A style or culture heritage of food" } +SetTriple: c74bc40820f94d798918b968d6d65bf3, Name, Value { r#type: Text, value: "Cuisine" } +SetTriple: 6c2a9a23d21d44628e159a1cd444948a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6c2a9a23d21d44628e159a1cd444948a, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: 6c2a9a23d21d44628e159a1cd444948a, From entity, Value { r#type: Entity, value: "c74bc40820f94d798918b968d6d65bf3" } +SetTriple: 37fa8e7b2cd943c481ae7ea0876dd3dd, Index, Value { r#type: Text, value: "a0" } +SetTriple: 89be068ca8224adcbd02a403679ead39, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: 89be068ca8224adcbd02a403679ead39, From entity, Value { r#type: Entity, value: "79e43124950544cb93d67b93ddd2fd3a" } +SetTriple: c81b423440d14936b3dd818198af071b, Index, Value { r#type: Text, value: "a0" } +SetTriple: c81b423440d14936b3dd818198af071b, From entity, Value { r#type: Entity, value: "79e43124950544cb93d67b93ddd2fd3a" } +SetTriple: c81b423440d14936b3dd818198af071b, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: c81b423440d14936b3dd818198af071b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c81b423440d14936b3dd818198af071b, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: 89be068ca8224adcbd02a403679ead39, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 89be068ca8224adcbd02a403679ead39, Index, Value { r#type: Text, value: "a0" } +SetTriple: 89be068ca8224adcbd02a403679ead39, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3239e312fb2e4c92876142cad79a12f7, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 6055fb0ebeb64bdbb8d2981d9c129fff, To entity, Value { r#type: Entity, value: "98da4a39b5a946578ba8e71a6f3f3786" } +SetTriple: 6055fb0ebeb64bdbb8d2981d9c129fff, From entity, Value { r#type: Entity, value: "8c5f56beab2e4a2b9a2b93f574ffba97" } +SetTriple: 6aa56d64d09c4dd0aba4da03945140dd, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 6aa56d64d09c4dd0aba4da03945140dd, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6aa56d64d09c4dd0aba4da03945140dd, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6aa56d64d09c4dd0aba4da03945140dd, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: 6aa56d64d09c4dd0aba4da03945140dd, From entity, Value { r#type: Entity, value: "98da4a39b5a946578ba8e71a6f3f3786" } +SetTriple: bfae9e9337644edaa7a369fba34e685e, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: bfae9e9337644edaa7a369fba34e685e, Index, Value { r#type: Text, value: "a0" } +SetTriple: bfae9e9337644edaa7a369fba34e685e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bfae9e9337644edaa7a369fba34e685e, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: bfae9e9337644edaa7a369fba34e685e, From entity, Value { r#type: Entity, value: "98da4a39b5a946578ba8e71a6f3f3786" } +SetTriple: e6b4ec90b573410b950a49a5f14923ba, Name, Value { r#type: Text, value: "2024 Q1" } +SetTriple: a582fa0d17b746c2804996f474e2c2a8, Name, Value { r#type: Text, value: "2024 Q2" } +SetTriple: cf97e9849b7041a9be2ace0e30cc2453, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: cf97e9849b7041a9be2ace0e30cc2453, Index, Value { r#type: Text, value: "a0" } +SetTriple: cf97e9849b7041a9be2ace0e30cc2453, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: cf97e9849b7041a9be2ace0e30cc2453, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: cf97e9849b7041a9be2ace0e30cc2453, From entity, Value { r#type: Entity, value: "f7c060e8f8c24f538fb0e20ca566ab2f" } +SetTriple: 2e896334c9b74091b8ecfefaf371d8a2, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 2e896334c9b74091b8ecfefaf371d8a2, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2e896334c9b74091b8ecfefaf371d8a2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2e896334c9b74091b8ecfefaf371d8a2, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 2e896334c9b74091b8ecfefaf371d8a2, From entity, Value { r#type: Entity, value: "f7c060e8f8c24f538fb0e20ca566ab2f" } +SetTriple: f44a78cd563646e58a3b4f0dd0e8cfbf, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: f44a78cd563646e58a3b4f0dd0e8cfbf, Index, Value { r#type: Text, value: "a0" } +SetTriple: f44a78cd563646e58a3b4f0dd0e8cfbf, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f44a78cd563646e58a3b4f0dd0e8cfbf, To entity, Value { r#type: Entity, value: "f7c060e8f8c24f538fb0e20ca566ab2f" } +SetTriple: f44a78cd563646e58a3b4f0dd0e8cfbf, From entity, Value { r#type: Entity, value: "4144054c27d7497abe1e7f169e521e4f" } +SetTriple: 70698a1adfe34113855d44a159bf6edc, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 70698a1adfe34113855d44a159bf6edc, Index, Value { r#type: Text, value: "a0" } +SetTriple: 70698a1adfe34113855d44a159bf6edc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 70698a1adfe34113855d44a159bf6edc, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 70698a1adfe34113855d44a159bf6edc, From entity, Value { r#type: Entity, value: "d3c851944fe240b68c9a9bd463beda13" } +SetTriple: c9c31d3e17e344d28ae8ac7478031751, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: c9c31d3e17e344d28ae8ac7478031751, Index, Value { r#type: Text, value: "a0" } +SetTriple: c9c31d3e17e344d28ae8ac7478031751, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c9c31d3e17e344d28ae8ac7478031751, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: c9c31d3e17e344d28ae8ac7478031751, From entity, Value { r#type: Entity, value: "246b20a5167c4a9d82f330a0f75f9757" } +SetTriple: 6bb20690704b40f6a4bfd8bbc5cbed04, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 6bb20690704b40f6a4bfd8bbc5cbed04, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6bb20690704b40f6a4bfd8bbc5cbed04, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 6bb20690704b40f6a4bfd8bbc5cbed04, From entity, Value { r#type: Entity, value: "246b20a5167c4a9d82f330a0f75f9757" } +SetTriple: c3b8e6bd42274ef5b16b684dbad4bc6e, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: c3b8e6bd42274ef5b16b684dbad4bc6e, Index, Value { r#type: Text, value: "a0" } +SetTriple: c3b8e6bd42274ef5b16b684dbad4bc6e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c3b8e6bd42274ef5b16b684dbad4bc6e, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: c3b8e6bd42274ef5b16b684dbad4bc6e, From entity, Value { r#type: Entity, value: "7d85c5b14ab246c4bfe002b65324fd8a" } +SetTriple: f27a8fee65d843eaa2a3e2da7c7f73b0, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: f27a8fee65d843eaa2a3e2da7c7f73b0, Index, Value { r#type: Text, value: "a0" } +SetTriple: f27a8fee65d843eaa2a3e2da7c7f73b0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f27a8fee65d843eaa2a3e2da7c7f73b0, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: f27a8fee65d843eaa2a3e2da7c7f73b0, From entity, Value { r#type: Entity, value: "7d85c5b14ab246c4bfe002b65324fd8a" } +SetTriple: a29fb8fd69b546239a037fc99b17559d, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: a29fb8fd69b546239a037fc99b17559d, Index, Value { r#type: Text, value: "a0" } +SetTriple: a29fb8fd69b546239a037fc99b17559d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a29fb8fd69b546239a037fc99b17559d, To entity, Value { r#type: Entity, value: "d3c851944fe240b68c9a9bd463beda13" } +SetTriple: a29fb8fd69b546239a037fc99b17559d, From entity, Value { r#type: Entity, value: "6f3a6fcda7804422b13dcba10f74ca63" } +SetTriple: 833c370804594274ae38e2d00478ff0d, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 833c370804594274ae38e2d00478ff0d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 833c370804594274ae38e2d00478ff0d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 833c370804594274ae38e2d00478ff0d, To entity, Value { r#type: Entity, value: "246b20a5167c4a9d82f330a0f75f9757" } +SetTriple: 833c370804594274ae38e2d00478ff0d, From entity, Value { r#type: Entity, value: "6f3a6fcda7804422b13dcba10f74ca63" } +SetTriple: 2e6cfd1a9d754fff904ee299dd9dde38, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 2e6cfd1a9d754fff904ee299dd9dde38, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2e6cfd1a9d754fff904ee299dd9dde38, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2e6cfd1a9d754fff904ee299dd9dde38, To entity, Value { r#type: Entity, value: "7d85c5b14ab246c4bfe002b65324fd8a" } +SetTriple: 2e6cfd1a9d754fff904ee299dd9dde38, From entity, Value { r#type: Entity, value: "6f3a6fcda7804422b13dcba10f74ca63" } +SetTriple: 9b0d785beb484265a75b456454fa37c4, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 9b0d785beb484265a75b456454fa37c4, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9b0d785beb484265a75b456454fa37c4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9b0d785beb484265a75b456454fa37c4, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 9b0d785beb484265a75b456454fa37c4, From entity, Value { r#type: Entity, value: "6f3a6fcda7804422b13dcba10f74ca63" } +SetTriple: ceab85641ebe4869998f34ac6e158379, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: ceab85641ebe4869998f34ac6e158379, Index, Value { r#type: Text, value: "a0" } +SetTriple: ceab85641ebe4869998f34ac6e158379, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ceab85641ebe4869998f34ac6e158379, To entity, Value { r#type: Entity, value: "c74bc40820f94d798918b968d6d65bf3" } +SetTriple: ceab85641ebe4869998f34ac6e158379, From entity, Value { r#type: Entity, value: "c8ec5342083f4c71bb72db66c610ee19" } +SetTriple: 36c8859abe4346e58450098aee77f9c8, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 36c8859abe4346e58450098aee77f9c8, Index, Value { r#type: Text, value: "a0" } +SetTriple: 36c8859abe4346e58450098aee77f9c8, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 36c8859abe4346e58450098aee77f9c8, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: 36c8859abe4346e58450098aee77f9c8, From entity, Value { r#type: Entity, value: "c74bc40820f94d798918b968d6d65bf3" } +SetTriple: f64b964824984dcb902be5b0bbcd76bb, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: f64b964824984dcb902be5b0bbcd76bb, Index, Value { r#type: Text, value: "a0" } +SetTriple: f64b964824984dcb902be5b0bbcd76bb, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f64b964824984dcb902be5b0bbcd76bb, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: f64b964824984dcb902be5b0bbcd76bb, From entity, Value { r#type: Entity, value: "c74bc40820f94d798918b968d6d65bf3" } +SetTriple: 629c641944b945b5a397b8e806add1cd, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 629c641944b945b5a397b8e806add1cd, Index, Value { r#type: Text, value: "a0" } +SetTriple: 629c641944b945b5a397b8e806add1cd, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 629c641944b945b5a397b8e806add1cd, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: 629c641944b945b5a397b8e806add1cd, From entity, Value { r#type: Entity, value: "c8ec5342083f4c71bb72db66c610ee19" } +SetTriple: 3239e312fb2e4c92876142cad79a12f7, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3239e312fb2e4c92876142cad79a12f7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3239e312fb2e4c92876142cad79a12f7, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: 3239e312fb2e4c92876142cad79a12f7, From entity, Value { r#type: Entity, value: "c8ec5342083f4c71bb72db66c610ee19" } +SetTriple: 6bb20690704b40f6a4bfd8bbc5cbed04, Index, Value { r#type: Text, value: "a0" } +SetTriple: a1a7ebd00f5b4907a28586591ca6f1f7, To entity, Value { r#type: Entity, value: "98da4a39b5a946578ba8e71a6f3f3786" } +SetTriple: 8c5f56beab2e4a2b9a2b93f574ffba97, Name, Value { r#type: Text, value: "2023 Q4" } +SetTriple: 98da4a39b5a946578ba8e71a6f3f3786, Name, Value { r#type: Text, value: "Targeted quarter" } +SetTriple: f7c060e8f8c24f538fb0e20ca566ab2f, Name, Value { r#type: Text, value: "Targeted quarter" } +SetTriple: 6f3a6fcda7804422b13dcba10f74ca63, Description, Value { r#type: Text, value: "A project within an organization that may have a lifecycle" } +SetTriple: d3c851944fe240b68c9a9bd463beda13, Name, Value { r#type: Text, value: "Broader workstreams" } +SetTriple: 246b20a5167c4a9d82f330a0f75f9757, Name, Value { r#type: Text, value: "Subworkstreams" } +SetTriple: 7d85c5b14ab246c4bfe002b65324fd8a, Name, Value { r#type: Text, value: "Features" } +SetTriple: 6f3a6fcda7804422b13dcba10f74ca63, Name, Value { r#type: Text, value: "Workstream" } +SetTriple: Restaurant, Description, Value { r#type: Text, value: "A place where people sit and eat or order takeout or delivery." } +SetTriple: Cuisine, Description, Value { r#type: Text, value: "A style or culture heritage of food" } +SetTriple: Cuisine, Name, Value { r#type: Text, value: "Cuisine" } +SetTriple: a1a7ebd00f5b4907a28586591ca6f1f7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a1a7ebd00f5b4907a28586591ca6f1f7, Index, Value { r#type: Text, value: "a0" } +SetTriple: a1a7ebd00f5b4907a28586591ca6f1f7, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 355a042f2a964ebc82c64b63110c6583, From entity, Value { r#type: Entity, value: "4144054c27d7497abe1e7f169e521e4f" } +SetTriple: 355a042f2a964ebc82c64b63110c6583, To entity, Value { r#type: Entity, value: "afdbc3ab37534536bd1fb91f8ceb23e8" } +SetTriple: 355a042f2a964ebc82c64b63110c6583, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 355a042f2a964ebc82c64b63110c6583, Index, Value { r#type: Text, value: "a0" } +SetTriple: 355a042f2a964ebc82c64b63110c6583, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: a1a7ebd00f5b4907a28586591ca6f1f7, From entity, Value { r#type: Entity, value: "a582fa0d17b746c2804996f474e2c2a8" } +SetTriple: 8806c1f58b474138bde451b05b025468, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 8806c1f58b474138bde451b05b025468, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8806c1f58b474138bde451b05b025468, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8806c1f58b474138bde451b05b025468, To entity, Value { r#type: Entity, value: "98da4a39b5a946578ba8e71a6f3f3786" } +SetTriple: 8806c1f58b474138bde451b05b025468, From entity, Value { r#type: Entity, value: "e6b4ec90b573410b950a49a5f14923ba" } +SetTriple: 6055fb0ebeb64bdbb8d2981d9c129fff, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 6055fb0ebeb64bdbb8d2981d9c129fff, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6055fb0ebeb64bdbb8d2981d9c129fff, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 654ad0e5a34d47a2a5433f203dba03a4, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 654ad0e5a34d47a2a5433f203dba03a4, From entity, Value { r#type: Entity, value: "1390be437d4c4080a925b2f7bc03fc86" } +SetTriple: 654ad0e5a34d47a2a5433f203dba03a4, To entity, Value { r#type: Entity, value: "864c9685fd454528a7caedd51316c09c" } +SetTriple: 654ad0e5a34d47a2a5433f203dba03a4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 654ad0e5a34d47a2a5433f203dba03a4, Index, Value { r#type: Text, value: "a0" } +SetTriple: 17bf1a9174bc4ea89b2b17752c904738, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 17bf1a9174bc4ea89b2b17752c904738, From entity, Value { r#type: Entity, value: "d3c851944fe240b68c9a9bd463beda13" } +SetTriple: 7ac84a583a034c35af7d13bff008c9fa, From entity, Value { r#type: Entity, value: "246b20a5167c4a9d82f330a0f75f9757" } +SetTriple: 7ac84a583a034c35af7d13bff008c9fa, To entity, Value { r#type: Entity, value: "6f3a6fcda7804422b13dcba10f74ca63" } +SetTriple: 7ac84a583a034c35af7d13bff008c9fa, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7ac84a583a034c35af7d13bff008c9fa, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7ac84a583a034c35af7d13bff008c9fa, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 2b0578ee52b44ac79e0a3c9a56c81cf4, From entity, Value { r#type: Entity, value: "7d85c5b14ab246c4bfe002b65324fd8a" } +SetTriple: 2b0578ee52b44ac79e0a3c9a56c81cf4, To entity, Value { r#type: Entity, value: "4144054c27d7497abe1e7f169e521e4f" } +SetTriple: 2b0578ee52b44ac79e0a3c9a56c81cf4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2b0578ee52b44ac79e0a3c9a56c81cf4, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2b0578ee52b44ac79e0a3c9a56c81cf4, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 7de16e73944842c19714cb9093ae57b7, From entity, Value { r#type: Entity, value: "d3c851944fe240b68c9a9bd463beda13" } +SetTriple: 7de16e73944842c19714cb9093ae57b7, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 7de16e73944842c19714cb9093ae57b7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7de16e73944842c19714cb9093ae57b7, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 7de16e73944842c19714cb9093ae57b7, Index, Value { r#type: Text, value: "a0" } +SetTriple: 17bf1a9174bc4ea89b2b17752c904738, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 17bf1a9174bc4ea89b2b17752c904738, Index, Value { r#type: Text, value: "a0" } +SetTriple: 17bf1a9174bc4ea89b2b17752c904738, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6f773a75b6fa4ae0a80b65f040573fae, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 2aa2a2c1b1d044e5aaca1cd2e5056008, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: b325fcee753d4dc68e5578eb88cb00f7, From entity, Value { r#type: Entity, value: "fa8e8e54f7424c00b73c05adee2b4545" } +SetTriple: b325fcee753d4dc68e5578eb88cb00f7, To entity, Value { r#type: Entity, value: "8db09ed21a66408eab8d8e8f931a09cf" } +SetTriple: b325fcee753d4dc68e5578eb88cb00f7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b325fcee753d4dc68e5578eb88cb00f7, Index, Value { r#type: Text, value: "a0" } +SetTriple: b325fcee753d4dc68e5578eb88cb00f7, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 102a311b73d34192901ba2f4ef30ab67, From entity, Value { r#type: Entity, value: "8db09ed21a66408eab8d8e8f931a09cf" } +SetTriple: 102a311b73d34192901ba2f4ef30ab67, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 102a311b73d34192901ba2f4ef30ab67, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 102a311b73d34192901ba2f4ef30ab67, Index, Value { r#type: Text, value: "a0" } +SetTriple: 102a311b73d34192901ba2f4ef30ab67, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: f2ece130dc484b34acf97dc5e07911ff, From entity, Value { r#type: Entity, value: "8db09ed21a66408eab8d8e8f931a09cf" } +SetTriple: f2ece130dc484b34acf97dc5e07911ff, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: f2ece130dc484b34acf97dc5e07911ff, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f2ece130dc484b34acf97dc5e07911ff, Index, Value { r#type: Text, value: "a0" } +SetTriple: f2ece130dc484b34acf97dc5e07911ff, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: cec988fe4da24c05842264036f800af5, From entity, Value { r#type: Entity, value: "fa8e8e54f7424c00b73c05adee2b4545" } +SetTriple: cec988fe4da24c05842264036f800af5, To entity, Value { r#type: Entity, value: "21d9fa3cfecf42bc8f8e9fcc6ae2b0cd" } +SetTriple: cec988fe4da24c05842264036f800af5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: cec988fe4da24c05842264036f800af5, Index, Value { r#type: Text, value: "a0" } +SetTriple: cec988fe4da24c05842264036f800af5, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 6f773a75b6fa4ae0a80b65f040573fae, From entity, Value { r#type: Entity, value: "21d9fa3cfecf42bc8f8e9fcc6ae2b0cd" } +SetTriple: 6f773a75b6fa4ae0a80b65f040573fae, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6f773a75b6fa4ae0a80b65f040573fae, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6f773a75b6fa4ae0a80b65f040573fae, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 8c5fb68c353a4e09923ff2f2cfeaef7f, From entity, Value { r#type: Entity, value: "21d9fa3cfecf42bc8f8e9fcc6ae2b0cd" } +SetTriple: 8c5fb68c353a4e09923ff2f2cfeaef7f, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 8c5fb68c353a4e09923ff2f2cfeaef7f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8c5fb68c353a4e09923ff2f2cfeaef7f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8c5fb68c353a4e09923ff2f2cfeaef7f, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 21d9fa3cfecf42bc8f8e9fcc6ae2b0cd, Name, Value { r#type: Text, value: "Sub-claims" } +SetTriple: 8db09ed21a66408eab8d8e8f931a09cf, Name, Value { r#type: Text, value: "Broader claims" } +SetTriple: 2aa2a2c1b1d044e5aaca1cd2e5056008, From entity, Value { r#type: Entity, value: "724d29589d5443c8af52e3feb24cdf88" } +SetTriple: 2aa2a2c1b1d044e5aaca1cd2e5056008, To entity, Value { r#type: Entity, value: "55a7c6143622426a84568a493eed94b9" } +SetTriple: 2aa2a2c1b1d044e5aaca1cd2e5056008, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2aa2a2c1b1d044e5aaca1cd2e5056008, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5132feb278014b8b9fac1d233cb44d3a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5132feb278014b8b9fac1d233cb44d3a, From entity, Value { r#type: Entity, value: "fa8e8e54f7424c00b73c05adee2b4545" } +SetTriple: 5132feb278014b8b9fac1d233cb44d3a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5132feb278014b8b9fac1d233cb44d3a, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 5132feb278014b8b9fac1d233cb44d3a, To entity, Value { r#type: Entity, value: "4ca754c9a01a4ef2a5d6597c58764529" } +SetTriple: Sub-claims, Name, Value { r#type: Text, value: "Subclaims" } +SetTriple: 3cabc73a7012476db1d49da6a230e926, From entity, Value { r#type: Entity, value: "873e0723752f4cd1bccab304cb8c4383" } +SetTriple: 3cabc73a7012476db1d49da6a230e926, To entity, Value { r#type: Entity, value: "912c4d9504fc4d3cbc84382b3a1904d1" } +SetTriple: 3cabc73a7012476db1d49da6a230e926, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3cabc73a7012476db1d49da6a230e926, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3cabc73a7012476db1d49da6a230e926, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 03f65faf7eab449db4407a6e0e5a4608, Index, Value { r#type: Text, value: "a0" } +SetTriple: 03f65faf7eab449db4407a6e0e5a4608, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 1265721a59da44b0b28fe3968c0438e1, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1265721a59da44b0b28fe3968c0438e1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1265721a59da44b0b28fe3968c0438e1, To entity, Value { r#type: Entity, value: "e24a2a7dc88f49acb9078259d5b00cf9" } +SetTriple: 1265721a59da44b0b28fe3968c0438e1, From entity, Value { r#type: Entity, value: "f1b9fd886388436e95b551aafaea77e5" } +SetTriple: e24a2a7dc88f49acb9078259d5b00cf9, 334b8ac01be14079b1707e11d0f9eb8d, Value { r#type: Uri, value: "ipfs://bafkreigngcmyfjsxgqkvbaiyyhppvctkugnohyef3am4iiaiqzzjoas7ca" } +SetTriple: e24a2a7dc88f49acb9078259d5b00cf9, 18a7f15ea93b4e15bacf4d57052741e9, Value { r#type: Text, value: "2384" } +SetTriple: e24a2a7dc88f49acb9078259d5b00cf9, 58747e352a1c4c76ae64bfe08d28d0a4, Value { r#type: Text, value: "640" } +SetTriple: e24a2a7dc88f49acb9078259d5b00cf9, 03d3a32b258f492e8d81c9ee2bc01461, Value { r#type: Text, value: "png" } +SetTriple: 03f65faf7eab449db4407a6e0e5a4608, From entity, Value { r#type: Entity, value: "e24a2a7dc88f49acb9078259d5b00cf9" } +SetTriple: 03f65faf7eab449db4407a6e0e5a4608, To entity, Value { r#type: Entity, value: "" } +SetTriple: 03f65faf7eab449db4407a6e0e5a4608, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1265721a59da44b0b28fe3968c0438e1, Relation type, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: 7496be7b578d4fd4b795085382558fd4, From entity, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 7496be7b578d4fd4b795085382558fd4, To entity, Value { r#type: Entity, value: "19b35ee6ab1e4e138f82938685ddbe7e" } +SetTriple: 7496be7b578d4fd4b795085382558fd4, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7496be7b578d4fd4b795085382558fd4, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 7496be7b578d4fd4b795085382558fd4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e3be3171ec774ea9bed6961033c95ffe, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 925dad09165e4683b06c8d14e7de7da8, Index, Value { r#type: Text, value: "a0" } +SetTriple: 925dad09165e4683b06c8d14e7de7da8, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 925dad09165e4683b06c8d14e7de7da8, To entity, Value { r#type: Entity, value: "ee5648a5d63847809796cd8605517545" } +SetTriple: 925dad09165e4683b06c8d14e7de7da8, From entity, Value { r#type: Entity, value: "fa8e8e54f7424c00b73c05adee2b4545" } +SetTriple: e3be3171ec774ea9bed6961033c95ffe, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: e3be3171ec774ea9bed6961033c95ffe, Index, Value { r#type: Text, value: "a0" } +SetTriple: e3be3171ec774ea9bed6961033c95ffe, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 925dad09165e4683b06c8d14e7de7da8, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: e3be3171ec774ea9bed6961033c95ffe, From entity, Value { r#type: Entity, value: "ee5648a5d63847809796cd8605517545" } +SetTriple: b295ccb865374c3289564b3f698b2462, From entity, Value { r#type: Entity, value: "ee5648a5d63847809796cd8605517545" } +SetTriple: b295ccb865374c3289564b3f698b2462, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: b295ccb865374c3289564b3f698b2462, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: b295ccb865374c3289564b3f698b2462, Index, Value { r#type: Text, value: "a0" } +SetTriple: ee5648a5d63847809796cd8605517545, Name, Value { r#type: Text, value: "Relevant questions" } +SetTriple: b295ccb865374c3289564b3f698b2462, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: A reference to an ou, Markdown Content, Value { r#type: Text, value: "A reference to an outlet that publishes information, media content including articles, videos, photos and podcasts.\n\n" } +SetTriple: 13ae11d8d14e42d8834e54a8805db1a3, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 13ae11d8d14e42d8834e54a8805db1a3, Index, Value { r#type: Text, value: "a0" } +SetTriple: 13ae11d8d14e42d8834e54a8805db1a3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 13ae11d8d14e42d8834e54a8805db1a3, To entity, Value { r#type: Entity, value: "15234a4c061f46ee90a0c44cd9414cbe" } +SetTriple: 13ae11d8d14e42d8834e54a8805db1a3, From entity, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 13887a895d2047b387152c4073dc51af, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 13887a895d2047b387152c4073dc51af, Index, Value { r#type: Text, value: "a0" } +SetTriple: 13887a895d2047b387152c4073dc51af, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 13887a895d2047b387152c4073dc51af, To entity, Value { r#type: Entity, value: "9cc8a65ddf924c0c8d9024980e822dc0" } +SetTriple: 13887a895d2047b387152c4073dc51af, From entity, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 03acd78d5a874cf184028226fdca7d56, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 03acd78d5a874cf184028226fdca7d56, Index, Value { r#type: Text, value: "a0" } +SetTriple: 03acd78d5a874cf184028226fdca7d56, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 03acd78d5a874cf184028226fdca7d56, To entity, Value { r#type: Entity, value: "f7423062fb7549288b63156af138258b" } +SetTriple: 03acd78d5a874cf184028226fdca7d56, From entity, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 1fea2ffb1def43ea891c80741e1ae1da, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 1fea2ffb1def43ea891c80741e1ae1da, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1fea2ffb1def43ea891c80741e1ae1da, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1fea2ffb1def43ea891c80741e1ae1da, To entity, Value { r#type: Entity, value: "cb9d261d456b4eaf87e51e9faa441867" } +SetTriple: 1fea2ffb1def43ea891c80741e1ae1da, From entity, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: Nonprofit, Name, Value { r#type: Text, value: "Nonprofit Organization" } +SetTriple: Nonprofit , Name, Value { r#type: Text, value: "Nonprofit service" } +SetTriple: a9a88457a09d448399d0acd2386a5d94, From entity, Value { r#type: Entity, value: "5bc69653a05e477c801acea0bf5fe49c" } +SetTriple: a9a88457a09d448399d0acd2386a5d94, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: a9a88457a09d448399d0acd2386a5d94, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bd81901c126c4066995f46d53297ddc0, From entity, Value { r#type: Entity, value: "5bc69653a05e477c801acea0bf5fe49c" } +SetTriple: bd81901c126c4066995f46d53297ddc0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bd81901c126c4066995f46d53297ddc0, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: bd81901c126c4066995f46d53297ddc0, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: bd81901c126c4066995f46d53297ddc0, Index, Value { r#type: Text, value: "a0" } +SetTriple: a9a88457a09d448399d0acd2386a5d94, Index, Value { r#type: Text, value: "a0" } +SetTriple: a9a88457a09d448399d0acd2386a5d94, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 5bc69653a05e477c801acea0bf5fe49c, Name, Value { r#type: Text, value: "Is about" } +SetTriple: b122952cc9734f8da1b163328a99fb7c, Name, Value { r#type: Text, value: "Nonprofit Organizations" } +SetTriple: 5129a1fa8da145dea189be710a1131bb, To entity, Value { r#type: Entity, value: "b3b03c909b6d487cb2e2a7d685f120eb" } +SetTriple: abe3686cb1bf4523a4bd851f2684095f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: abe3686cb1bf4523a4bd851f2684095f, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 5129a1fa8da145dea189be710a1131bb, From entity, Value { r#type: Entity, value: "b122952cc9734f8da1b163328a99fb7c" } +SetTriple: 5129a1fa8da145dea189be710a1131bb, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: abe3686cb1bf4523a4bd851f2684095f, From entity, Value { r#type: Entity, value: "b3b03c909b6d487cb2e2a7d685f120eb" } +SetTriple: abe3686cb1bf4523a4bd851f2684095f, To entity, Value { r#type: Entity, value: "b122952cc9734f8da1b163328a99fb7c" } +SetTriple: 1356ebf37dba4614b1c1abd6a7ed9e12, From entity, Value { r#type: Entity, value: "b122952cc9734f8da1b163328a99fb7c" } +SetTriple: 1356ebf37dba4614b1c1abd6a7ed9e12, To entity, Value { r#type: Entity, value: "88d5925217ae4d9aa36724710129eb47" } +SetTriple: 1356ebf37dba4614b1c1abd6a7ed9e12, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1356ebf37dba4614b1c1abd6a7ed9e12, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5129a1fa8da145dea189be710a1131bb, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5129a1fa8da145dea189be710a1131bb, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: afb9bf56f7a9431dbb73c47879252036, From entity, Value { r#type: Entity, value: "b122952cc9734f8da1b163328a99fb7c" } +SetTriple: afb9bf56f7a9431dbb73c47879252036, To entity, Value { r#type: Entity, value: "b3b03c909b6d487cb2e2a7d685f120eb" } +SetTriple: afb9bf56f7a9431dbb73c47879252036, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: afb9bf56f7a9431dbb73c47879252036, Index, Value { r#type: Text, value: "a0" } +SetTriple: afb9bf56f7a9431dbb73c47879252036, Relation type, Value { r#type: Entity, value: "577bd9fbb29e4e2bb5f8f48aedbd26ac" } +SetTriple: Nonprofit Organizations, Filter, Value { r#type: Text, value: "" } +SetTriple: 1356ebf37dba4614b1c1abd6a7ed9e12, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: abe3686cb1bf4523a4bd851f2684095f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9456eac7dc7b40ba93dd37260af9145d, From entity, Value { r#type: Entity, value: "2411d4a11eea4963bdbf852ce6ced5a4" } +SetTriple: 48270a82cc70405284913c06bc5176b8, From entity, Value { r#type: Entity, value: "fa7b8b70ae2448c1a4bf59483793b85f" } +SetTriple: 48270a82cc70405284913c06bc5176b8, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 48270a82cc70405284913c06bc5176b8, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 48270a82cc70405284913c06bc5176b8, Index, Value { r#type: Text, value: "a0" } +SetTriple: 48270a82cc70405284913c06bc5176b8, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 773428249fcd4c90b949b9baa7492f23, From entity, Value { r#type: Entity, value: "fa7b8b70ae2448c1a4bf59483793b85f" } +SetTriple: 773428249fcd4c90b949b9baa7492f23, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 773428249fcd4c90b949b9baa7492f23, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 773428249fcd4c90b949b9baa7492f23, Index, Value { r#type: Text, value: "a0" } +SetTriple: 773428249fcd4c90b949b9baa7492f23, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: f6c81e2f070e49d7887bd3548d14ab16, From entity, Value { r#type: Entity, value: "2411d4a11eea4963bdbf852ce6ced5a4" } +SetTriple: f6c81e2f070e49d7887bd3548d14ab16, To entity, Value { r#type: Entity, value: "fa7b8b70ae2448c1a4bf59483793b85f" } +SetTriple: f6c81e2f070e49d7887bd3548d14ab16, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f6c81e2f070e49d7887bd3548d14ab16, Index, Value { r#type: Text, value: "a0" } +SetTriple: f6c81e2f070e49d7887bd3548d14ab16, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 9456eac7dc7b40ba93dd37260af9145d, To entity, Value { r#type: Entity, value: "e8010874d3304a4d990762e89a19371a" } +SetTriple: 9456eac7dc7b40ba93dd37260af9145d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9456eac7dc7b40ba93dd37260af9145d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9456eac7dc7b40ba93dd37260af9145d, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: fa7b8b70ae2448c1a4bf59483793b85f, Name, Value { r#type: Text, value: "Definition of" } +SetTriple: 9eaa27d431944d65876ccec9f0979539, Description, Value { r#type: Text, value: "" } +SetTriple: 9eaa27d431944d65876ccec9f0979539, Name, Value { r#type: Text, value: "" } +SetTriple: 901570d5f8784c34b534da795581b3a1, From entity, Value { r#type: Entity, value: "acaf8408e36b4adda66225c2c7a63960" } +SetTriple: 9169fb58a37a4bdfb1a91a4ec6130c2e, To entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: 9169fb58a37a4bdfb1a91a4ec6130c2e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9169fb58a37a4bdfb1a91a4ec6130c2e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9169fb58a37a4bdfb1a91a4ec6130c2e, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: ae57aba071834b17ad5eabcbcb957f2a, From entity, Value { r#type: Entity, value: "3d31f766b65148afa357271343a773de" } +SetTriple: ae57aba071834b17ad5eabcbcb957f2a, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: ae57aba071834b17ad5eabcbcb957f2a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ae57aba071834b17ad5eabcbcb957f2a, Index, Value { r#type: Text, value: "a0" } +SetTriple: ae57aba071834b17ad5eabcbcb957f2a, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 02725b1e79504659b1b26a919e5540d6, From entity, Value { r#type: Entity, value: "acaf8408e36b4adda66225c2c7a63960" } +SetTriple: 02725b1e79504659b1b26a919e5540d6, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 02725b1e79504659b1b26a919e5540d6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 02725b1e79504659b1b26a919e5540d6, Index, Value { r#type: Text, value: "a0" } +SetTriple: 02725b1e79504659b1b26a919e5540d6, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: acaf8408e36b4adda66225c2c7a63960, Name, Value { r#type: Text, value: "Broader tags" } +SetTriple: 9169fb58a37a4bdfb1a91a4ec6130c2e, From entity, Value { r#type: Entity, value: "3d31f766b65148afa357271343a773de" } +SetTriple: 901570d5f8784c34b534da795581b3a1, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 901570d5f8784c34b534da795581b3a1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8633dd886974413399e1863a1dc7e2d8, Name, Value { r#type: Text, value: "Subtags " } +SetTriple: 57c7dccc4a784b569a3c259a59f39e96, From entity, Value { r#type: Entity, value: "8633dd886974413399e1863a1dc7e2d8" } +SetTriple: 57c7dccc4a784b569a3c259a59f39e96, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 57c7dccc4a784b569a3c259a59f39e96, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 57c7dccc4a784b569a3c259a59f39e96, Index, Value { r#type: Text, value: "a0" } +SetTriple: 57c7dccc4a784b569a3c259a59f39e96, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: f84162abcf5143b48c4e0d0e705f2c0d, From entity, Value { r#type: Entity, value: "3d31f766b65148afa357271343a773de" } +SetTriple: f84162abcf5143b48c4e0d0e705f2c0d, To entity, Value { r#type: Entity, value: "8633dd886974413399e1863a1dc7e2d8" } +SetTriple: f84162abcf5143b48c4e0d0e705f2c0d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f84162abcf5143b48c4e0d0e705f2c0d, Index, Value { r#type: Text, value: "a0" } +SetTriple: f84162abcf5143b48c4e0d0e705f2c0d, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: ae2a59dde2ba4451b50feb4988a797ce, From entity, Value { r#type: Entity, value: "3d31f766b65148afa357271343a773de" } +SetTriple: ae2a59dde2ba4451b50feb4988a797ce, To entity, Value { r#type: Entity, value: "acaf8408e36b4adda66225c2c7a63960" } +SetTriple: ae2a59dde2ba4451b50feb4988a797ce, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ae2a59dde2ba4451b50feb4988a797ce, Index, Value { r#type: Text, value: "a0" } +SetTriple: ae2a59dde2ba4451b50feb4988a797ce, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 9ff022e711ab4059aaf51f4cd652c927, To entity, Value { r#type: Entity, value: "fca2a465642640bb8e7ecf33742b5346" } +SetTriple: 9ff022e711ab4059aaf51f4cd652c927, From entity, Value { r#type: Entity, value: "b122952cc9734f8da1b163328a99fb7c" } +SetTriple: ea42d4ef5eb143969ca019819ab329b3, Name, Value { r#type: Text, value: "Broader tags" } +SetTriple: 9ff022e711ab4059aaf51f4cd652c927, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9ff022e711ab4059aaf51f4cd652c927, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9ff022e711ab4059aaf51f4cd652c927, Relation type, Value { r#type: Entity, value: "388ad59b1cc7413ca0bb34a4de48c758" } +SetTriple: 901570d5f8784c34b534da795581b3a1, Index, Value { r#type: Text, value: "a0" } +SetTriple: 901570d5f8784c34b534da795581b3a1, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: f7fa3b165e2b444792276091f2d68f60, From entity, Value { r#type: Entity, value: "8633dd886974413399e1863a1dc7e2d8" } +SetTriple: f7fa3b165e2b444792276091f2d68f60, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: f7fa3b165e2b444792276091f2d68f60, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f7fa3b165e2b444792276091f2d68f60, Index, Value { r#type: Text, value: "a0" } +SetTriple: f7fa3b165e2b444792276091f2d68f60, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 264c088a223048269c7825948965fb23, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 264c088a223048269c7825948965fb23, Index, Value { r#type: Text, value: "a0" } +SetTriple: 264c088a223048269c7825948965fb23, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: f6d6e8289ffd430fa37656a12504ee3c, From entity, Value { r#type: Entity, value: "21d9fa3cfecf42bc8f8e9fcc6ae2b0cd" } +SetTriple: f6d6e8289ffd430fa37656a12504ee3c, To entity, Value { r#type: Entity, value: "fa8e8e54f7424c00b73c05adee2b4545" } +SetTriple: f6d6e8289ffd430fa37656a12504ee3c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f6d6e8289ffd430fa37656a12504ee3c, Index, Value { r#type: Text, value: "a0" } +SetTriple: f6d6e8289ffd430fa37656a12504ee3c, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 264c088a223048269c7825948965fb23, From entity, Value { r#type: Entity, value: "8db09ed21a66408eab8d8e8f931a09cf" } +SetTriple: 264c088a223048269c7825948965fb23, To entity, Value { r#type: Entity, value: "fa8e8e54f7424c00b73c05adee2b4545" } +SetTriple: 70ff2263ba524aafa3ff27c8614576dc, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 70ff2263ba524aafa3ff27c8614576dc, Index, Value { r#type: Text, value: "a0" } +SetTriple: 70ff2263ba524aafa3ff27c8614576dc, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 70ff2263ba524aafa3ff27c8614576dc, From entity, Value { r#type: Entity, value: "b3b03c909b6d487cb2e2a7d685f120eb" } +SetTriple: 70ff2263ba524aafa3ff27c8614576dc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: aab1fe51301044c6b0dd7ef18213bbbd, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: aab1fe51301044c6b0dd7ef18213bbbd, Index, Value { r#type: Text, value: "a0" } +SetTriple: aab1fe51301044c6b0dd7ef18213bbbd, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: aab1fe51301044c6b0dd7ef18213bbbd, From entity, Value { r#type: Entity, value: "c7ce21d5d91544e6ac0bad109a51026b" } +SetTriple: aab1fe51301044c6b0dd7ef18213bbbd, To entity, Value { r#type: Entity, value: "fa8e8e54f7424c00b73c05adee2b4545" } +SetTriple: 2276f4042c394e90a31e938d5f252f00, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9e432132d7494979977fa9f8f8e63890, From entity, Value { r#type: Entity, value: "d5785e7fca4d4eaa96d3531cbef6a537" } +SetTriple: 9e432132d7494979977fa9f8f8e63890, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 9e432132d7494979977fa9f8f8e63890, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9e432132d7494979977fa9f8f8e63890, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9e432132d7494979977fa9f8f8e63890, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 48e3c8903b1f40d888bcac8d07129e69, From entity, Value { r#type: Entity, value: "d5785e7fca4d4eaa96d3531cbef6a537" } +SetTriple: 48e3c8903b1f40d888bcac8d07129e69, To entity, Value { r#type: Entity, value: "78fdfe4320b64050bfd255da1cdf4850" } +SetTriple: 48e3c8903b1f40d888bcac8d07129e69, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 48e3c8903b1f40d888bcac8d07129e69, Index, Value { r#type: Text, value: "a0" } +SetTriple: 48e3c8903b1f40d888bcac8d07129e69, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 2ec9c4fd2bab451c832614056fbca6c5, From entity, Value { r#type: Entity, value: "78fdfe4320b64050bfd255da1cdf4850" } +SetTriple: 2ec9c4fd2bab451c832614056fbca6c5, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 2ec9c4fd2bab451c832614056fbca6c5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2ec9c4fd2bab451c832614056fbca6c5, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2ec9c4fd2bab451c832614056fbca6c5, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 135cc2fec30643cf988a48d4e882fe8b, From entity, Value { r#type: Entity, value: "8b07ea978d504aa38f15e4da8659f685" } +SetTriple: 135cc2fec30643cf988a48d4e882fe8b, To entity, Value { r#type: Entity, value: "300be9f09bbb4ae49dfa5581fc32a1ff" } +SetTriple: 135cc2fec30643cf988a48d4e882fe8b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 135cc2fec30643cf988a48d4e882fe8b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 135cc2fec30643cf988a48d4e882fe8b, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 2276f4042c394e90a31e938d5f252f00, From entity, Value { r#type: Entity, value: "300be9f09bbb4ae49dfa5581fc32a1ff" } +SetTriple: 2276f4042c394e90a31e938d5f252f00, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 2276f4042c394e90a31e938d5f252f00, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2276f4042c394e90a31e938d5f252f00, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 138275c02be64deaa36ee45e3096149c, From entity, Value { r#type: Entity, value: "300be9f09bbb4ae49dfa5581fc32a1ff" } +SetTriple: 138275c02be64deaa36ee45e3096149c, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 138275c02be64deaa36ee45e3096149c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 138275c02be64deaa36ee45e3096149c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 138275c02be64deaa36ee45e3096149c, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 8d01491b70ad459da157de0c23c3cf01, From entity, Value { r#type: Entity, value: "78fdfe4320b64050bfd255da1cdf4850" } +SetTriple: 8d01491b70ad459da157de0c23c3cf01, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 8d01491b70ad459da157de0c23c3cf01, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8d01491b70ad459da157de0c23c3cf01, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8d01491b70ad459da157de0c23c3cf01, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: d5785e7fca4d4eaa96d3531cbef6a537, Name, Value { r#type: Text, value: "Social service category" } +SetTriple: 78fdfe4320b64050bfd255da1cdf4850, Name, Value { r#type: Text, value: "Social services" } +SetTriple: Service, Name, Value { r#type: Text, value: "Social service" } +SetTriple: 300be9f09bbb4ae49dfa5581fc32a1ff, Name, Value { r#type: Text, value: "Social service categories" } +SetTriple: 324525125002454d9addccb1b93913b9, Name, Value { r#type: Text, value: "Quotes that oppose the claim" } +SetTriple: Quotes, Name, Value { r#type: Text, value: "Quotes that support the claim" } +SetTriple: 94ab02229c0f41968347b35ee462b3c7, Index, Value { r#type: Text, value: "a0" } +SetTriple: 94ab02229c0f41968347b35ee462b3c7, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 53e2d1e48531479194a55cad03171d47, From entity, Value { r#type: Entity, value: "324525125002454d9addccb1b93913b9" } +SetTriple: 53e2d1e48531479194a55cad03171d47, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 53e2d1e48531479194a55cad03171d47, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 53e2d1e48531479194a55cad03171d47, Index, Value { r#type: Text, value: "a0" } +SetTriple: 53e2d1e48531479194a55cad03171d47, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 54defb8ea4d8461ba3f6602525f372b0, From entity, Value { r#type: Entity, value: "3d31f766b65148afa357271343a773de" } +SetTriple: 54defb8ea4d8461ba3f6602525f372b0, To entity, Value { r#type: Entity, value: "e6184c8e261d46df9c4359fccde3395c" } +SetTriple: 54defb8ea4d8461ba3f6602525f372b0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 54defb8ea4d8461ba3f6602525f372b0, Index, Value { r#type: Text, value: "a0" } +SetTriple: 54defb8ea4d8461ba3f6602525f372b0, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 44dfce6b9b3b4e0e88f85cce4a6b4179, From entity, Value { r#type: Entity, value: "324525125002454d9addccb1b93913b9" } +SetTriple: 94ab02229c0f41968347b35ee462b3c7, From entity, Value { r#type: Entity, value: "fa8e8e54f7424c00b73c05adee2b4545" } +SetTriple: 44dfce6b9b3b4e0e88f85cce4a6b4179, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 44dfce6b9b3b4e0e88f85cce4a6b4179, Index, Value { r#type: Text, value: "a0" } +SetTriple: 44dfce6b9b3b4e0e88f85cce4a6b4179, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 94ab02229c0f41968347b35ee462b3c7, To entity, Value { r#type: Entity, value: "324525125002454d9addccb1b93913b9" } +SetTriple: 94ab02229c0f41968347b35ee462b3c7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 44dfce6b9b3b4e0e88f85cce4a6b4179, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 7f7b30f1837d4218a26ccbb6ef3c60fc, From entity, Value { r#type: Entity, value: "737fec6ced9f4bc3b758dc5a38797c97" } +SetTriple: 7f7b30f1837d4218a26ccbb6ef3c60fc, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 7f7b30f1837d4218a26ccbb6ef3c60fc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7f7b30f1837d4218a26ccbb6ef3c60fc, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7f7b30f1837d4218a26ccbb6ef3c60fc, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 737fec6ced9f4bc3b758dc5a38797c97, Name, Value { r#type: Text, value: "Church" } +SetTriple: 8cf791bf38ca40c197edbc3a3644edc5, To entity, Value { r#type: Entity, value: "3d31f766b65148afa357271343a773de" } +SetTriple: 8cf791bf38ca40c197edbc3a3644edc5, From entity, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 8cf791bf38ca40c197edbc3a3644edc5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8cf791bf38ca40c197edbc3a3644edc5, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8cf791bf38ca40c197edbc3a3644edc5, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 3288024c0bbd4db3aaee73605bb53f5d, To entity, Value { r#type: Entity, value: "3d31f766b65148afa357271343a773de" } +SetTriple: 3288024c0bbd4db3aaee73605bb53f5d, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 3288024c0bbd4db3aaee73605bb53f5d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3288024c0bbd4db3aaee73605bb53f5d, From entity, Value { r#type: Entity, value: "fca2a465642640bb8e7ecf33742b5346" } +SetTriple: 3288024c0bbd4db3aaee73605bb53f5d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7fc92bb68fa74816a7e6c126586690a1, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7fc92bb68fa74816a7e6c126586690a1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7fc92bb68fa74816a7e6c126586690a1, To entity, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 7fc92bb68fa74816a7e6c126586690a1, From entity, Value { r#type: Entity, value: "b3b03c909b6d487cb2e2a7d685f120eb" } +SetTriple: 7fc92bb68fa74816a7e6c126586690a1, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 0a54ed717e2348a3a6fd916ff43c144e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7884e9e9085344a9b30f2b46790bef1a, Name, Value { r#type: Text, value: "Provided services" } +SetTriple: b9103260fc7c4e37bd2cfd509e5af3cd, From entity, Value { r#type: Entity, value: "7884e9e9085344a9b30f2b46790bef1a" } +SetTriple: b9103260fc7c4e37bd2cfd509e5af3cd, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: b9103260fc7c4e37bd2cfd509e5af3cd, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b9103260fc7c4e37bd2cfd509e5af3cd, Index, Value { r#type: Text, value: "a0" } +SetTriple: b9103260fc7c4e37bd2cfd509e5af3cd, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: be7f5ef5667f43c4aa243a47fa81f9cf, From entity, Value { r#type: Entity, value: "7884e9e9085344a9b30f2b46790bef1a" } +SetTriple: be7f5ef5667f43c4aa243a47fa81f9cf, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: be7f5ef5667f43c4aa243a47fa81f9cf, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: be7f5ef5667f43c4aa243a47fa81f9cf, Index, Value { r#type: Text, value: "a0" } +SetTriple: be7f5ef5667f43c4aa243a47fa81f9cf, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: ab9aaf932f6d4983bd217eab62ef38d3, From entity, Value { r#type: Entity, value: "b122952cc9734f8da1b163328a99fb7c" } +SetTriple: ab9aaf932f6d4983bd217eab62ef38d3, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: ab9aaf932f6d4983bd217eab62ef38d3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ab9aaf932f6d4983bd217eab62ef38d3, Index, Value { r#type: Text, value: "a0" } +SetTriple: ab9aaf932f6d4983bd217eab62ef38d3, Relation type, Value { r#type: Entity, value: "388ad59b1cc7413ca0bb34a4de48c758" } +SetTriple: d5e98e8134154850addd3f106cae1e62, From entity, Value { r#type: Entity, value: "b122952cc9734f8da1b163328a99fb7c" } +SetTriple: d5e98e8134154850addd3f106cae1e62, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: d5e98e8134154850addd3f106cae1e62, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d5e98e8134154850addd3f106cae1e62, Index, Value { r#type: Text, value: "a0" } +SetTriple: d5e98e8134154850addd3f106cae1e62, Relation type, Value { r#type: Entity, value: "388ad59b1cc7413ca0bb34a4de48c758" } +SetTriple: 997f541a230b46f1b1676c67b3a824ca, From entity, Value { r#type: Entity, value: "b122952cc9734f8da1b163328a99fb7c" } +SetTriple: 997f541a230b46f1b1676c67b3a824ca, To entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: 997f541a230b46f1b1676c67b3a824ca, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 997f541a230b46f1b1676c67b3a824ca, Index, Value { r#type: Text, value: "a0" } +SetTriple: 997f541a230b46f1b1676c67b3a824ca, Relation type, Value { r#type: Entity, value: "388ad59b1cc7413ca0bb34a4de48c758" } +SetTriple: 44d6fbb929a6435384b0bff41b8fb8a9, From entity, Value { r#type: Entity, value: "b122952cc9734f8da1b163328a99fb7c" } +SetTriple: 44d6fbb929a6435384b0bff41b8fb8a9, To entity, Value { r#type: Entity, value: "5e4911b82093411ea445bc2124d7f8e3" } +SetTriple: 44d6fbb929a6435384b0bff41b8fb8a9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 44d6fbb929a6435384b0bff41b8fb8a9, Index, Value { r#type: Text, value: "a0" } +SetTriple: 44d6fbb929a6435384b0bff41b8fb8a9, Relation type, Value { r#type: Entity, value: "388ad59b1cc7413ca0bb34a4de48c758" } +SetTriple: 63c05bee34e443ae8c3dc9f1f3e8471f, From entity, Value { r#type: Entity, value: "b122952cc9734f8da1b163328a99fb7c" } +SetTriple: 63c05bee34e443ae8c3dc9f1f3e8471f, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 63c05bee34e443ae8c3dc9f1f3e8471f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 63c05bee34e443ae8c3dc9f1f3e8471f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 63c05bee34e443ae8c3dc9f1f3e8471f, Relation type, Value { r#type: Entity, value: "388ad59b1cc7413ca0bb34a4de48c758" } +SetTriple: c7d6edadddd4410ead8994d4310990fe, From entity, Value { r#type: Entity, value: "b122952cc9734f8da1b163328a99fb7c" } +SetTriple: c7d6edadddd4410ead8994d4310990fe, To entity, Value { r#type: Entity, value: "a89fcd1081b343e48f770d9561a68acd" } +SetTriple: c7d6edadddd4410ead8994d4310990fe, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c7d6edadddd4410ead8994d4310990fe, Index, Value { r#type: Text, value: "a0" } +SetTriple: c7d6edadddd4410ead8994d4310990fe, Relation type, Value { r#type: Entity, value: "388ad59b1cc7413ca0bb34a4de48c758" } +SetTriple: d4ecac44575849b4947113b0873a7839, From entity, Value { r#type: Entity, value: "b122952cc9734f8da1b163328a99fb7c" } +SetTriple: d4ecac44575849b4947113b0873a7839, To entity, Value { r#type: Entity, value: "c4b9a30a92a945748f9b31c41eb8bbd8" } +SetTriple: d4ecac44575849b4947113b0873a7839, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d4ecac44575849b4947113b0873a7839, Index, Value { r#type: Text, value: "a0" } +SetTriple: d4ecac44575849b4947113b0873a7839, Relation type, Value { r#type: Entity, value: "388ad59b1cc7413ca0bb34a4de48c758" } +SetTriple: c7ef13bc4ca746218ae0f1cac3ab6e53, From entity, Value { r#type: Entity, value: "b122952cc9734f8da1b163328a99fb7c" } +SetTriple: c7ef13bc4ca746218ae0f1cac3ab6e53, To entity, Value { r#type: Entity, value: "cb36140946954676b62fc2290613a430" } +SetTriple: c7ef13bc4ca746218ae0f1cac3ab6e53, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c7ef13bc4ca746218ae0f1cac3ab6e53, Index, Value { r#type: Text, value: "a0" } +SetTriple: c7ef13bc4ca746218ae0f1cac3ab6e53, Relation type, Value { r#type: Entity, value: "388ad59b1cc7413ca0bb34a4de48c758" } +SetTriple: 789d58cc28384be1b008405348ac9814, From entity, Value { r#type: Entity, value: "b122952cc9734f8da1b163328a99fb7c" } +SetTriple: 789d58cc28384be1b008405348ac9814, To entity, Value { r#type: Entity, value: "e8010874d3304a4d990762e89a19371a" } +SetTriple: 789d58cc28384be1b008405348ac9814, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 789d58cc28384be1b008405348ac9814, Index, Value { r#type: Text, value: "a0" } +SetTriple: 789d58cc28384be1b008405348ac9814, Relation type, Value { r#type: Entity, value: "388ad59b1cc7413ca0bb34a4de48c758" } +SetTriple: 82c9da686cbb4e2eaa69d705bbb273f8, From entity, Value { r#type: Entity, value: "b122952cc9734f8da1b163328a99fb7c" } +SetTriple: 82c9da686cbb4e2eaa69d705bbb273f8, To entity, Value { r#type: Entity, value: "f9804f7c0e2e4658a8489aa65bbe411b" } +SetTriple: 82c9da686cbb4e2eaa69d705bbb273f8, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 82c9da686cbb4e2eaa69d705bbb273f8, Index, Value { r#type: Text, value: "a0" } +SetTriple: 82c9da686cbb4e2eaa69d705bbb273f8, Relation type, Value { r#type: Entity, value: "388ad59b1cc7413ca0bb34a4de48c758" } +SetTriple: 4dfca9a1975c43b0b715812f66a5e074, From entity, Value { r#type: Entity, value: "b122952cc9734f8da1b163328a99fb7c" } +SetTriple: 4dfca9a1975c43b0b715812f66a5e074, To entity, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 4dfca9a1975c43b0b715812f66a5e074, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4dfca9a1975c43b0b715812f66a5e074, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4dfca9a1975c43b0b715812f66a5e074, Relation type, Value { r#type: Entity, value: "388ad59b1cc7413ca0bb34a4de48c758" } +SetTriple: 0a54ed717e2348a3a6fd916ff43c144e, From entity, Value { r#type: Entity, value: "b3b03c909b6d487cb2e2a7d685f120eb" } +SetTriple: 0a54ed717e2348a3a6fd916ff43c144e, To entity, Value { r#type: Entity, value: "7884e9e9085344a9b30f2b46790bef1a" } +SetTriple: 0a54ed717e2348a3a6fd916ff43c144e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0a54ed717e2348a3a6fd916ff43c144e, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: d69cfc398c1649a4a587d5520bb3e6e0, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 3e4a8322ca9144459f9e77f9a80ebd74, From entity, Value { r#type: Entity, value: "737fec6ced9f4bc3b758dc5a38797c97" } +SetTriple: 3e4a8322ca9144459f9e77f9a80ebd74, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: 3e4a8322ca9144459f9e77f9a80ebd74, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3e4a8322ca9144459f9e77f9a80ebd74, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3e4a8322ca9144459f9e77f9a80ebd74, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: d69cfc398c1649a4a587d5520bb3e6e0, From entity, Value { r#type: Entity, value: "737fec6ced9f4bc3b758dc5a38797c97" } +SetTriple: d69cfc398c1649a4a587d5520bb3e6e0, To entity, Value { r#type: Entity, value: "fca2a465642640bb8e7ecf33742b5346" } +SetTriple: d69cfc398c1649a4a587d5520bb3e6e0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d69cfc398c1649a4a587d5520bb3e6e0, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8e109e99145a4b59a5b270b3632ba8f3, From entity, Value { r#type: Entity, value: "737fec6ced9f4bc3b758dc5a38797c97" } +SetTriple: b3ca83f1b94d4a8382e2f93acfabcdcc, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: b3ca83f1b94d4a8382e2f93acfabcdcc, Index, Value { r#type: Text, value: "a0" } +SetTriple: b3ca83f1b94d4a8382e2f93acfabcdcc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b3ca83f1b94d4a8382e2f93acfabcdcc, To entity, Value { r#type: Entity, value: "7884e9e9085344a9b30f2b46790bef1a" } +SetTriple: b3ca83f1b94d4a8382e2f93acfabcdcc, From entity, Value { r#type: Entity, value: "737fec6ced9f4bc3b758dc5a38797c97" } +SetTriple: 8e109e99145a4b59a5b270b3632ba8f3, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 8e109e99145a4b59a5b270b3632ba8f3, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8e109e99145a4b59a5b270b3632ba8f3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8e109e99145a4b59a5b270b3632ba8f3, To entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: 827dc49365d64f7b83661c95ea5bf1b7, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 9c686841a2ca4aa394ff34f5180a7b63, From entity, Value { r#type: Entity, value: "737fec6ced9f4bc3b758dc5a38797c97" } +SetTriple: 9c686841a2ca4aa394ff34f5180a7b63, To entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: 9c686841a2ca4aa394ff34f5180a7b63, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9c686841a2ca4aa394ff34f5180a7b63, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9c686841a2ca4aa394ff34f5180a7b63, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 827dc49365d64f7b83661c95ea5bf1b7, From entity, Value { r#type: Entity, value: "737fec6ced9f4bc3b758dc5a38797c97" } +SetTriple: 827dc49365d64f7b83661c95ea5bf1b7, To entity, Value { r#type: Entity, value: "7884e9e9085344a9b30f2b46790bef1a" } +SetTriple: 827dc49365d64f7b83661c95ea5bf1b7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 827dc49365d64f7b83661c95ea5bf1b7, Index, Value { r#type: Text, value: "a0" } +SetTriple: 921fd72d12fb4998a94fd9b2b4f148a7, From entity, Value { r#type: Entity, value: "f2a6a7bba0e841199f57ddf6bd4c8d27" } +SetTriple: 921fd72d12fb4998a94fd9b2b4f148a7, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 921fd72d12fb4998a94fd9b2b4f148a7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 921fd72d12fb4998a94fd9b2b4f148a7, Index, Value { r#type: Text, value: "a0" } +SetTriple: 921fd72d12fb4998a94fd9b2b4f148a7, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: f2a6a7bba0e841199f57ddf6bd4c8d27, Name, Value { r#type: Text, value: "Sub services" } +SetTriple: Social service categories, Name, Value { r#type: Text, value: "Broader services" } +SetTriple: Social service, Name, Value { r#type: Text, value: "Service" } +SetTriple: ebe3fbc18f824c68804a73ef0e748e2d, From entity, Value { r#type: Entity, value: "f2a6a7bba0e841199f57ddf6bd4c8d27" } +SetTriple: 56b250c861d74522806d8401e4d422dc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 56b250c861d74522806d8401e4d422dc, To entity, Value { r#type: Entity, value: "f2a6a7bba0e841199f57ddf6bd4c8d27" } +SetTriple: 56b250c861d74522806d8401e4d422dc, From entity, Value { r#type: Entity, value: "8b07ea978d504aa38f15e4da8659f685" } +SetTriple: ebe3fbc18f824c68804a73ef0e748e2d, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: ebe3fbc18f824c68804a73ef0e748e2d, Index, Value { r#type: Text, value: "a0" } +SetTriple: ebe3fbc18f824c68804a73ef0e748e2d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ebe3fbc18f824c68804a73ef0e748e2d, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 56b250c861d74522806d8401e4d422dc, Index, Value { r#type: Text, value: "a0" } +SetTriple: 56b250c861d74522806d8401e4d422dc, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 395e42879d614b1d879a47781a0d356b, To entity, Value { r#type: Entity, value: "fa8e8e54f7424c00b73c05adee2b4545" } +SetTriple: 395e42879d614b1d879a47781a0d356b, From entity, Value { r#type: Entity, value: "55a7c6143622426a84568a493eed94b9" } +SetTriple: 395e42879d614b1d879a47781a0d356b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 395e42879d614b1d879a47781a0d356b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 395e42879d614b1d879a47781a0d356b, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: f2570ece929c4b52b0ef6dbc71f3b522, Index, Value { r#type: Text, value: "a0" } +SetTriple: f06d8e267a1349f0ab3264b85c3b4a68, From entity, Value { r#type: Entity, value: "abbbe7f19c4d4daca63ed7363ca9b9a4" } +SetTriple: f06d8e267a1349f0ab3264b85c3b4a68, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: f06d8e267a1349f0ab3264b85c3b4a68, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 60d487641bee42e6b16a219d6f7677aa, Name, Value { r#type: Text, value: "Subpage" } +SetTriple: abbbe7f19c4d4daca63ed7363ca9b9a4, Name, Value { r#type: Text, value: "Page" } +SetTriple: ea609aac4f844df4b532c4c537cb1eed, To entity, Value { r#type: Entity, value: "60d487641bee42e6b16a219d6f7677aa" } +SetTriple: ea609aac4f844df4b532c4c537cb1eed, From entity, Value { r#type: Entity, value: "abbbe7f19c4d4daca63ed7363ca9b9a4" } +SetTriple: f06d8e267a1349f0ab3264b85c3b4a68, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: f06d8e267a1349f0ab3264b85c3b4a68, Index, Value { r#type: Text, value: "a0" } +SetTriple: ea609aac4f844df4b532c4c537cb1eed, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ea609aac4f844df4b532c4c537cb1eed, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: ea609aac4f844df4b532c4c537cb1eed, Index, Value { r#type: Text, value: "a0" } +SetTriple: f2570ece929c4b52b0ef6dbc71f3b522, From entity, Value { r#type: Entity, value: "60d487641bee42e6b16a219d6f7677aa" } +SetTriple: f2570ece929c4b52b0ef6dbc71f3b522, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: f2570ece929c4b52b0ef6dbc71f3b522, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: f2570ece929c4b52b0ef6dbc71f3b522, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3952496d140c42bdb41c2b26febc6cdc, From entity, Value { r#type: Entity, value: "abbbe7f19c4d4daca63ed7363ca9b9a4" } +SetTriple: Subpage, Name, Value { r#type: Text, value: "Subpages" } +SetTriple: 3952496d140c42bdb41c2b26febc6cdc, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 3952496d140c42bdb41c2b26febc6cdc, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3952496d140c42bdb41c2b26febc6cdc, To entity, Value { r#type: Entity, value: "22e92b399886473195ce4997455481ec" } +SetTriple: 3952496d140c42bdb41c2b26febc6cdc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0a0fb7410ecf4fe4ba5b7ee0ec47ac87, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0a0fb7410ecf4fe4ba5b7ee0ec47ac87, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0a0fb7410ecf4fe4ba5b7ee0ec47ac87, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 0a0fb7410ecf4fe4ba5b7ee0ec47ac87, From entity, Value { r#type: Entity, value: "22e92b399886473195ce4997455481ec" } +SetTriple: 0a0fb7410ecf4fe4ba5b7ee0ec47ac87, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 22e92b399886473195ce4997455481ec, Name, Value { r#type: Text, value: "Broader pages" } +SetTriple: 69454891566f4eca9ffd49ccf8d2d289, To entity, Value { r#type: Entity, value: "" } +SetTriple: 69454891566f4eca9ffd49ccf8d2d289, Index, Value { r#type: Text, value: "a0" } +SetTriple: 69454891566f4eca9ffd49ccf8d2d289, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 69454891566f4eca9ffd49ccf8d2d289, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 69454891566f4eca9ffd49ccf8d2d289, From entity, Value { r#type: Entity, value: "cd598fe88dc540fbafc727d363aa2b31" } +SetTriple: 6f9748d8c9e84830b30269fa40e0a170, From entity, Value { r#type: Entity, value: "cd598fe88dc540fbafc727d363aa2b31" } +SetTriple: 0581e9fbbf3a4430a477b1a0ea37e330, Index, Value { r#type: Text, value: "a2" } +SetTriple: 0581e9fbbf3a4430a477b1a0ea37e330, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0581e9fbbf3a4430a477b1a0ea37e330, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 49b2dc9b16c546e4b424c27c229d84e2, Name, Value { r#type: Text, value: "Attributes" } +SetTriple: 0581e9fbbf3a4430a477b1a0ea37e330, To entity, Value { r#type: Entity, value: "49b2dc9b16c546e4b424c27c229d84e2" } +SetTriple: 0581e9fbbf3a4430a477b1a0ea37e330, From entity, Value { r#type: Entity, value: "f1b9fd886388436e95b551aafaea77e5" } +SetTriple: Attributes, Filter, Value { r#type: Text, value: "{typeIds_contains_nocase: [\"attribute\"], entityOf_: {space: \"ab7d4b9e02f840dab9746d352acb0ac6\"}}" } +SetTriple: 850cf7284e16407e959c708518bb093d, From entity, Value { r#type: Entity, value: "49b2dc9b16c546e4b424c27c229d84e2" } +SetTriple: 850cf7284e16407e959c708518bb093d, To entity, Value { r#type: Entity, value: "f1b9fd886388436e95b551aafaea77e5" } +SetTriple: 850cf7284e16407e959c708518bb093d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 850cf7284e16407e959c708518bb093d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 850cf7284e16407e959c708518bb093d, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: fa051ea821704a8cabbbba8d5d571663, From entity, Value { r#type: Entity, value: "49b2dc9b16c546e4b424c27c229d84e2" } +SetTriple: fa051ea821704a8cabbbba8d5d571663, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: fa051ea821704a8cabbbba8d5d571663, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: fa051ea821704a8cabbbba8d5d571663, Index, Value { r#type: Text, value: "a0" } +SetTriple: fa051ea821704a8cabbbba8d5d571663, Relation type, Value { r#type: Entity, value: "577bd9fbb29e4e2bb5f8f48aedbd26ac" } +SetTriple: 1e0f1968292243d69fe32d28bde429fd, From entity, Value { r#type: Entity, value: "49b2dc9b16c546e4b424c27c229d84e2" } +SetTriple: 1e0f1968292243d69fe32d28bde429fd, To entity, Value { r#type: Entity, value: "88d5925217ae4d9aa36724710129eb47" } +SetTriple: 1e0f1968292243d69fe32d28bde429fd, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1e0f1968292243d69fe32d28bde429fd, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1e0f1968292243d69fe32d28bde429fd, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 6f9748d8c9e84830b30269fa40e0a170, To entity, Value { r#type: Entity, value: "fa8e8e54f7424c00b73c05adee2b4545" } +SetTriple: 6f9748d8c9e84830b30269fa40e0a170, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6f9748d8c9e84830b30269fa40e0a170, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6f9748d8c9e84830b30269fa40e0a170, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: f3d215a04c1744598b78b2ec6236f2e7, From entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: f3d215a04c1744598b78b2ec6236f2e7, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: f3d215a04c1744598b78b2ec6236f2e7, Index, Value { r#type: Text, value: "a0" } +SetTriple: f3d215a04c1744598b78b2ec6236f2e7, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: f3d215a04c1744598b78b2ec6236f2e7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: defa20720716492eaaaf1f3c781212e5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: defa20720716492eaaaf1f3c781212e5, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: defa20720716492eaaaf1f3c781212e5, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: defa20720716492eaaaf1f3c781212e5, From entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: defa20720716492eaaaf1f3c781212e5, Index, Value { r#type: Text, value: "a0" } +SetTriple: 616373c28d83492ab364654d9ae9804e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 616373c28d83492ab364654d9ae9804e, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: f10e41b701b947bcb9f2ff0add718635, From entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: f10e41b701b947bcb9f2ff0add718635, To entity, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: f10e41b701b947bcb9f2ff0add718635, Index, Value { r#type: Text, value: "a0" } +SetTriple: f10e41b701b947bcb9f2ff0add718635, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f10e41b701b947bcb9f2ff0add718635, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 8f914e3478f546999e99878bb1486e83, From entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 8f914e3478f546999e99878bb1486e83, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 8f914e3478f546999e99878bb1486e83, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8f914e3478f546999e99878bb1486e83, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8f914e3478f546999e99878bb1486e83, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 616373c28d83492ab364654d9ae9804e, From entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 616373c28d83492ab364654d9ae9804e, To entity, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 616373c28d83492ab364654d9ae9804e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 020b555c40744732b816aab985fa9667, Index, Value { r#type: Text, value: "a0" } +SetTriple: 020b555c40744732b816aab985fa9667, From entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 020b555c40744732b816aab985fa9667, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 020b555c40744732b816aab985fa9667, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 020b555c40744732b816aab985fa9667, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: eb05ec082f0c4cad85b0710539d00898, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: eb05ec082f0c4cad85b0710539d00898, From entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: eb05ec082f0c4cad85b0710539d00898, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: eb05ec082f0c4cad85b0710539d00898, Index, Value { r#type: Text, value: "a0" } +SetTriple: eb05ec082f0c4cad85b0710539d00898, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 15ff8ba209b84387afd4cec2cd54b345, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 15ff8ba209b84387afd4cec2cd54b345, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 15ff8ba209b84387afd4cec2cd54b345, From entity, Value { r#type: Entity, value: "8ba973ae0443457ca4ed2ea4f6f101ce" } +SetTriple: 15ff8ba209b84387afd4cec2cd54b345, Index, Value { r#type: Text, value: "a0" } +SetTriple: 15ff8ba209b84387afd4cec2cd54b345, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: dcecb3581f6a488c84366528683fe4a6, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: dcecb3581f6a488c84366528683fe4a6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: dcecb3581f6a488c84366528683fe4a6, Index, Value { r#type: Text, value: "a0" } +SetTriple: dcecb3581f6a488c84366528683fe4a6, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: dcecb3581f6a488c84366528683fe4a6, From entity, Value { r#type: Entity, value: "79e43124950544cb93d67b93ddd2fd3a" } +SetTriple: 065cece8ad294987a318bceb43181809, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 065cece8ad294987a318bceb43181809, From entity, Value { r#type: Entity, value: "22e92b399886473195ce4997455481ec" } +SetTriple: 065cece8ad294987a318bceb43181809, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 065cece8ad294987a318bceb43181809, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 065cece8ad294987a318bceb43181809, Index, Value { r#type: Text, value: "a0" } +SetTriple: d4fdad4fb75d4fe4a839d8ff908a82e5, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: d4fdad4fb75d4fe4a839d8ff908a82e5, Index, Value { r#type: Text, value: "a0" } +SetTriple: d4fdad4fb75d4fe4a839d8ff908a82e5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d4fdad4fb75d4fe4a839d8ff908a82e5, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: d4fdad4fb75d4fe4a839d8ff908a82e5, From entity, Value { r#type: Entity, value: "60d487641bee42e6b16a219d6f7677aa" } +SetTriple: 493a36d24f264633b084b6d6b6d399e1, From entity, Value { r#type: Entity, value: "abbbe7f19c4d4daca63ed7363ca9b9a4" } +SetTriple: 493a36d24f264633b084b6d6b6d399e1, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 493a36d24f264633b084b6d6b6d399e1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 493a36d24f264633b084b6d6b6d399e1, Index, Value { r#type: Text, value: "a0" } +SetTriple: 493a36d24f264633b084b6d6b6d399e1, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: cfbbb7acdbc448a9b83b1da5510bde55, From entity, Value { r#type: Entity, value: "c8e8fd5f011d4c8e8aaf1a2ffc5b48fd" } +SetTriple: cfbbb7acdbc448a9b83b1da5510bde55, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: cfbbb7acdbc448a9b83b1da5510bde55, Index, Value { r#type: Text, value: "a0" } +SetTriple: cfbbb7acdbc448a9b83b1da5510bde55, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: f28b14b9c28d4de8a22187a5c13add96, From entity, Value { r#type: Entity, value: "6db5eaa51cf6463e88f987bd631db044" } +SetTriple: f28b14b9c28d4de8a22187a5c13add96, To entity, Value { r#type: Entity, value: "f0ff2d4071ad4fa697e65d7fa5d0e226" } +SetTriple: f28b14b9c28d4de8a22187a5c13add96, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f28b14b9c28d4de8a22187a5c13add96, Index, Value { r#type: Text, value: "a0" } +SetTriple: f28b14b9c28d4de8a22187a5c13add96, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 932b3690d7c448ba8572e26166a0fec3, From entity, Value { r#type: Entity, value: "c670247893c74af48f2a285a46cc19ca" } +SetTriple: cfbbb7acdbc448a9b83b1da5510bde55, To entity, Value { r#type: Entity, value: "b0379af244de4106b4522203ec49418c" } +SetTriple: 932b3690d7c448ba8572e26166a0fec3, To entity, Value { r#type: Entity, value: "587429e126b04aa9893e4ea21b2d8287" } +SetTriple: 932b3690d7c448ba8572e26166a0fec3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 932b3690d7c448ba8572e26166a0fec3, Index, Value { r#type: Text, value: "a0" } +SetTriple: 932b3690d7c448ba8572e26166a0fec3, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: Social services, Name, Value { r#type: Text, value: "Subservices" } +SetTriple: 06ea1abe4c624789bd4eac414045a180, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 06ea1abe4c624789bd4eac414045a180, From entity, Value { r#type: Entity, value: "c63271bfe4f34d74b4797dca335c280a" } +SetTriple: 3b5587c369ae4040a840e00faeeb96ab, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 3b5587c369ae4040a840e00faeeb96ab, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3b5587c369ae4040a840e00faeeb96ab, From entity, Value { r#type: Entity, value: "b6009f6600b04baab86f97db7bcbb14a" } +SetTriple: 06ea1abe4c624789bd4eac414045a180, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3b5587c369ae4040a840e00faeeb96ab, To entity, Value { r#type: Entity, value: "167664f668f840e1976b20bd16ed8d47" } +SetTriple: 3b5587c369ae4040a840e00faeeb96ab, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 06ea1abe4c624789bd4eac414045a180, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 06ea1abe4c624789bd4eac414045a180, To entity, Value { r#type: Entity, value: "167664f668f840e1976b20bd16ed8d47" } +SetTriple: 71df84b4a29a461a9b36d2396b70cdf7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6d01d30a6fb24c9bbf6cc6d5d5ee6559, Name, Value { r#type: Text, value: "Page1" } +SetTriple: ffcb36fa02ba46709a2a082d34c24288, Name, Value { r#type: Text, value: "Page1" } +SetTriple: 71df84b4a29a461a9b36d2396b70cdf7, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 71df84b4a29a461a9b36d2396b70cdf7, Index, Value { r#type: Text, value: "a0" } +SetTriple: 71df84b4a29a461a9b36d2396b70cdf7, To entity, Value { r#type: Entity, value: "22e92b399886473195ce4997455481ec" } +SetTriple: 71df84b4a29a461a9b36d2396b70cdf7, From entity, Value { r#type: Entity, value: "6d01d30a6fb24c9bbf6cc6d5d5ee6559" } +SetTriple: 6bc9420fd7fb4c47a6fec6ad9c16a707, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 6bc9420fd7fb4c47a6fec6ad9c16a707, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6bc9420fd7fb4c47a6fec6ad9c16a707, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6bc9420fd7fb4c47a6fec6ad9c16a707, To entity, Value { r#type: Entity, value: "60d487641bee42e6b16a219d6f7677aa" } +SetTriple: 6bc9420fd7fb4c47a6fec6ad9c16a707, From entity, Value { r#type: Entity, value: "6d01d30a6fb24c9bbf6cc6d5d5ee6559" } +SetTriple: 2fb90592a742456e98aa22edf6c708eb, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 2fb90592a742456e98aa22edf6c708eb, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2fb90592a742456e98aa22edf6c708eb, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2fb90592a742456e98aa22edf6c708eb, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 2fb90592a742456e98aa22edf6c708eb, From entity, Value { r#type: Entity, value: "6d01d30a6fb24c9bbf6cc6d5d5ee6559" } +SetTriple: 694d82291dc94e4ab60d6746fceeee74, From entity, Value { r#type: Entity, value: "1a9fc4a00fec4eeaa075eec7ebd0d043" } +SetTriple: 848fa815be24480099e5375a5987b345, From entity, Value { r#type: Entity, value: "1a9fc4a00fec4eeaa075eec7ebd0d043" } +SetTriple: ab618c62fe394b98a5983271ad5ba99d, From entity, Value { r#type: Entity, value: "6d01d30a6fb24c9bbf6cc6d5d5ee6559" } +SetTriple: ab618c62fe394b98a5983271ad5ba99d, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: ab618c62fe394b98a5983271ad5ba99d, Index, Value { r#type: Text, value: "a0" } +SetTriple: ab618c62fe394b98a5983271ad5ba99d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ab618c62fe394b98a5983271ad5ba99d, To entity, Value { r#type: Entity, value: "" } +SetTriple: 848fa815be24480099e5375a5987b345, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 1283a2288aed446f84b996fc12cd4430, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1283a2288aed446f84b996fc12cd4430, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1283a2288aed446f84b996fc12cd4430, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 848fa815be24480099e5375a5987b345, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 848fa815be24480099e5375a5987b345, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 848fa815be24480099e5375a5987b345, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1a9fc4a00fec4eeaa075eec7ebd0d043, Name, Value { r#type: Text, value: "Page1" } +SetTriple: 694d82291dc94e4ab60d6746fceeee74, To entity, Value { r#type: Entity, value: "60d487641bee42e6b16a219d6f7677aa" } +SetTriple: 694d82291dc94e4ab60d6746fceeee74, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 694d82291dc94e4ab60d6746fceeee74, Index, Value { r#type: Text, value: "a0" } +SetTriple: 694d82291dc94e4ab60d6746fceeee74, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 1283a2288aed446f84b996fc12cd4430, From entity, Value { r#type: Entity, value: "1a9fc4a00fec4eeaa075eec7ebd0d043" } +SetTriple: 1283a2288aed446f84b996fc12cd4430, To entity, Value { r#type: Entity, value: "22e92b399886473195ce4997455481ec" } +SetTriple: Page1, Name, Value { r#type: Text, value: "Page" } +SetTriple: da295651edcd4516a344c506138c03b7, From entity, Value { r#type: Entity, value: "1a9fc4a00fec4eeaa075eec7ebd0d043" } +SetTriple: da295651edcd4516a344c506138c03b7, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: da295651edcd4516a344c506138c03b7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: da295651edcd4516a344c506138c03b7, Index, Value { r#type: Text, value: "a0" } +SetTriple: da295651edcd4516a344c506138c03b7, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 953a3cafb3114000adf3b4fc1cdac8a1, Index, Value { r#type: Text, value: "a0" } +SetTriple: 953a3cafb3114000adf3b4fc1cdac8a1, From entity, Value { r#type: Entity, value: "912c4d9504fc4d3cbc84382b3a1904d1" } +SetTriple: 953a3cafb3114000adf3b4fc1cdac8a1, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: a7151b7fb26646a49c54ac561a1f3b6b, From entity, Value { r#type: Entity, value: "912c4d9504fc4d3cbc84382b3a1904d1" } +SetTriple: a7151b7fb26646a49c54ac561a1f3b6b, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: a7151b7fb26646a49c54ac561a1f3b6b, Index, Value { r#type: Text, value: "a0" } +SetTriple: a7151b7fb26646a49c54ac561a1f3b6b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a7151b7fb26646a49c54ac561a1f3b6b, To entity, Value { r#type: Entity, value: "31f6922e0d4e4f14a1ee8c7689457715" } +SetTriple: 953a3cafb3114000adf3b4fc1cdac8a1, To entity, Value { r#type: Entity, value: "530f696c94a84c5fa881649e456e5e34" } +SetTriple: 953a3cafb3114000adf3b4fc1cdac8a1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: Region, Name, Value { r#type: Text, value: "Regions" } +SetTriple: 1febbfe53eb04ccbb4bf779b2ed5bb10, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 726098e849cf4d7bbc1085a8dfacf493, From entity, Value { r#type: Entity, value: "38d0e6afad6a40868c031a8f7b1b5b6e" } +SetTriple: 726098e849cf4d7bbc1085a8dfacf493, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 726098e849cf4d7bbc1085a8dfacf493, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 726098e849cf4d7bbc1085a8dfacf493, Index, Value { r#type: Text, value: "a0" } +SetTriple: 726098e849cf4d7bbc1085a8dfacf493, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 1febbfe53eb04ccbb4bf779b2ed5bb10, From entity, Value { r#type: Entity, value: "38d0e6afad6a40868c031a8f7b1b5b6e" } +SetTriple: 1febbfe53eb04ccbb4bf779b2ed5bb10, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 1febbfe53eb04ccbb4bf779b2ed5bb10, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1febbfe53eb04ccbb4bf779b2ed5bb10, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 8f2aed0e88904c38b2531854b3676637, From entity, Value { r#type: Entity, value: "b3b03c909b6d487cb2e2a7d685f120eb" } +SetTriple: 8f2aed0e88904c38b2531854b3676637, To entity, Value { r#type: Entity, value: "38d0e6afad6a40868c031a8f7b1b5b6e" } +SetTriple: 8f2aed0e88904c38b2531854b3676637, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8f2aed0e88904c38b2531854b3676637, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8f2aed0e88904c38b2531854b3676637, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 38d0e6afad6a40868c031a8f7b1b5b6e, Name, Value { r#type: Text, value: "Populations served" } +SetTriple: Nonprofit Organization, Name, Value { r#type: Text, value: "Nonprofit" } +SetTriple: f98131573e274f5a9b3a6b17d89a89a0, From entity, Value { r#type: Entity, value: "38d0e6afad6a40868c031a8f7b1b5b6e" } +SetTriple: f98131573e274f5a9b3a6b17d89a89a0, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: f98131573e274f5a9b3a6b17d89a89a0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f98131573e274f5a9b3a6b17d89a89a0, Index, Value { r#type: Text, value: "a0" } +SetTriple: f98131573e274f5a9b3a6b17d89a89a0, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 01cb584bd7fc4be4a0947f65e94e83a2, From entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 01cb584bd7fc4be4a0947f65e94e83a2, To entity, Value { r#type: Entity, value: "" } +SetTriple: 01cb584bd7fc4be4a0947f65e94e83a2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 01cb584bd7fc4be4a0947f65e94e83a2, Index, Value { r#type: Text, value: "a0" } +SetTriple: cba24addeb81448b8a20a6bc0700726a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: cba24addeb81448b8a20a6bc0700726a, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: cba24addeb81448b8a20a6bc0700726a, From entity, Value { r#type: Entity, value: "38d0e6afad6a40868c031a8f7b1b5b6e" } +SetTriple: fea37c894af44660ad3b9e815a678c3c, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: fea37c894af44660ad3b9e815a678c3c, Index, Value { r#type: Text, value: "a0" } +SetTriple: fea37c894af44660ad3b9e815a678c3c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: fea37c894af44660ad3b9e815a678c3c, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: fea37c894af44660ad3b9e815a678c3c, From entity, Value { r#type: Entity, value: "2411d4a11eea4963bdbf852ce6ced5a4" } +SetTriple: 8df157b8c40d4910a574426c1e6d90fa, To entity, Value { r#type: Entity, value: "38d0e6afad6a40868c031a8f7b1b5b6e" } +SetTriple: 01cb584bd7fc4be4a0947f65e94e83a2, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: Populations served, Name, Value { r#type: Text, value: "Demographics served" } +SetTriple: 8df157b8c40d4910a574426c1e6d90fa, From entity, Value { r#type: Entity, value: "b3b03c909b6d487cb2e2a7d685f120eb" } +SetTriple: 8df157b8c40d4910a574426c1e6d90fa, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 8df157b8c40d4910a574426c1e6d90fa, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8df157b8c40d4910a574426c1e6d90fa, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: cba24addeb81448b8a20a6bc0700726a, Index, Value { r#type: Text, value: "a0" } +SetTriple: cba24addeb81448b8a20a6bc0700726a, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 12986d7dda6245b6aa775ac2d86a45ac, To entity, Value { r#type: Entity, value: "b365d85138fe433f9a778bcb631375c5" } +SetTriple: 12986d7dda6245b6aa775ac2d86a45ac, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 12986d7dda6245b6aa775ac2d86a45ac, Index, Value { r#type: Text, value: "a0" } +SetTriple: 12986d7dda6245b6aa775ac2d86a45ac, Relation type, Value { r#type: Entity, value: "df7d108c6c3c4cbbb93ee318d12de1fa" } +SetTriple: c94ec8e5a7e246808bbc5cb6c9deba25, From entity, Value { r#type: Entity, value: "ebecda54c39140198ce6cfdb8d2488d4" } +SetTriple: c94ec8e5a7e246808bbc5cb6c9deba25, To entity, Value { r#type: Entity, value: "dd10f854888f453bb789622d8e1df861" } +SetTriple: c94ec8e5a7e246808bbc5cb6c9deba25, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c94ec8e5a7e246808bbc5cb6c9deba25, Index, Value { r#type: Text, value: "a0" } +SetTriple: c94ec8e5a7e246808bbc5cb6c9deba25, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 0ff875d9a78640659d9f7fac54b94d94, From entity, Value { r#type: Entity, value: "1823d5915cab41f996458cf8155aff67" } +SetTriple: 0ff875d9a78640659d9f7fac54b94d94, To entity, Value { r#type: Entity, value: "ebecda54c39140198ce6cfdb8d2488d4" } +SetTriple: 0ff875d9a78640659d9f7fac54b94d94, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0ff875d9a78640659d9f7fac54b94d94, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0ff875d9a78640659d9f7fac54b94d94, Relation type, Value { r#type: Entity, value: "df7d108c6c3c4cbbb93ee318d12de1fa" } +SetTriple: b4385f144cd24129ae30ca85c2a5840b, From entity, Value { r#type: Entity, value: "cd59a62a2103477dbc56340ca209ef54" } +SetTriple: b4385f144cd24129ae30ca85c2a5840b, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: b4385f144cd24129ae30ca85c2a5840b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b4385f144cd24129ae30ca85c2a5840b, Index, Value { r#type: Text, value: "a0" } +SetTriple: b4385f144cd24129ae30ca85c2a5840b, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 6446e0a1afaa4731abae2bcb09ae3d16, From entity, Value { r#type: Entity, value: "cd59a62a2103477dbc56340ca209ef54" } +SetTriple: 6446e0a1afaa4731abae2bcb09ae3d16, To entity, Value { r#type: Entity, value: "dfc221d98cce4f0b9353e437a98387e3" } +SetTriple: 6446e0a1afaa4731abae2bcb09ae3d16, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6446e0a1afaa4731abae2bcb09ae3d16, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6446e0a1afaa4731abae2bcb09ae3d16, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: f6311e4612844af4a01aaf43206294da, From entity, Value { r#type: Entity, value: "932fcd9dd38a4da3970243376e5a9e00" } +SetTriple: f6311e4612844af4a01aaf43206294da, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: f6311e4612844af4a01aaf43206294da, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f6311e4612844af4a01aaf43206294da, Index, Value { r#type: Text, value: "a0" } +SetTriple: f6311e4612844af4a01aaf43206294da, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: dd8e745cd1bf45319862bc70fa72bdbc, From entity, Value { r#type: Entity, value: "932fcd9dd38a4da3970243376e5a9e00" } +SetTriple: dd8e745cd1bf45319862bc70fa72bdbc, To entity, Value { r#type: Entity, value: "dfc221d98cce4f0b9353e437a98387e3" } +SetTriple: dd8e745cd1bf45319862bc70fa72bdbc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: dd8e745cd1bf45319862bc70fa72bdbc, Index, Value { r#type: Text, value: "a0" } +SetTriple: dd8e745cd1bf45319862bc70fa72bdbc, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 1823d5915cab41f996458cf8155aff67, Name, Value { r#type: Text, value: "Storyteller" } +SetTriple: Storyteller, Description, Value { r#type: Text, value: "An expert in the art of narrating stories, he merges imagination with lived experiences to captivate and engage his audience. A storyteller utilizes a range of vocal tones, gestures, and expressive nuances to animate narratives. As a custodian of cultural and historical legacies, he delivers stories that educate, uphold traditions, and impart moral lessons. The storyteller plays a crucial role in the fabric of human communication and culture." } +SetTriple: 49e5d667a1d74974bd372cad0f21c0e2, Name, Value { r#type: Text, value: "Creativity" } +SetTriple: Creativity, Description, Value { r#type: Text, value: "Capacity to think innovatively and imaginatively, to see beyond the usual approaches and conventional solutions. It involves generating new ideas, combining concepts in unique ways, and envisioning novel outcomes. Creativity is not limited to artistic endeavors but is crucial in problem-solving, strategic planning, and adapting to new challenges across various fields. This skill encompasses imagination, originality, and the willingness to experiment." } +SetTriple: 75f06e1049284ce0be72f09a331ee08b, Name, Value { r#type: Text, value: "Storytelling" } +SetTriple: Storytelling, Description, Value { r#type: Text, value: "The art of conveying narratives, ideas, or experiences through spoken or written words, often accompanied by vivid imagery or emotional engagement. It involves crafting a compelling narrative structure, character development, and a relatable context that captivates an audience. Storytelling is a versatile skill employed in diverse fields, from entertainment and marketing to education and communication." } +SetTriple: 6e2751c821604669983698d3c639004b, Name, Value { r#type: Text, value: "Communication" } +SetTriple: Communication, Description, Value { r#type: Text, value: "The ability to convey thoughts, ideas, or information effectively to others through various mediums, such as spoken or written words, body language, and non-verbal cues. It involves not only the clarity and coherence of one's message but also active listening and the capacity to comprehend and respond to others. Strong communication skills foster understanding, facilitate collaboration, and build relationships, making it a fundamental aptitude for success in both personal and professional contexts." } +SetTriple: b365d85138fe433f9a778bcb631375c5, Description, Value { r#type: Text, value: "Ability to not only recognize but also genuinely understand and share in the emotions, experiences, and viewpoints of others. It transcends mere sympathy, requiring active engagement and emotional connection. Empathetic individuals excel in active listening, providing meaningful support, and demonstrating authentic concern for others' welfare. This skill not only enriches interpersonal relationships but also facilitates effective communication, builds trust, and fosters a deeper sense of connection in both personal and professional interactions, making it an invaluable and transformative attribute." } +SetTriple: ebecda54c39140198ce6cfdb8d2488d4, Name, Value { r#type: Text, value: "Adaptability" } +SetTriple: Adaptability, Description, Value { r#type: Text, value: "Capacity to swiftly and effectively adjust to changing circumstances, environments, or demands. It encompasses the ability to embrace new information, learn new skills, and seamlessly pivot when confronted with evolving situations. Adaptable individuals thrive in dynamic and unpredictable scenarios, demonstrating resilience and a willingness to evolve. " } +SetTriple: cd59a62a2103477dbc56340ca209ef54, Name, Value { r#type: Text, value: "Instagram" } +SetTriple: Instagram, Description, Value { r#type: Text, value: "A web URL to an instagram account" } +SetTriple: 932fcd9dd38a4da3970243376e5a9e00, Name, Value { r#type: Text, value: "Facebook" } +SetTriple: Facebook, Description, Value { r#type: Text, value: "A web URL to a facebook account" } +SetTriple: b365d85138fe433f9a778bcb631375c5, Name, Value { r#type: Text, value: "Empathy" } +SetTriple: c8f58063ef6d44eab99fd3b1c37cafbd, Relation type, Value { r#type: Entity, value: "df7d108c6c3c4cbbb93ee318d12de1fa" } +SetTriple: c8f58063ef6d44eab99fd3b1c37cafbd, Index, Value { r#type: Text, value: "a0" } +SetTriple: c8f58063ef6d44eab99fd3b1c37cafbd, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c8f58063ef6d44eab99fd3b1c37cafbd, To entity, Value { r#type: Entity, value: "75f06e1049284ce0be72f09a331ee08b" } +SetTriple: c8f58063ef6d44eab99fd3b1c37cafbd, From entity, Value { r#type: Entity, value: "1823d5915cab41f996458cf8155aff67" } +SetTriple: 4ab225279e5547fc963202928829f8b5, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 4ab225279e5547fc963202928829f8b5, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4ab225279e5547fc963202928829f8b5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4ab225279e5547fc963202928829f8b5, To entity, Value { r#type: Entity, value: "dd10f854888f453bb789622d8e1df861" } +SetTriple: 4ab225279e5547fc963202928829f8b5, From entity, Value { r#type: Entity, value: "75f06e1049284ce0be72f09a331ee08b" } +SetTriple: ce447ad4582e440d9950e02206fcd3c3, Relation type, Value { r#type: Entity, value: "df7d108c6c3c4cbbb93ee318d12de1fa" } +SetTriple: d441e6ea60ed4794a12084cc815246bd, From entity, Value { r#type: Entity, value: "1823d5915cab41f996458cf8155aff67" } +SetTriple: d441e6ea60ed4794a12084cc815246bd, To entity, Value { r#type: Entity, value: "9c1922f1d7a247d1841d234cb2f56991" } +SetTriple: d441e6ea60ed4794a12084cc815246bd, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d441e6ea60ed4794a12084cc815246bd, Index, Value { r#type: Text, value: "a0" } +SetTriple: d441e6ea60ed4794a12084cc815246bd, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 71c2edadbe5244e7a43b8a1781d8ab28, From entity, Value { r#type: Entity, value: "49e5d667a1d74974bd372cad0f21c0e2" } +SetTriple: 71c2edadbe5244e7a43b8a1781d8ab28, To entity, Value { r#type: Entity, value: "dd10f854888f453bb789622d8e1df861" } +SetTriple: 71c2edadbe5244e7a43b8a1781d8ab28, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 71c2edadbe5244e7a43b8a1781d8ab28, Index, Value { r#type: Text, value: "a0" } +SetTriple: ce447ad4582e440d9950e02206fcd3c3, Index, Value { r#type: Text, value: "a0" } +SetTriple: 71c2edadbe5244e7a43b8a1781d8ab28, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: ce447ad4582e440d9950e02206fcd3c3, From entity, Value { r#type: Entity, value: "1823d5915cab41f996458cf8155aff67" } +SetTriple: ce447ad4582e440d9950e02206fcd3c3, To entity, Value { r#type: Entity, value: "49e5d667a1d74974bd372cad0f21c0e2" } +SetTriple: ce447ad4582e440d9950e02206fcd3c3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d6160639d6b24d1d85ec63ab356f3537, From entity, Value { r#type: Entity, value: "6e2751c821604669983698d3c639004b" } +SetTriple: d6160639d6b24d1d85ec63ab356f3537, To entity, Value { r#type: Entity, value: "dd10f854888f453bb789622d8e1df861" } +SetTriple: d6160639d6b24d1d85ec63ab356f3537, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d6160639d6b24d1d85ec63ab356f3537, Index, Value { r#type: Text, value: "a0" } +SetTriple: d6160639d6b24d1d85ec63ab356f3537, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: a793050d4c7049e9810ab96b59746fed, From entity, Value { r#type: Entity, value: "1823d5915cab41f996458cf8155aff67" } +SetTriple: a793050d4c7049e9810ab96b59746fed, To entity, Value { r#type: Entity, value: "6e2751c821604669983698d3c639004b" } +SetTriple: a793050d4c7049e9810ab96b59746fed, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a793050d4c7049e9810ab96b59746fed, Index, Value { r#type: Text, value: "a0" } +SetTriple: a793050d4c7049e9810ab96b59746fed, Relation type, Value { r#type: Entity, value: "df7d108c6c3c4cbbb93ee318d12de1fa" } +SetTriple: 7f25dba4a93f440c9dc3111e287fdd3a, From entity, Value { r#type: Entity, value: "b365d85138fe433f9a778bcb631375c5" } +SetTriple: 7f25dba4a93f440c9dc3111e287fdd3a, To entity, Value { r#type: Entity, value: "dd10f854888f453bb789622d8e1df861" } +SetTriple: 7f25dba4a93f440c9dc3111e287fdd3a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7f25dba4a93f440c9dc3111e287fdd3a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7f25dba4a93f440c9dc3111e287fdd3a, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 12986d7dda6245b6aa775ac2d86a45ac, From entity, Value { r#type: Entity, value: "1823d5915cab41f996458cf8155aff67" } +SetTriple: 0524c21ae07046d684d5c62e5c3cfe35, 03d3a32b258f492e8d81c9ee2bc01461, Value { r#type: Text, value: "png" } +SetTriple: c3c0acf068f146a497f0d32c670603a7, From entity, Value { r#type: Entity, value: "1823d5915cab41f996458cf8155aff67" } +SetTriple: c3c0acf068f146a497f0d32c670603a7, To entity, Value { r#type: Entity, value: "0524c21ae07046d684d5c62e5c3cfe35" } +SetTriple: c3c0acf068f146a497f0d32c670603a7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c3c0acf068f146a497f0d32c670603a7, Index, Value { r#type: Text, value: "a0" } +SetTriple: c3c0acf068f146a497f0d32c670603a7, Relation type, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: e385cacb011c416baf86fad17095203f, From entity, Value { r#type: Entity, value: "0524c21ae07046d684d5c62e5c3cfe35" } +SetTriple: e385cacb011c416baf86fad17095203f, To entity, Value { r#type: Entity, value: "" } +SetTriple: e385cacb011c416baf86fad17095203f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e385cacb011c416baf86fad17095203f, Index, Value { r#type: Text, value: "a0" } +SetTriple: e385cacb011c416baf86fad17095203f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 0524c21ae07046d684d5c62e5c3cfe35, 334b8ac01be14079b1707e11d0f9eb8d, Value { r#type: Uri, value: "ipfs://bafkreidpgdsgst3geqkcqnoxr73vi7acbhjtsy4rehdd5om6mln5eb46da" } +SetTriple: 0524c21ae07046d684d5c62e5c3cfe35, 18a7f15ea93b4e15bacf4d57052741e9, Value { r#type: Text, value: "1192" } +SetTriple: 0524c21ae07046d684d5c62e5c3cfe35, 58747e352a1c4c76ae64bfe08d28d0a4, Value { r#type: Text, value: "320" } +SetTriple: 83cd9debb5e24f66b4432ce38ed5b28e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 83cd9debb5e24f66b4432ce38ed5b28e, To entity, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 83cd9debb5e24f66b4432ce38ed5b28e, From entity, Value { r#type: Entity, value: "d5785e7fca4d4eaa96d3531cbef6a537" } +SetTriple: 83cd9debb5e24f66b4432ce38ed5b28e, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 83cd9debb5e24f66b4432ce38ed5b28e, Index, Value { r#type: Text, value: "a0" } +SetTriple: d1a239ca6aec4584afcdf6c45607e723, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 3a532a592eb84c869ddd981e6cac5fce, From entity, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: d1a239ca6aec4584afcdf6c45607e723, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: d1a239ca6aec4584afcdf6c45607e723, From entity, Value { r#type: Entity, value: "feb48f93d5e94ad58567ea8353998e52" } +SetTriple: 3a532a592eb84c869ddd981e6cac5fce, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 3a532a592eb84c869ddd981e6cac5fce, To entity, Value { r#type: Entity, value: "1390be437d4c4080a925b2f7bc03fc86" } +SetTriple: d1a239ca6aec4584afcdf6c45607e723, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3a532a592eb84c869ddd981e6cac5fce, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3a532a592eb84c869ddd981e6cac5fce, Index, Value { r#type: Text, value: "a0" } +SetTriple: d1a239ca6aec4584afcdf6c45607e723, Index, Value { r#type: Text, value: "a0" } +SetTriple: c19fc5e572794d6a9f9097cda7c75b49, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: b35923d395ea4f81b8ef03aca28c2a03, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: b35923d395ea4f81b8ef03aca28c2a03, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b35923d395ea4f81b8ef03aca28c2a03, Index, Value { r#type: Text, value: "a0" } +SetTriple: b35923d395ea4f81b8ef03aca28c2a03, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: c19fc5e572794d6a9f9097cda7c75b49, From entity, Value { r#type: Entity, value: "62fe434a457c43f09068f698ee044227" } +SetTriple: c19fc5e572794d6a9f9097cda7c75b49, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c19fc5e572794d6a9f9097cda7c75b49, Index, Value { r#type: Text, value: "a0" } +SetTriple: c19fc5e572794d6a9f9097cda7c75b49, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 3057653733634b26bc54824a4e613b17, From entity, Value { r#type: Entity, value: "62fe434a457c43f09068f698ee044227" } +SetTriple: 3057653733634b26bc54824a4e613b17, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 3057653733634b26bc54824a4e613b17, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3057653733634b26bc54824a4e613b17, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3057653733634b26bc54824a4e613b17, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 5f1189cb309f4ec398de07e5f9ce6cc8, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 62fe434a457c43f09068f698ee044227, Name, Value { r#type: Text, value: "Subprojects" } +SetTriple: bb8bc10a169745e581fcfb81362ce33b, Name, Value { r#type: Text, value: "Broader projects" } +SetTriple: 5f1189cb309f4ec398de07e5f9ce6cc8, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5f1189cb309f4ec398de07e5f9ce6cc8, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 5f1189cb309f4ec398de07e5f9ce6cc8, To entity, Value { r#type: Entity, value: "62fe434a457c43f09068f698ee044227" } +SetTriple: 5f1189cb309f4ec398de07e5f9ce6cc8, From entity, Value { r#type: Entity, value: "cb9d261d456b4eaf87e51e9faa441867" } +SetTriple: a6597fc9097c4432aa7f0a8c581b2ea7, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: a6597fc9097c4432aa7f0a8c581b2ea7, Index, Value { r#type: Text, value: "a0" } +SetTriple: a6597fc9097c4432aa7f0a8c581b2ea7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a6597fc9097c4432aa7f0a8c581b2ea7, To entity, Value { r#type: Entity, value: "bb8bc10a169745e581fcfb81362ce33b" } +SetTriple: a6597fc9097c4432aa7f0a8c581b2ea7, From entity, Value { r#type: Entity, value: "cb9d261d456b4eaf87e51e9faa441867" } +SetTriple: 772fa5f978ff405e985db6580ba0d136, From entity, Value { r#type: Entity, value: "bb8bc10a169745e581fcfb81362ce33b" } +SetTriple: 772fa5f978ff405e985db6580ba0d136, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 772fa5f978ff405e985db6580ba0d136, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 772fa5f978ff405e985db6580ba0d136, Index, Value { r#type: Text, value: "a0" } +SetTriple: 772fa5f978ff405e985db6580ba0d136, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: b35923d395ea4f81b8ef03aca28c2a03, From entity, Value { r#type: Entity, value: "bb8bc10a169745e581fcfb81362ce33b" } +SetTriple: 9e23fb60eabc49d0833505682adf9c78, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 9e23fb60eabc49d0833505682adf9c78, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9e23fb60eabc49d0833505682adf9c78, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 44830cc7c9714368b63992e5114723e9, From entity, Value { r#type: Entity, value: "ba43fd1aef2d449f97c46bf8e8ac9d58" } +SetTriple: 44830cc7c9714368b63992e5114723e9, To entity, Value { r#type: Entity, value: "212ca0604fe743218c5303b33541eb3c" } +SetTriple: 44830cc7c9714368b63992e5114723e9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 44830cc7c9714368b63992e5114723e9, Index, Value { r#type: Text, value: "a0" } +SetTriple: 44830cc7c9714368b63992e5114723e9, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 4cb86814bd80405cab7c4680649770e6, From entity, Value { r#type: Entity, value: "212ca0604fe743218c5303b33541eb3c" } +SetTriple: 4cb86814bd80405cab7c4680649770e6, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 4cb86814bd80405cab7c4680649770e6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4cb86814bd80405cab7c4680649770e6, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4cb86814bd80405cab7c4680649770e6, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 0e02964eb9d7492a8ca37dd91bb91bd5, From entity, Value { r#type: Entity, value: "ba43fd1aef2d449f97c46bf8e8ac9d58" } +SetTriple: 0e02964eb9d7492a8ca37dd91bb91bd5, To entity, Value { r#type: Entity, value: "e814bdb6d88b434bbfc66e22c6f593ca" } +SetTriple: 0e02964eb9d7492a8ca37dd91bb91bd5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0e02964eb9d7492a8ca37dd91bb91bd5, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0e02964eb9d7492a8ca37dd91bb91bd5, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 9e23fb60eabc49d0833505682adf9c78, From entity, Value { r#type: Entity, value: "e814bdb6d88b434bbfc66e22c6f593ca" } +SetTriple: 9e23fb60eabc49d0833505682adf9c78, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5a07b83ea692443da6a547c09b209a32, From entity, Value { r#type: Entity, value: "e814bdb6d88b434bbfc66e22c6f593ca" } +SetTriple: 5a07b83ea692443da6a547c09b209a32, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 5a07b83ea692443da6a547c09b209a32, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5a07b83ea692443da6a547c09b209a32, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5a07b83ea692443da6a547c09b209a32, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 6d63c6dbbabc4ec8bffb7ef127a8d22a, From entity, Value { r#type: Entity, value: "212ca0604fe743218c5303b33541eb3c" } +SetTriple: 6d63c6dbbabc4ec8bffb7ef127a8d22a, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 6d63c6dbbabc4ec8bffb7ef127a8d22a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6d63c6dbbabc4ec8bffb7ef127a8d22a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6d63c6dbbabc4ec8bffb7ef127a8d22a, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: c92629a6a18d40b3832bbba93cf0f432, From entity, Value { r#type: Entity, value: "ba43fd1aef2d449f97c46bf8e8ac9d58" } +SetTriple: c92629a6a18d40b3832bbba93cf0f432, To entity, Value { r#type: Entity, value: "213dded17125408986227a634b465427" } +SetTriple: c92629a6a18d40b3832bbba93cf0f432, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c92629a6a18d40b3832bbba93cf0f432, Index, Value { r#type: Text, value: "a0" } +SetTriple: c92629a6a18d40b3832bbba93cf0f432, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 0b5d09c3bc6043a4bb6570985c86ffbf, From entity, Value { r#type: Entity, value: "213dded17125408986227a634b465427" } +SetTriple: 0b5d09c3bc6043a4bb6570985c86ffbf, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 0b5d09c3bc6043a4bb6570985c86ffbf, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0b5d09c3bc6043a4bb6570985c86ffbf, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0b5d09c3bc6043a4bb6570985c86ffbf, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 22d039b063a74a2c91252f066fb5124e, From entity, Value { r#type: Entity, value: "213dded17125408986227a634b465427" } +SetTriple: 22d039b063a74a2c91252f066fb5124e, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 22d039b063a74a2c91252f066fb5124e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 22d039b063a74a2c91252f066fb5124e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 22d039b063a74a2c91252f066fb5124e, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: c14def2e45084e579584a9afba421943, From entity, Value { r#type: Entity, value: "ba43fd1aef2d449f97c46bf8e8ac9d58" } +SetTriple: c14def2e45084e579584a9afba421943, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: c14def2e45084e579584a9afba421943, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c14def2e45084e579584a9afba421943, Index, Value { r#type: Text, value: "a0" } +SetTriple: c14def2e45084e579584a9afba421943, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: ce8394596e1341fd81c847dd2b4308d4, From entity, Value { r#type: Entity, value: "0193c4d532504d8f8d3a199e2098d87f" } +SetTriple: ce8394596e1341fd81c847dd2b4308d4, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: ce8394596e1341fd81c847dd2b4308d4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ce8394596e1341fd81c847dd2b4308d4, Index, Value { r#type: Text, value: "a0" } +SetTriple: ce8394596e1341fd81c847dd2b4308d4, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: c3e67383a4d64d959eebb8805e7b0ae0, To entity, Value { r#type: Entity, value: "0193c4d532504d8f8d3a199e2098d87f" } +SetTriple: e814bdb6d88b434bbfc66e22c6f593ca, Name, Value { r#type: Text, value: "Reviewed by" } +SetTriple: b0a23ac0c1e74d29a886d8caa15cc42e, From entity, Value { r#type: Entity, value: "0193c4d532504d8f8d3a199e2098d87f" } +SetTriple: b0a23ac0c1e74d29a886d8caa15cc42e, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: b0a23ac0c1e74d29a886d8caa15cc42e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b0a23ac0c1e74d29a886d8caa15cc42e, Index, Value { r#type: Text, value: "a0" } +SetTriple: b0a23ac0c1e74d29a886d8caa15cc42e, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 212ca0604fe743218c5303b33541eb3c, Name, Value { r#type: Text, value: "Subtasks" } +SetTriple: 0193c4d532504d8f8d3a199e2098d87f, Name, Value { r#type: Text, value: "Priority" } +SetTriple: 213dded17125408986227a634b465427, Name, Value { r#type: Text, value: "Relevant pages" } +SetTriple: c3e67383a4d64d959eebb8805e7b0ae0, From entity, Value { r#type: Entity, value: "ba43fd1aef2d449f97c46bf8e8ac9d58" } +SetTriple: c3e67383a4d64d959eebb8805e7b0ae0, Index, Value { r#type: Text, value: "a0" } +SetTriple: c3e67383a4d64d959eebb8805e7b0ae0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c3e67383a4d64d959eebb8805e7b0ae0, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 1606ea16d41147a9a4bea4d0e4e1906a, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 1606ea16d41147a9a4bea4d0e4e1906a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1606ea16d41147a9a4bea4d0e4e1906a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1606ea16d41147a9a4bea4d0e4e1906a, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 40c4b15e27154e84a1f6c52972de2e67, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: c064d55c4c7540d0a74c754cf263c68a, From entity, Value { r#type: Entity, value: "3d5e1199c8ef4f7287ab900f75f00e3d" } +SetTriple: 1606ea16d41147a9a4bea4d0e4e1906a, From entity, Value { r#type: Entity, value: "3d5e1199c8ef4f7287ab900f75f00e3d" } +SetTriple: c064d55c4c7540d0a74c754cf263c68a, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 40c4b15e27154e84a1f6c52972de2e67, From entity, Value { r#type: Entity, value: "ba43fd1aef2d449f97c46bf8e8ac9d58" } +SetTriple: 40c4b15e27154e84a1f6c52972de2e67, To entity, Value { r#type: Entity, value: "3d5e1199c8ef4f7287ab900f75f00e3d" } +SetTriple: c064d55c4c7540d0a74c754cf263c68a, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: c064d55c4c7540d0a74c754cf263c68a, Index, Value { r#type: Text, value: "a0" } +SetTriple: c064d55c4c7540d0a74c754cf263c68a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 40c4b15e27154e84a1f6c52972de2e67, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3d5e1199c8ef4f7287ab900f75f00e3d, Name, Value { r#type: Text, value: "Completed subtasks " } +SetTriple: Subtasks, Name, Value { r#type: Text, value: "In progress subtasks" } +SetTriple: 40c4b15e27154e84a1f6c52972de2e67, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b10408748be747a7b15298c320681d61, Name, Value { r#type: Text, value: "News event" } +SetTriple: 551ad132033046b58d39ae6021156b01, Name, Value { r#type: Text, value: "Explanation of News " } +SetTriple: f14a8229bbe3400785bd5e15e04dcacc, Name, Value { r#type: Text, value: "Related topics, topi" } +SetTriple: 50ca69b85db9498aafed12fedf411c21, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 50ca69b85db9498aafed12fedf411c21, Index, Value { r#type: Text, value: "a0" } +SetTriple: 50ca69b85db9498aafed12fedf411c21, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 4af040e84cda42678bb340f760072480, Index, Value { r#type: Text, value: "a0" } +SetTriple: b38acf2f7cd2482ca336ea6f3f73b578, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: b38acf2f7cd2482ca336ea6f3f73b578, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b38acf2f7cd2482ca336ea6f3f73b578, Index, Value { r#type: Text, value: "a1" } +SetTriple: dac67c3faf2a475682b92a095c777f78, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 4af040e84cda42678bb340f760072480, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4af040e84cda42678bb340f760072480, To entity, Value { r#type: Entity, value: "55a7c6143622426a84568a493eed94b9" } +SetTriple: 4af040e84cda42678bb340f760072480, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: dac67c3faf2a475682b92a095c777f78, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: dac67c3faf2a475682b92a095c777f78, Index, Value { r#type: Text, value: "a0" } +SetTriple: f3f4af3e7c9344c4a7bfa14aa51162c0, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: f3f4af3e7c9344c4a7bfa14aa51162c0, Index, Value { r#type: Text, value: "a0" } +SetTriple: f3f4af3e7c9344c4a7bfa14aa51162c0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f3f4af3e7c9344c4a7bfa14aa51162c0, To entity, Value { r#type: Entity, value: "5b4e9b7455f44e57b0b358da71188191" } +SetTriple: f3f4af3e7c9344c4a7bfa14aa51162c0, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: 2cf8e3baf7f14b6b9438009d2095eb99, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 2cf8e3baf7f14b6b9438009d2095eb99, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2cf8e3baf7f14b6b9438009d2095eb99, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2cf8e3baf7f14b6b9438009d2095eb99, To entity, Value { r#type: Entity, value: "e77065f3fec741d989ed86ab01d4e999" } +SetTriple: 2cf8e3baf7f14b6b9438009d2095eb99, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: 19e8debf075f49e3b9c4ce2e9ba00d85, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 19e8debf075f49e3b9c4ce2e9ba00d85, Index, Value { r#type: Text, value: "a0" } +SetTriple: 19e8debf075f49e3b9c4ce2e9ba00d85, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 19e8debf075f49e3b9c4ce2e9ba00d85, To entity, Value { r#type: Entity, value: "c9935cc57e2e4be68c3cd7acc6ed7b12" } +SetTriple: 19e8debf075f49e3b9c4ce2e9ba00d85, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: 798c46a0fd854f4fa86e2ee00ec142c0, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 798c46a0fd854f4fa86e2ee00ec142c0, Index, Value { r#type: Text, value: "a0" } +SetTriple: 798c46a0fd854f4fa86e2ee00ec142c0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 798c46a0fd854f4fa86e2ee00ec142c0, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 798c46a0fd854f4fa86e2ee00ec142c0, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: 985c2b946b9e4c1f9fcfabdca76c9dc1, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 985c2b946b9e4c1f9fcfabdca76c9dc1, Index, Value { r#type: Text, value: "a0" } +SetTriple: 985c2b946b9e4c1f9fcfabdca76c9dc1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 985c2b946b9e4c1f9fcfabdca76c9dc1, To entity, Value { r#type: Entity, value: "ee5648a5d63847809796cd8605517545" } +SetTriple: 985c2b946b9e4c1f9fcfabdca76c9dc1, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: 61a0cf02c2d24446a9a434ffa1f9f393, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 61a0cf02c2d24446a9a434ffa1f9f393, Index, Value { r#type: Text, value: "a0" } +SetTriple: 61a0cf02c2d24446a9a434ffa1f9f393, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 61a0cf02c2d24446a9a434ffa1f9f393, To entity, Value { r#type: Entity, value: "0db47aca1ccf4c9fbeb689519ebe9eed" } +SetTriple: 61a0cf02c2d24446a9a434ffa1f9f393, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: c2dfb813d9a24683912f0eea4dc18fa5, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: c2dfb813d9a24683912f0eea4dc18fa5, Index, Value { r#type: Text, value: "a0" } +SetTriple: c2dfb813d9a24683912f0eea4dc18fa5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c2dfb813d9a24683912f0eea4dc18fa5, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: c2dfb813d9a24683912f0eea4dc18fa5, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: c98146b9defe404d8d76f3b43fdcd1f6, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: c98146b9defe404d8d76f3b43fdcd1f6, Index, Value { r#type: Text, value: "a0" } +SetTriple: c98146b9defe404d8d76f3b43fdcd1f6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c98146b9defe404d8d76f3b43fdcd1f6, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: c98146b9defe404d8d76f3b43fdcd1f6, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: 492e249c21ea4c759f3f200d7a33c9ac, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 492e249c21ea4c759f3f200d7a33c9ac, Index, Value { r#type: Text, value: "a0" } +SetTriple: 492e249c21ea4c759f3f200d7a33c9ac, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 492e249c21ea4c759f3f200d7a33c9ac, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 492e249c21ea4c759f3f200d7a33c9ac, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: Related topics, topi, Markdown Content, Value { r#type: Text, value: "- **Related topics**, topics connected to the news event. For instance, in the context of US Politics, the news event could be linked to a politician.\n\n- **Avatar**, a square image with a minimum 500px by 500px resolution.\n\n- **Cover,** a banner image with a 3:1 ratio (exact cover size is 1192px by 320px).\n\n- **Location**, the place where the news event takes or took place.\n\n- **Date**, the date when the news event happened.\n\n- **Sources**, encompass press articles, press releases, social media posts, and relevant documents such as transcripts or statements, all of which provide information and facilitate comprehension of current events.\n\n- **Claims about**, to complete, comment, question or refute the news event.\n\n- **Claims from**, key insights derived from the news event, highlighting the pivotal aspects or conclusions.\n\n- **Relevant questions**, the **Five W's and H**: Who? What? When? Where? Why? How?\" is a checklist used in journalism to guide research and interviews and to raise important ethical questions, such as “How do you know that?\"\n\n- **Tags**, help in filtering tables and sorting the entity\n\n\n" } +SetTriple: Explanation of News , Markdown Content, Value { r#type: Text, value: "## Explanation of News event type attributes:\n\n" } +SetTriple: 693282164eaa41b29f99b6cf9591f5c8, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 37349ec5ac0a4fffbde5f670771f4dab, From entity, Value { r#type: Entity, value: "551ad132033046b58d39ae6021156b01" } +SetTriple: 37349ec5ac0a4fffbde5f670771f4dab, To entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: 37349ec5ac0a4fffbde5f670771f4dab, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 37349ec5ac0a4fffbde5f670771f4dab, Index, Value { r#type: Text, value: "a0" } +SetTriple: 37349ec5ac0a4fffbde5f670771f4dab, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 55d0c09727cc4adaa33269b40df0d201, From entity, Value { r#type: Entity, value: "551ad132033046b58d39ae6021156b01" } +SetTriple: 55d0c09727cc4adaa33269b40df0d201, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: 55d0c09727cc4adaa33269b40df0d201, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 55d0c09727cc4adaa33269b40df0d201, Index, Value { r#type: Text, value: "a0" } +SetTriple: 55d0c09727cc4adaa33269b40df0d201, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 1704809bdbd24cfb80d1a2ddbb550e97, From entity, Value { r#type: Entity, value: "f14a8229bbe3400785bd5e15e04dcacc" } +SetTriple: 1704809bdbd24cfb80d1a2ddbb550e97, To entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: 1704809bdbd24cfb80d1a2ddbb550e97, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1704809bdbd24cfb80d1a2ddbb550e97, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1704809bdbd24cfb80d1a2ddbb550e97, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 50ca69b85db9498aafed12fedf411c21, From entity, Value { r#type: Entity, value: "f14a8229bbe3400785bd5e15e04dcacc" } +SetTriple: 50ca69b85db9498aafed12fedf411c21, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: b38acf2f7cd2482ca336ea6f3f73b578, To entity, Value { r#type: Entity, value: "f14a8229bbe3400785bd5e15e04dcacc" } +SetTriple: b38acf2f7cd2482ca336ea6f3f73b578, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: dac67c3faf2a475682b92a095c777f78, To entity, Value { r#type: Entity, value: "551ad132033046b58d39ae6021156b01" } +SetTriple: dac67c3faf2a475682b92a095c777f78, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: 693282164eaa41b29f99b6cf9591f5c8, Index, Value { r#type: Text, value: "a0" } +SetTriple: 693282164eaa41b29f99b6cf9591f5c8, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 693282164eaa41b29f99b6cf9591f5c8, To entity, Value { r#type: Entity, value: "7fa816a3cb704534934888449869dc33" } +SetTriple: 693282164eaa41b29f99b6cf9591f5c8, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: 4af040e84cda42678bb340f760072480, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: News event, Description, Value { r#type: Text, value: "A significant occurrence or development that has recently happened or is currently happening, capturing public interest and attention. News events are characterized by their relevance, timeliness, and impact on the community or world at large. " } +SetTriple: 097eac7e1cda4aacb9ca6decbda7113b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 097eac7e1cda4aacb9ca6decbda7113b, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 097eac7e1cda4aacb9ca6decbda7113b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 097eac7e1cda4aacb9ca6decbda7113b, To entity, Value { r#type: Entity, value: "e77065f3fec741d989ed86ab01d4e999" } +SetTriple: 097eac7e1cda4aacb9ca6decbda7113b, From entity, Value { r#type: Entity, value: "38fea29845a648d6bf253c608dcca3fb" } +SetTriple: af77f491813145b985fde7b8bbd4ecb5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: af77f491813145b985fde7b8bbd4ecb5, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: af77f491813145b985fde7b8bbd4ecb5, From entity, Value { r#type: Entity, value: "33eb5fa733274d1399fed044f5b5b385" } +SetTriple: 780ebc6372ba4951a861b9385c03ed9f, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 780ebc6372ba4951a861b9385c03ed9f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 780ebc6372ba4951a861b9385c03ed9f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 780ebc6372ba4951a861b9385c03ed9f, To entity, Value { r#type: Entity, value: "276c48daef77463a887fdb21d82c4542" } +SetTriple: 780ebc6372ba4951a861b9385c03ed9f, From entity, Value { r#type: Entity, value: "33eb5fa733274d1399fed044f5b5b385" } +SetTriple: 2dbf48fe445e424db6bdb72bc8ea43cd, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 2dbf48fe445e424db6bdb72bc8ea43cd, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2dbf48fe445e424db6bdb72bc8ea43cd, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2dbf48fe445e424db6bdb72bc8ea43cd, To entity, Value { r#type: Entity, value: "0db47aca1ccf4c9fbeb689519ebe9eed" } +SetTriple: 2dbf48fe445e424db6bdb72bc8ea43cd, From entity, Value { r#type: Entity, value: "276c48daef77463a887fdb21d82c4542" } +SetTriple: 54af5ec3455d489fa739eef40a719924, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 54af5ec3455d489fa739eef40a719924, Index, Value { r#type: Text, value: "a0" } +SetTriple: 54af5ec3455d489fa739eef40a719924, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 54af5ec3455d489fa739eef40a719924, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 54af5ec3455d489fa739eef40a719924, From entity, Value { r#type: Entity, value: "276c48daef77463a887fdb21d82c4542" } +SetTriple: c0ed08edbae24f07a679eed7e4a1c89b, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: c0ed08edbae24f07a679eed7e4a1c89b, Index, Value { r#type: Text, value: "a0" } +SetTriple: c0ed08edbae24f07a679eed7e4a1c89b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c0ed08edbae24f07a679eed7e4a1c89b, To entity, Value { r#type: Entity, value: "e8010874d3304a4d990762e89a19371a" } +SetTriple: c0ed08edbae24f07a679eed7e4a1c89b, From entity, Value { r#type: Entity, value: "276c48daef77463a887fdb21d82c4542" } +SetTriple: fe1ddf2b60854c45a1d9efa8aa5a02b7, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: fe1ddf2b60854c45a1d9efa8aa5a02b7, Index, Value { r#type: Text, value: "a0" } +SetTriple: fe1ddf2b60854c45a1d9efa8aa5a02b7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: fe1ddf2b60854c45a1d9efa8aa5a02b7, To entity, Value { r#type: Entity, value: "26ccb6918cfc4b948ccc168564e2bfdf" } +SetTriple: fe1ddf2b60854c45a1d9efa8aa5a02b7, From entity, Value { r#type: Entity, value: "276c48daef77463a887fdb21d82c4542" } +SetTriple: 586ed01f7bd747d4b7a3155eb1e16828, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 586ed01f7bd747d4b7a3155eb1e16828, Index, Value { r#type: Text, value: "a0" } +SetTriple: 586ed01f7bd747d4b7a3155eb1e16828, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 586ed01f7bd747d4b7a3155eb1e16828, To entity, Value { r#type: Entity, value: "e40b39dc2853404b9d06bf89ee241afd" } +SetTriple: 586ed01f7bd747d4b7a3155eb1e16828, From entity, Value { r#type: Entity, value: "276c48daef77463a887fdb21d82c4542" } +SetTriple: 63071b719d2a4fb697d0ad6a627d072e, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 63071b719d2a4fb697d0ad6a627d072e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 63071b719d2a4fb697d0ad6a627d072e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 63071b719d2a4fb697d0ad6a627d072e, To entity, Value { r#type: Entity, value: "feb48f93d5e94ad58567ea8353998e52" } +SetTriple: 63071b719d2a4fb697d0ad6a627d072e, From entity, Value { r#type: Entity, value: "276c48daef77463a887fdb21d82c4542" } +SetTriple: 10b1aaaff3c0400b9f3f538e1b580eb2, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 10b1aaaff3c0400b9f3f538e1b580eb2, Index, Value { r#type: Text, value: "a0" } +SetTriple: 10b1aaaff3c0400b9f3f538e1b580eb2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 10b1aaaff3c0400b9f3f538e1b580eb2, To entity, Value { r#type: Entity, value: "7fa816a3cb704534934888449869dc33" } +SetTriple: 10b1aaaff3c0400b9f3f538e1b580eb2, From entity, Value { r#type: Entity, value: "276c48daef77463a887fdb21d82c4542" } +SetTriple: 178cfd1725274d91ba384fe043f019c4, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 178cfd1725274d91ba384fe043f019c4, Index, Value { r#type: Text, value: "a0" } +SetTriple: 178cfd1725274d91ba384fe043f019c4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bbe69204c56848d099ba0bd8a2dc6b40, To entity, Value { r#type: Entity, value: "f3a92f467b3048128e4e3bfe383179e2" } +SetTriple: 6fc7d6da809441dd92b354610d425a3b, Name, Value { r#type: Text, value: "Avatar, a square ima" } +SetTriple: 33eb5fa733274d1399fed044f5b5b385, Name, Value { r#type: Text, value: "Explanation of Press" } +SetTriple: 276c48daef77463a887fdb21d82c4542, Description, Value { r#type: Text, value: "An official communication issued to media outlets, offering information, an official stance, or an announcement intended for public dissemination. It serves as a primary source, directly conveying original information or news from the issuing entity to the media and, subsequently, to the public. " } +SetTriple: 276c48daef77463a887fdb21d82c4542, Name, Value { r#type: Text, value: "Press release" } +SetTriple: 178cfd1725274d91ba384fe043f019c4, To entity, Value { r#type: Entity, value: "55a7c6143622426a84568a493eed94b9" } +SetTriple: 178cfd1725274d91ba384fe043f019c4, From entity, Value { r#type: Entity, value: "276c48daef77463a887fdb21d82c4542" } +SetTriple: 99a651610c15431390acca9023bb8869, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 99a651610c15431390acca9023bb8869, Index, Value { r#type: Text, value: "a0" } +SetTriple: 99a651610c15431390acca9023bb8869, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 99a651610c15431390acca9023bb8869, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: 99a651610c15431390acca9023bb8869, From entity, Value { r#type: Entity, value: "276c48daef77463a887fdb21d82c4542" } +SetTriple: 921b4071dbe6462580b7c48b114ad6f9, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 921b4071dbe6462580b7c48b114ad6f9, Index, Value { r#type: Text, value: "a0" } +SetTriple: 921b4071dbe6462580b7c48b114ad6f9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 921b4071dbe6462580b7c48b114ad6f9, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 921b4071dbe6462580b7c48b114ad6f9, From entity, Value { r#type: Entity, value: "276c48daef77463a887fdb21d82c4542" } +SetTriple: bbe69204c56848d099ba0bd8a2dc6b40, From entity, Value { r#type: Entity, value: "276c48daef77463a887fdb21d82c4542" } +SetTriple: d310e4c62702446ab32ea4c54f96258e, To entity, Value { r#type: Entity, value: "6fc7d6da809441dd92b354610d425a3b" } +SetTriple: d310e4c62702446ab32ea4c54f96258e, From entity, Value { r#type: Entity, value: "276c48daef77463a887fdb21d82c4542" } +SetTriple: 360a7dc4882b4ae78a4ca2fd804281ea, To entity, Value { r#type: Entity, value: "33eb5fa733274d1399fed044f5b5b385" } +SetTriple: 360a7dc4882b4ae78a4ca2fd804281ea, From entity, Value { r#type: Entity, value: "276c48daef77463a887fdb21d82c4542" } +SetTriple: 0076c54e3efd48bbba1590bfdea084dd, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: f3a92f467b3048128e4e3bfe383179e2, Name, Value { r#type: Text, value: "Tags, help in filter" } +SetTriple: Explanation of Press, Markdown Content, Value { r#type: Text, value: "## Explanation of Press release type attributes:\n\n" } +SetTriple: Avatar, a square ima, Markdown Content, Value { r#type: Text, value: "- **Avatar**, a square image with a minimum 500px by 500px resolution.\n\n- **Related topics**, topics connected to the press release.\n\n- **Claims about**, to complete, comment, question or refute the press release.\n\n- **Claims from**, key insights derived from the press release, highlighting its pivotal aspects or conclusions.\n\n\n" } +SetTriple: Tags, help in filter, Markdown Content, Value { r#type: Text, value: "- **Tags**, help in filtering tables and sorting the entity\n\n- **Publisher**, press releases can be published by corporations and businesses, government agencies, non-profit organizations, educational institutions, individuals or public figures, public relations firms, and event organizers.\n\n- **Web URL**, to access the original press release\n\n- **Publish date**, when the press release was issued\n\n- **Quotes from**, press releases are considered primary sources, their content is generally copyright free which allows quotations\n\n\n" } +SetTriple: bbe69204c56848d099ba0bd8a2dc6b40, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: bbe69204c56848d099ba0bd8a2dc6b40, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bbe69204c56848d099ba0bd8a2dc6b40, Index, Value { r#type: Text, value: "a2" } +SetTriple: 360a7dc4882b4ae78a4ca2fd804281ea, Index, Value { r#type: Text, value: "a0" } +SetTriple: 360a7dc4882b4ae78a4ca2fd804281ea, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 360a7dc4882b4ae78a4ca2fd804281ea, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: d310e4c62702446ab32ea4c54f96258e, Index, Value { r#type: Text, value: "a1" } +SetTriple: d310e4c62702446ab32ea4c54f96258e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d310e4c62702446ab32ea4c54f96258e, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 0076c54e3efd48bbba1590bfdea084dd, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0076c54e3efd48bbba1590bfdea084dd, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0076c54e3efd48bbba1590bfdea084dd, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: 0076c54e3efd48bbba1590bfdea084dd, From entity, Value { r#type: Entity, value: "f3a92f467b3048128e4e3bfe383179e2" } +SetTriple: c9f0ce8ea6f44d34a3946f1a66d8abdf, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: c9f0ce8ea6f44d34a3946f1a66d8abdf, Index, Value { r#type: Text, value: "a0" } +SetTriple: c9f0ce8ea6f44d34a3946f1a66d8abdf, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c9f0ce8ea6f44d34a3946f1a66d8abdf, To entity, Value { r#type: Entity, value: "276c48daef77463a887fdb21d82c4542" } +SetTriple: c9f0ce8ea6f44d34a3946f1a66d8abdf, From entity, Value { r#type: Entity, value: "f3a92f467b3048128e4e3bfe383179e2" } +SetTriple: 39188c633acc447c93795de1897d1336, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 39188c633acc447c93795de1897d1336, Index, Value { r#type: Text, value: "a0" } +SetTriple: 39188c633acc447c93795de1897d1336, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 39188c633acc447c93795de1897d1336, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: 39188c633acc447c93795de1897d1336, From entity, Value { r#type: Entity, value: "6fc7d6da809441dd92b354610d425a3b" } +SetTriple: 15e57d3400644f59a6b6f28bd5228d10, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 15e57d3400644f59a6b6f28bd5228d10, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 15e57d3400644f59a6b6f28bd5228d10, Index, Value { r#type: Text, value: "a0" } +SetTriple: 15e57d3400644f59a6b6f28bd5228d10, To entity, Value { r#type: Entity, value: "276c48daef77463a887fdb21d82c4542" } +SetTriple: 15e57d3400644f59a6b6f28bd5228d10, From entity, Value { r#type: Entity, value: "6fc7d6da809441dd92b354610d425a3b" } +SetTriple: af77f491813145b985fde7b8bbd4ecb5, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: af77f491813145b985fde7b8bbd4ecb5, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2ce84599b89a4b11a2f18c3cd2db46d8, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 73984ff311e64b42bd0907f34d4be0e2, Description, Value { r#type: Text, value: "" } +SetTriple: e769b6ac23874b37919b9cab193868fd, Name, Value { r#type: Text, value: "Total revenue" } +SetTriple: 9e94fc0c2f6e4fd6894beef6bfe64d49, Name, Value { r#type: Text, value: "Contributions" } +SetTriple: 6c90a9755da74f5a9401514d30dd9926, Name, Value { r#type: Text, value: "Other expenses" } +SetTriple: 8a5733661d8648b6b861c48aad11486f, Name, Value { r#type: Text, value: "Program services fees" } +SetTriple: 5572bb781e9b4752833372e7c2c90c8b, Name, Value { r#type: Text, value: "Construction costs" } +SetTriple: 0b623cb1ba1d407ab9cc58becb52b531, Name, Value { r#type: Text, value: "Other revenue sources" } +SetTriple: bc6d8191162642b2a8fc6d639535306c, Name, Value { r#type: Text, value: "Salaries + Benefits" } +SetTriple: 15645106d2034db18692012a6e06349f, Name, Value { r#type: Text, value: "Non-financial assets" } +SetTriple: 73984ff311e64b42bd0907f34d4be0e2, Name, Value { r#type: Text, value: "Grants" } +SetTriple: ce59ccc12ac54ace8f8209322434733d, Name, Value { r#type: Text, value: "Finance Summary" } +SetTriple: 0ba2571278ef4cfe9b30077147bd1e97, From entity, Value { r#type: Entity, value: "ce59ccc12ac54ace8f8209322434733d" } +SetTriple: 0ba2571278ef4cfe9b30077147bd1e97, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 0ba2571278ef4cfe9b30077147bd1e97, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0ba2571278ef4cfe9b30077147bd1e97, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0ba2571278ef4cfe9b30077147bd1e97, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 40fbb5c4a10b43458d9019fa3246a7a2, From entity, Value { r#type: Entity, value: "ce59ccc12ac54ace8f8209322434733d" } +SetTriple: 40fbb5c4a10b43458d9019fa3246a7a2, To entity, Value { r#type: Entity, value: "73984ff311e64b42bd0907f34d4be0e2" } +SetTriple: 40fbb5c4a10b43458d9019fa3246a7a2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 40fbb5c4a10b43458d9019fa3246a7a2, Index, Value { r#type: Text, value: "a0" } +SetTriple: 40fbb5c4a10b43458d9019fa3246a7a2, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 17f3c316c2a94470837793d82fe1f8ee, From entity, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 17f3c316c2a94470837793d82fe1f8ee, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 17f3c316c2a94470837793d82fe1f8ee, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 17f3c316c2a94470837793d82fe1f8ee, Index, Value { r#type: Text, value: "a0" } +SetTriple: 17f3c316c2a94470837793d82fe1f8ee, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: ff63c6173e5241f281d0306f4a90b89d, From entity, Value { r#type: Entity, value: "15645106d2034db18692012a6e06349f" } +SetTriple: ff63c6173e5241f281d0306f4a90b89d, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: ff63c6173e5241f281d0306f4a90b89d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ff63c6173e5241f281d0306f4a90b89d, Index, Value { r#type: Text, value: "a0" } +SetTriple: ff63c6173e5241f281d0306f4a90b89d, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 6ef7c23abfe141498859d930a777c490, From entity, Value { r#type: Entity, value: "ce59ccc12ac54ace8f8209322434733d" } +SetTriple: 6ef7c23abfe141498859d930a777c490, To entity, Value { r#type: Entity, value: "15645106d2034db18692012a6e06349f" } +SetTriple: 6ef7c23abfe141498859d930a777c490, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6ef7c23abfe141498859d930a777c490, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6ef7c23abfe141498859d930a777c490, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: e7f3ba18fb2546d6bb0ec3d82ca50d28, From entity, Value { r#type: Entity, value: "bc6d8191162642b2a8fc6d639535306c" } +SetTriple: e7f3ba18fb2546d6bb0ec3d82ca50d28, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: e7f3ba18fb2546d6bb0ec3d82ca50d28, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e7f3ba18fb2546d6bb0ec3d82ca50d28, Index, Value { r#type: Text, value: "a0" } +SetTriple: e7f3ba18fb2546d6bb0ec3d82ca50d28, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 5e77ce4415f146a1905bb47be44d5138, From entity, Value { r#type: Entity, value: "ce59ccc12ac54ace8f8209322434733d" } +SetTriple: 5e77ce4415f146a1905bb47be44d5138, To entity, Value { r#type: Entity, value: "bc6d8191162642b2a8fc6d639535306c" } +SetTriple: 5e77ce4415f146a1905bb47be44d5138, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5e77ce4415f146a1905bb47be44d5138, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5e77ce4415f146a1905bb47be44d5138, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 2ce84599b89a4b11a2f18c3cd2db46d8, From entity, Value { r#type: Entity, value: "0b623cb1ba1d407ab9cc58becb52b531" } +SetTriple: 2ce84599b89a4b11a2f18c3cd2db46d8, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 2ce84599b89a4b11a2f18c3cd2db46d8, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2ce84599b89a4b11a2f18c3cd2db46d8, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: a3c51c8e5cb74e3ab1866ce3c4193a43, From entity, Value { r#type: Entity, value: "ce59ccc12ac54ace8f8209322434733d" } +SetTriple: a3c51c8e5cb74e3ab1866ce3c4193a43, To entity, Value { r#type: Entity, value: "0b623cb1ba1d407ab9cc58becb52b531" } +SetTriple: a3c51c8e5cb74e3ab1866ce3c4193a43, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a3c51c8e5cb74e3ab1866ce3c4193a43, Index, Value { r#type: Text, value: "a0" } +SetTriple: a3c51c8e5cb74e3ab1866ce3c4193a43, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: a2fd74e9647d4fa490ba50377b90a19e, From entity, Value { r#type: Entity, value: "5572bb781e9b4752833372e7c2c90c8b" } +SetTriple: a2fd74e9647d4fa490ba50377b90a19e, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: a2fd74e9647d4fa490ba50377b90a19e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a2fd74e9647d4fa490ba50377b90a19e, Index, Value { r#type: Text, value: "a0" } +SetTriple: a2fd74e9647d4fa490ba50377b90a19e, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 8472dd23ef974a3b8f159f726697dc64, From entity, Value { r#type: Entity, value: "ce59ccc12ac54ace8f8209322434733d" } +SetTriple: 8472dd23ef974a3b8f159f726697dc64, To entity, Value { r#type: Entity, value: "5572bb781e9b4752833372e7c2c90c8b" } +SetTriple: 8472dd23ef974a3b8f159f726697dc64, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8472dd23ef974a3b8f159f726697dc64, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8472dd23ef974a3b8f159f726697dc64, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 25e3b977416f416ba1fddda8fc2d8ebd, From entity, Value { r#type: Entity, value: "8a5733661d8648b6b861c48aad11486f" } +SetTriple: 25e3b977416f416ba1fddda8fc2d8ebd, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 25e3b977416f416ba1fddda8fc2d8ebd, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 25e3b977416f416ba1fddda8fc2d8ebd, Index, Value { r#type: Text, value: "a0" } +SetTriple: 25e3b977416f416ba1fddda8fc2d8ebd, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 376e9f225ec840f0a4e3064e7d879375, From entity, Value { r#type: Entity, value: "ce59ccc12ac54ace8f8209322434733d" } +SetTriple: 376e9f225ec840f0a4e3064e7d879375, To entity, Value { r#type: Entity, value: "8a5733661d8648b6b861c48aad11486f" } +SetTriple: 376e9f225ec840f0a4e3064e7d879375, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 376e9f225ec840f0a4e3064e7d879375, Index, Value { r#type: Text, value: "a0" } +SetTriple: 376e9f225ec840f0a4e3064e7d879375, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 47541b73e01e49f5b3fb4396ca80560a, From entity, Value { r#type: Entity, value: "6c90a9755da74f5a9401514d30dd9926" } +SetTriple: 47541b73e01e49f5b3fb4396ca80560a, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 47541b73e01e49f5b3fb4396ca80560a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 47541b73e01e49f5b3fb4396ca80560a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 47541b73e01e49f5b3fb4396ca80560a, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: f29503d86616420d876b39fefcc63a09, From entity, Value { r#type: Entity, value: "ce59ccc12ac54ace8f8209322434733d" } +SetTriple: f29503d86616420d876b39fefcc63a09, To entity, Value { r#type: Entity, value: "6c90a9755da74f5a9401514d30dd9926" } +SetTriple: f29503d86616420d876b39fefcc63a09, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f29503d86616420d876b39fefcc63a09, Index, Value { r#type: Text, value: "a0" } +SetTriple: f29503d86616420d876b39fefcc63a09, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 2a25248a715942c3896771a80df60149, From entity, Value { r#type: Entity, value: "9e94fc0c2f6e4fd6894beef6bfe64d49" } +SetTriple: 2a25248a715942c3896771a80df60149, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 2a25248a715942c3896771a80df60149, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2a25248a715942c3896771a80df60149, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2a25248a715942c3896771a80df60149, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 5326a0dc17834a5c9b374222977413c5, From entity, Value { r#type: Entity, value: "ce59ccc12ac54ace8f8209322434733d" } +SetTriple: 5326a0dc17834a5c9b374222977413c5, To entity, Value { r#type: Entity, value: "9e94fc0c2f6e4fd6894beef6bfe64d49" } +SetTriple: 5326a0dc17834a5c9b374222977413c5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5326a0dc17834a5c9b374222977413c5, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5326a0dc17834a5c9b374222977413c5, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: a74a00fbc7cb46d9bb8cf362b610775a, From entity, Value { r#type: Entity, value: "e769b6ac23874b37919b9cab193868fd" } +SetTriple: a74a00fbc7cb46d9bb8cf362b610775a, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: a74a00fbc7cb46d9bb8cf362b610775a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a74a00fbc7cb46d9bb8cf362b610775a, Index, Value { r#type: Text, value: "a0" } +SetTriple: a74a00fbc7cb46d9bb8cf362b610775a, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: fee25c12829649de87525a894bf826f7, From entity, Value { r#type: Entity, value: "ce59ccc12ac54ace8f8209322434733d" } +SetTriple: fee25c12829649de87525a894bf826f7, To entity, Value { r#type: Entity, value: "e769b6ac23874b37919b9cab193868fd" } +SetTriple: fee25c12829649de87525a894bf826f7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: fee25c12829649de87525a894bf826f7, Index, Value { r#type: Text, value: "a0" } +SetTriple: fee25c12829649de87525a894bf826f7, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 3c1cbc11e9164a3e80ef066935c85298, From entity, Value { r#type: Entity, value: "73984ff311e64b42bd0907f34d4be0e2" } +SetTriple: 3c1cbc11e9164a3e80ef066935c85298, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 3c1cbc11e9164a3e80ef066935c85298, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3c1cbc11e9164a3e80ef066935c85298, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3c1cbc11e9164a3e80ef066935c85298, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 6c1416b1c033427f89bcd9a07498ae43, From entity, Value { r#type: Entity, value: "73984ff311e64b42bd0907f34d4be0e2" } +SetTriple: 6c1416b1c033427f89bcd9a07498ae43, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: 6c1416b1c033427f89bcd9a07498ae43, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6c1416b1c033427f89bcd9a07498ae43, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6c1416b1c033427f89bcd9a07498ae43, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 3fa21ea53f1241fca825963f6ae6cd44, From entity, Value { r#type: Entity, value: "15645106d2034db18692012a6e06349f" } +SetTriple: 3fa21ea53f1241fca825963f6ae6cd44, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: 3fa21ea53f1241fca825963f6ae6cd44, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3fa21ea53f1241fca825963f6ae6cd44, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3fa21ea53f1241fca825963f6ae6cd44, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 21d92406796b42aab10be202211ac374, From entity, Value { r#type: Entity, value: "bc6d8191162642b2a8fc6d639535306c" } +SetTriple: 21d92406796b42aab10be202211ac374, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: 21d92406796b42aab10be202211ac374, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 21d92406796b42aab10be202211ac374, Index, Value { r#type: Text, value: "a0" } +SetTriple: 21d92406796b42aab10be202211ac374, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: d451e2eb25cc4fdbb4115500815c91ac, From entity, Value { r#type: Entity, value: "0b623cb1ba1d407ab9cc58becb52b531" } +SetTriple: d451e2eb25cc4fdbb4115500815c91ac, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: d451e2eb25cc4fdbb4115500815c91ac, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d451e2eb25cc4fdbb4115500815c91ac, Index, Value { r#type: Text, value: "a0" } +SetTriple: d451e2eb25cc4fdbb4115500815c91ac, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 9a2371a2e08a41c1967035079f736e04, From entity, Value { r#type: Entity, value: "5572bb781e9b4752833372e7c2c90c8b" } +SetTriple: 9a2371a2e08a41c1967035079f736e04, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: 9a2371a2e08a41c1967035079f736e04, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9a2371a2e08a41c1967035079f736e04, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9a2371a2e08a41c1967035079f736e04, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 9582bc300e8941b8baa1baa1bdad2dd4, From entity, Value { r#type: Entity, value: "8a5733661d8648b6b861c48aad11486f" } +SetTriple: 9582bc300e8941b8baa1baa1bdad2dd4, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: 9582bc300e8941b8baa1baa1bdad2dd4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9582bc300e8941b8baa1baa1bdad2dd4, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9582bc300e8941b8baa1baa1bdad2dd4, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: e22d883a57ff4a6484fd2513c910afad, From entity, Value { r#type: Entity, value: "6c90a9755da74f5a9401514d30dd9926" } +SetTriple: e22d883a57ff4a6484fd2513c910afad, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: e22d883a57ff4a6484fd2513c910afad, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e22d883a57ff4a6484fd2513c910afad, Index, Value { r#type: Text, value: "a0" } +SetTriple: e22d883a57ff4a6484fd2513c910afad, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 01ca38c974e24950b8e0cb20b9117baf, From entity, Value { r#type: Entity, value: "9e94fc0c2f6e4fd6894beef6bfe64d49" } +SetTriple: 01ca38c974e24950b8e0cb20b9117baf, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: 01ca38c974e24950b8e0cb20b9117baf, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 01ca38c974e24950b8e0cb20b9117baf, Index, Value { r#type: Text, value: "a0" } +SetTriple: 01ca38c974e24950b8e0cb20b9117baf, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 4c531bed2363473685ab143f64304618, From entity, Value { r#type: Entity, value: "e769b6ac23874b37919b9cab193868fd" } +SetTriple: 4c531bed2363473685ab143f64304618, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: 4c531bed2363473685ab143f64304618, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4c531bed2363473685ab143f64304618, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4c531bed2363473685ab143f64304618, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: bd691c8c873b41f384c43d3e6507712f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 23787c8312e940c1abed0575fb78376d, Name, Value { r#type: Text, value: "Build cost" } +SetTriple: bd691c8c873b41f384c43d3e6507712f, To entity, Value { r#type: Entity, value: "be5f65cf340840d09b01188cedb00670" } +SetTriple: 6385d297d1bc4b8a8eedf1bf61bc4102, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6385d297d1bc4b8a8eedf1bf61bc4102, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: bd691c8c873b41f384c43d3e6507712f, From entity, Value { r#type: Entity, value: "cb9d261d456b4eaf87e51e9faa441867" } +SetTriple: 9bdd0dfdd2d243afa3db72b4edd66c75, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9bdd0dfdd2d243afa3db72b4edd66c75, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 9bdd0dfdd2d243afa3db72b4edd66c75, From entity, Value { r#type: Entity, value: "be5f65cf340840d09b01188cedb00670" } +SetTriple: 8d537ae502424fc291cf47d833630879, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 8d537ae502424fc291cf47d833630879, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8d537ae502424fc291cf47d833630879, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8d537ae502424fc291cf47d833630879, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 8d537ae502424fc291cf47d833630879, From entity, Value { r#type: Entity, value: "8ea3ec8f699a419b8d107a9d5583b831" } +SetTriple: 94ef428fc4794260ac4ede3cd4c731b4, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 94ef428fc4794260ac4ede3cd4c731b4, Index, Value { r#type: Text, value: "a0" } +SetTriple: 94ef428fc4794260ac4ede3cd4c731b4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 94ef428fc4794260ac4ede3cd4c731b4, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 94ef428fc4794260ac4ede3cd4c731b4, From entity, Value { r#type: Entity, value: "23787c8312e940c1abed0575fb78376d" } +SetTriple: 6385d297d1bc4b8a8eedf1bf61bc4102, To entity, Value { r#type: Entity, value: "8ea3ec8f699a419b8d107a9d5583b831" } +SetTriple: 0cdf197cb50b49cc89b15ed17989fcd6, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 0cdf197cb50b49cc89b15ed17989fcd6, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0cdf197cb50b49cc89b15ed17989fcd6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0cdf197cb50b49cc89b15ed17989fcd6, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: 0cdf197cb50b49cc89b15ed17989fcd6, From entity, Value { r#type: Entity, value: "d9f91c89a9a94a1098e4f394927a4f8e" } +SetTriple: 4ef78409d0c2470fa6440e1efe53fc95, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 4ef78409d0c2470fa6440e1efe53fc95, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4ef78409d0c2470fa6440e1efe53fc95, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bd691c8c873b41f384c43d3e6507712f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4ef78409d0c2470fa6440e1efe53fc95, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: 4ef78409d0c2470fa6440e1efe53fc95, From entity, Value { r#type: Entity, value: "be5f65cf340840d09b01188cedb00670" } +SetTriple: a4cb12409eea48fd8c7af0c8a574eefa, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: a4cb12409eea48fd8c7af0c8a574eefa, Index, Value { r#type: Text, value: "a0" } +SetTriple: a4cb12409eea48fd8c7af0c8a574eefa, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a4cb12409eea48fd8c7af0c8a574eefa, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: a4cb12409eea48fd8c7af0c8a574eefa, From entity, Value { r#type: Entity, value: "8ea3ec8f699a419b8d107a9d5583b831" } +SetTriple: a7309f47c7e345028870847c14ac0e92, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: a7309f47c7e345028870847c14ac0e92, Index, Value { r#type: Text, value: "a0" } +SetTriple: be5f65cf340840d09b01188cedb00670, Name, Value { r#type: Text, value: "Number of residents" } +SetTriple: d9f91c89a9a94a1098e4f394927a4f8e, Name, Value { r#type: Text, value: "Annual operation cost" } +SetTriple: 8ea3ec8f699a419b8d107a9d5583b831, Name, Value { r#type: Text, value: "Units" } +SetTriple: 6385d297d1bc4b8a8eedf1bf61bc4102, From entity, Value { r#type: Entity, value: "cb9d261d456b4eaf87e51e9faa441867" } +SetTriple: cda6b8a88482456793d6d3f03a233d14, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: a7309f47c7e345028870847c14ac0e92, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4140c5b18642473c8f69f21d7dfbc002, From entity, Value { r#type: Entity, value: "cb9d261d456b4eaf87e51e9faa441867" } +SetTriple: d96c4e79cc1b4e4d9c478cb838d8f06c, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: d96c4e79cc1b4e4d9c478cb838d8f06c, Index, Value { r#type: Text, value: "a0" } +SetTriple: d96c4e79cc1b4e4d9c478cb838d8f06c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d96c4e79cc1b4e4d9c478cb838d8f06c, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: d96c4e79cc1b4e4d9c478cb838d8f06c, From entity, Value { r#type: Entity, value: "d9f91c89a9a94a1098e4f394927a4f8e" } +SetTriple: a7309f47c7e345028870847c14ac0e92, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: bd691c8c873b41f384c43d3e6507712f, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: cda6b8a88482456793d6d3f03a233d14, Index, Value { r#type: Text, value: "a0" } +SetTriple: cda6b8a88482456793d6d3f03a233d14, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: cda6b8a88482456793d6d3f03a233d14, To entity, Value { r#type: Entity, value: "23787c8312e940c1abed0575fb78376d" } +SetTriple: cda6b8a88482456793d6d3f03a233d14, From entity, Value { r#type: Entity, value: "cb9d261d456b4eaf87e51e9faa441867" } +SetTriple: 9bdd0dfdd2d243afa3db72b4edd66c75, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 9bdd0dfdd2d243afa3db72b4edd66c75, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6385d297d1bc4b8a8eedf1bf61bc4102, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4140c5b18642473c8f69f21d7dfbc002, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4140c5b18642473c8f69f21d7dfbc002, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4140c5b18642473c8f69f21d7dfbc002, To entity, Value { r#type: Entity, value: "d9f91c89a9a94a1098e4f394927a4f8e" } +SetTriple: 4140c5b18642473c8f69f21d7dfbc002, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: a7309f47c7e345028870847c14ac0e92, From entity, Value { r#type: Entity, value: "23787c8312e940c1abed0575fb78376d" } +SetTriple: Sub services, Name, Value { r#type: Text, value: "Subservices" } +SetTriple: 5ba9ebb0e82e4a3aab13e40f0b9804b2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 92f8b7e607464e47bb25435ffa0472ab, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 115ebb4ee13b4e67b6ee687958c591b4, From entity, Value { r#type: Entity, value: "cc83fb08421f4580bdf28831e6425583" } +SetTriple: 115ebb4ee13b4e67b6ee687958c591b4, To entity, Value { r#type: Entity, value: "15234a4c061f46ee90a0c44cd9414cbe" } +SetTriple: 115ebb4ee13b4e67b6ee687958c591b4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 115ebb4ee13b4e67b6ee687958c591b4, Index, Value { r#type: Text, value: "a0" } +SetTriple: 92f8b7e607464e47bb25435ffa0472ab, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 92f8b7e607464e47bb25435ffa0472ab, To entity, Value { r#type: Entity, value: "26ccb6918cfc4b948ccc168564e2bfdf" } +SetTriple: 92f8b7e607464e47bb25435ffa0472ab, From entity, Value { r#type: Entity, value: "cc83fb08421f4580bdf28831e6425583" } +SetTriple: 1138da4bf18e462aae51a7047a9aa886, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 1138da4bf18e462aae51a7047a9aa886, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1138da4bf18e462aae51a7047a9aa886, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1138da4bf18e462aae51a7047a9aa886, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: 1138da4bf18e462aae51a7047a9aa886, From entity, Value { r#type: Entity, value: "cc83fb08421f4580bdf28831e6425583" } +SetTriple: da2e38310ad94505bb4e9020fcbe7605, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: da2e38310ad94505bb4e9020fcbe7605, Index, Value { r#type: Text, value: "a0" } +SetTriple: da2e38310ad94505bb4e9020fcbe7605, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: da2e38310ad94505bb4e9020fcbe7605, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 92f8b7e607464e47bb25435ffa0472ab, Index, Value { r#type: Text, value: "a0" } +SetTriple: 09d32e18438947518b0a336bfabaeb5b, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 09d32e18438947518b0a336bfabaeb5b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 09d32e18438947518b0a336bfabaeb5b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 09d32e18438947518b0a336bfabaeb5b, To entity, Value { r#type: Entity, value: "ee5648a5d63847809796cd8605517545" } +SetTriple: 09d32e18438947518b0a336bfabaeb5b, From entity, Value { r#type: Entity, value: "cc83fb08421f4580bdf28831e6425583" } +SetTriple: d65c809a02ee482bb766f0ce1ed1d837, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: d65c809a02ee482bb766f0ce1ed1d837, Index, Value { r#type: Text, value: "a0" } +SetTriple: d65c809a02ee482bb766f0ce1ed1d837, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d65c809a02ee482bb766f0ce1ed1d837, To entity, Value { r#type: Entity, value: "0db47aca1ccf4c9fbeb689519ebe9eed" } +SetTriple: d65c809a02ee482bb766f0ce1ed1d837, From entity, Value { r#type: Entity, value: "cc83fb08421f4580bdf28831e6425583" } +SetTriple: 0409c714054a47b3b59a3d107b2c7975, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 0409c714054a47b3b59a3d107b2c7975, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0409c714054a47b3b59a3d107b2c7975, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0409c714054a47b3b59a3d107b2c7975, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 0409c714054a47b3b59a3d107b2c7975, From entity, Value { r#type: Entity, value: "cc83fb08421f4580bdf28831e6425583" } +SetTriple: ba589723e7094fbcb6748796b5c0713c, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: ba589723e7094fbcb6748796b5c0713c, Index, Value { r#type: Text, value: "a0" } +SetTriple: ba589723e7094fbcb6748796b5c0713c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ba589723e7094fbcb6748796b5c0713c, To entity, Value { r#type: Entity, value: "55a7c6143622426a84568a493eed94b9" } +SetTriple: ba589723e7094fbcb6748796b5c0713c, From entity, Value { r#type: Entity, value: "cc83fb08421f4580bdf28831e6425583" } +SetTriple: 1ad9d5690ccb43329a25236ccaf77f6b, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 1ad9d5690ccb43329a25236ccaf77f6b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1ad9d5690ccb43329a25236ccaf77f6b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1ad9d5690ccb43329a25236ccaf77f6b, To entity, Value { r#type: Entity, value: "7fa816a3cb704534934888449869dc33" } +SetTriple: 1ad9d5690ccb43329a25236ccaf77f6b, From entity, Value { r#type: Entity, value: "cc83fb08421f4580bdf28831e6425583" } +SetTriple: 5ba9ebb0e82e4a3aab13e40f0b9804b2, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 5ba9ebb0e82e4a3aab13e40f0b9804b2, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5ba9ebb0e82e4a3aab13e40f0b9804b2, To entity, Value { r#type: Entity, value: "e8010874d3304a4d990762e89a19371a" } +SetTriple: 5ba9ebb0e82e4a3aab13e40f0b9804b2, From entity, Value { r#type: Entity, value: "cc83fb08421f4580bdf28831e6425583" } +SetTriple: 115ebb4ee13b4e67b6ee687958c591b4, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: da2e38310ad94505bb4e9020fcbe7605, From entity, Value { r#type: Entity, value: "cc83fb08421f4580bdf28831e6425583" } +SetTriple: cc83fb08421f4580bdf28831e6425583, Name, Value { r#type: Text, value: "Opinion poll" } +SetTriple: Opinion poll, Description, Value { r#type: Text, value: "Survey that gathers public opinion from a specific group of people. Opinion polls are usually designed to represent the opinions of a population by conducting a series of questions and then extrapolating generalities in ratio or within confidence intervals. The results are then used to generalize the broader public's opinions to understand trends or predict outcomes in areas like politics, economics, and social issues." } +SetTriple: 7413b8f0a1c14ba7b168c4d036d0d72e, From entity, Value { r#type: Entity, value: "cc83fb08421f4580bdf28831e6425583" } +SetTriple: 7413b8f0a1c14ba7b168c4d036d0d72e, To entity, Value { r#type: Entity, value: "e40b39dc2853404b9d06bf89ee241afd" } +SetTriple: 7413b8f0a1c14ba7b168c4d036d0d72e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7413b8f0a1c14ba7b168c4d036d0d72e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7413b8f0a1c14ba7b168c4d036d0d72e, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 25209be692e5466dbd614c62e77ac3a6, From entity, Value { r#type: Entity, value: "ac29ecfd79bb4ca7b896ee1757781170" } +SetTriple: 34cb1c4e5b7d46b185a93b47d94996f2, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 34cb1c4e5b7d46b185a93b47d94996f2, Index, Value { r#type: Text, value: "a0" } +SetTriple: 34cb1c4e5b7d46b185a93b47d94996f2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 34cb1c4e5b7d46b185a93b47d94996f2, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 34cb1c4e5b7d46b185a93b47d94996f2, From entity, Value { r#type: Entity, value: "ac29ecfd79bb4ca7b896ee1757781170" } +SetTriple: 21d7378d44e844e99db6ef667902bccf, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 21d7378d44e844e99db6ef667902bccf, Index, Value { r#type: Text, value: "a0" } +SetTriple: 21d7378d44e844e99db6ef667902bccf, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 21d7378d44e844e99db6ef667902bccf, To entity, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 21d7378d44e844e99db6ef667902bccf, From entity, Value { r#type: Entity, value: "ac29ecfd79bb4ca7b896ee1757781170" } +SetTriple: bb8fb521d1564e3bb50d4a99afa86b72, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: bb8fb521d1564e3bb50d4a99afa86b72, Index, Value { r#type: Text, value: "a0" } +SetTriple: bb8fb521d1564e3bb50d4a99afa86b72, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bb8fb521d1564e3bb50d4a99afa86b72, To entity, Value { r#type: Entity, value: "f9804f7c0e2e4658a8489aa65bbe411b" } +SetTriple: bb8fb521d1564e3bb50d4a99afa86b72, From entity, Value { r#type: Entity, value: "ac29ecfd79bb4ca7b896ee1757781170" } +SetTriple: b30f18d68d264b2d9de098f358320572, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: b30f18d68d264b2d9de098f358320572, Index, Value { r#type: Text, value: "a0" } +SetTriple: b30f18d68d264b2d9de098f358320572, To entity, Value { r#type: Entity, value: "e8010874d3304a4d990762e89a19371a" } +SetTriple: b30f18d68d264b2d9de098f358320572, From entity, Value { r#type: Entity, value: "ac29ecfd79bb4ca7b896ee1757781170" } +SetTriple: 2166587240a84f79a08b1303306e31ae, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 2166587240a84f79a08b1303306e31ae, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2166587240a84f79a08b1303306e31ae, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2166587240a84f79a08b1303306e31ae, To entity, Value { r#type: Entity, value: "cb36140946954676b62fc2290613a430" } +SetTriple: 2166587240a84f79a08b1303306e31ae, From entity, Value { r#type: Entity, value: "ac29ecfd79bb4ca7b896ee1757781170" } +SetTriple: 41ebcae38efe40a2addba9869ac7471c, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 41ebcae38efe40a2addba9869ac7471c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 41ebcae38efe40a2addba9869ac7471c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 41ebcae38efe40a2addba9869ac7471c, To entity, Value { r#type: Entity, value: "c4b9a30a92a945748f9b31c41eb8bbd8" } +SetTriple: 41ebcae38efe40a2addba9869ac7471c, From entity, Value { r#type: Entity, value: "ac29ecfd79bb4ca7b896ee1757781170" } +SetTriple: b41fbc85640c4679b835792904478c24, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: b41fbc85640c4679b835792904478c24, Index, Value { r#type: Text, value: "a0" } +SetTriple: b41fbc85640c4679b835792904478c24, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b41fbc85640c4679b835792904478c24, To entity, Value { r#type: Entity, value: "a89fcd1081b343e48f770d9561a68acd" } +SetTriple: b41fbc85640c4679b835792904478c24, From entity, Value { r#type: Entity, value: "ac29ecfd79bb4ca7b896ee1757781170" } +SetTriple: e85d324b72b74d08ba8dfd8ff7cb69fd, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: e85d324b72b74d08ba8dfd8ff7cb69fd, Index, Value { r#type: Text, value: "a0" } +SetTriple: ac29ecfd79bb4ca7b896ee1757781170, Name, Value { r#type: Text, value: "Government entity" } +SetTriple: Government entity, Description, Value { r#type: Text, value: "" } +SetTriple: e85d324b72b74d08ba8dfd8ff7cb69fd, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e85d324b72b74d08ba8dfd8ff7cb69fd, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: e85d324b72b74d08ba8dfd8ff7cb69fd, From entity, Value { r#type: Entity, value: "ac29ecfd79bb4ca7b896ee1757781170" } +SetTriple: d44db9db43f641a5b5e9fbdec7d757a6, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: d44db9db43f641a5b5e9fbdec7d757a6, Index, Value { r#type: Text, value: "a0" } +SetTriple: d44db9db43f641a5b5e9fbdec7d757a6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d44db9db43f641a5b5e9fbdec7d757a6, To entity, Value { r#type: Entity, value: "7884e9e9085344a9b30f2b46790bef1a" } +SetTriple: d44db9db43f641a5b5e9fbdec7d757a6, From entity, Value { r#type: Entity, value: "ac29ecfd79bb4ca7b896ee1757781170" } +SetTriple: 443891128a6148cbaf6b226e195dac4e, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 443891128a6148cbaf6b226e195dac4e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 443891128a6148cbaf6b226e195dac4e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 443891128a6148cbaf6b226e195dac4e, To entity, Value { r#type: Entity, value: "5e4911b82093411ea445bc2124d7f8e3" } +SetTriple: 443891128a6148cbaf6b226e195dac4e, From entity, Value { r#type: Entity, value: "ac29ecfd79bb4ca7b896ee1757781170" } +SetTriple: 2e7f52560a4947c0b47bdc2a13335da4, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 2e7f52560a4947c0b47bdc2a13335da4, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2e7f52560a4947c0b47bdc2a13335da4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2e7f52560a4947c0b47bdc2a13335da4, To entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: 2e7f52560a4947c0b47bdc2a13335da4, From entity, Value { r#type: Entity, value: "ac29ecfd79bb4ca7b896ee1757781170" } +SetTriple: 30645d1b9b8648c491e72d12589090ca, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 30645d1b9b8648c491e72d12589090ca, Index, Value { r#type: Text, value: "a0" } +SetTriple: 30645d1b9b8648c491e72d12589090ca, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 30645d1b9b8648c491e72d12589090ca, To entity, Value { r#type: Entity, value: "38d0e6afad6a40868c031a8f7b1b5b6e" } +SetTriple: 30645d1b9b8648c491e72d12589090ca, From entity, Value { r#type: Entity, value: "ac29ecfd79bb4ca7b896ee1757781170" } +SetTriple: 3c42de2e656b46f795160939cb114cad, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 3c42de2e656b46f795160939cb114cad, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3c42de2e656b46f795160939cb114cad, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3c42de2e656b46f795160939cb114cad, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: 3c42de2e656b46f795160939cb114cad, From entity, Value { r#type: Entity, value: "ac29ecfd79bb4ca7b896ee1757781170" } +SetTriple: 25209be692e5466dbd614c62e77ac3a6, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 25209be692e5466dbd614c62e77ac3a6, Index, Value { r#type: Text, value: "a0" } +SetTriple: 25209be692e5466dbd614c62e77ac3a6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 25209be692e5466dbd614c62e77ac3a6, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: b30f18d68d264b2d9de098f358320572, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 588f35a146844727827768d361746422, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 588f35a146844727827768d361746422, From entity, Value { r#type: Entity, value: "2c72ace7540444559d2265272a94e874" } +SetTriple: 2c72ace7540444559d2265272a94e874, Name, Value { r#type: Text, value: "Tab" } +SetTriple: 588f35a146844727827768d361746422, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 588f35a146844727827768d361746422, Index, Value { r#type: Text, value: "a0" } +SetTriple: 588f35a146844727827768d361746422, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: ca989883722745fe879bbaead8553a93, From entity, Value { r#type: Entity, value: "dab75eacc45b48ee84e0429e17e9d876" } +SetTriple: ca989883722745fe879bbaead8553a93, To entity, Value { r#type: Entity, value: "f724b80589e1424bb149acff9ecfd0f7" } +SetTriple: ca989883722745fe879bbaead8553a93, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ca989883722745fe879bbaead8553a93, Index, Value { r#type: Text, value: "a0" } +SetTriple: ca989883722745fe879bbaead8553a93, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 8f132ceafb2644e2be476cf2e07170ea, From entity, Value { r#type: Entity, value: "dab75eacc45b48ee84e0429e17e9d876" } +SetTriple: 8f132ceafb2644e2be476cf2e07170ea, To entity, Value { r#type: Entity, value: "26ccb6918cfc4b948ccc168564e2bfdf" } +SetTriple: 8f132ceafb2644e2be476cf2e07170ea, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8f132ceafb2644e2be476cf2e07170ea, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8f132ceafb2644e2be476cf2e07170ea, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 4c5a639ea68048a6903078416b7763d4, From entity, Value { r#type: Entity, value: "dab75eacc45b48ee84e0429e17e9d876" } +SetTriple: 4c5a639ea68048a6903078416b7763d4, To entity, Value { r#type: Entity, value: "150243a93a2f4c92997a3ba3fa1a6c75" } +SetTriple: 4c5a639ea68048a6903078416b7763d4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4c5a639ea68048a6903078416b7763d4, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1e4f35df1d874298b0ac2eb794b63fc4, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 4c5a639ea68048a6903078416b7763d4, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 25109097765a4c169c3681d2bf5da60e, From entity, Value { r#type: Entity, value: "4c1a6cf3a08d4fbab826a89acaaec28d" } +SetTriple: 25109097765a4c169c3681d2bf5da60e, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 25109097765a4c169c3681d2bf5da60e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 25109097765a4c169c3681d2bf5da60e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 25109097765a4c169c3681d2bf5da60e, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: d7c499207d19412795e015dd323ac8ae, From entity, Value { r#type: Entity, value: "dab75eacc45b48ee84e0429e17e9d876" } +SetTriple: 1e4f35df1d874298b0ac2eb794b63fc4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d7c499207d19412795e015dd323ac8ae, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d7c499207d19412795e015dd323ac8ae, Index, Value { r#type: Text, value: "a0" } +SetTriple: d7c499207d19412795e015dd323ac8ae, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 1e4f35df1d874298b0ac2eb794b63fc4, From entity, Value { r#type: Entity, value: "4c1a6cf3a08d4fbab826a89acaaec28d" } +SetTriple: d7c499207d19412795e015dd323ac8ae, To entity, Value { r#type: Entity, value: "4c1a6cf3a08d4fbab826a89acaaec28d" } +SetTriple: 1e4f35df1d874298b0ac2eb794b63fc4, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1e4f35df1d874298b0ac2eb794b63fc4, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 4c1a6cf3a08d4fbab826a89acaaec28d, Name, Value { r#type: Text, value: "Related documents" } +SetTriple: dab75eacc45b48ee84e0429e17e9d876, Name, Value { r#type: Text, value: "Document" } +SetTriple: 1568976646f344248db8f3408f8aaf04, From entity, Value { r#type: Entity, value: "dab75eacc45b48ee84e0429e17e9d876" } +SetTriple: 1568976646f344248db8f3408f8aaf04, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 1568976646f344248db8f3408f8aaf04, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1568976646f344248db8f3408f8aaf04, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1568976646f344248db8f3408f8aaf04, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 166c84fca6004061aa3629212a81dd59, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: Post, Description, Value { r#type: Text, value: "Message, image, or video shared on a website or social media platform, intended for public view and interaction from others." } +SetTriple: 859d0658448941ce8ebf28a7e1b4481f, Name, Value { r#type: Text, value: "Social media platforms" } +SetTriple: Social media platforms, Description, Value { r#type: Text, value: "Online services that enable users to create and share content or participate in social networking, facilitating communication and interaction among individuals worldwide." } +SetTriple: fb193443f45741e08990fecc363f07e0, Name, Value { r#type: Text, value: "Social media platform" } +SetTriple: Social media platform, Description, Value { r#type: Text, value: "Online service that enables users to create, share content, and engage in social interactions, fostering digital communities around diverse interests and activities." } +SetTriple: 0064b14cc0354d97909a016f947a5cd9, From entity, Value { r#type: Entity, value: "724d29589d5443c8af52e3feb24cdf88" } +SetTriple: 0064b14cc0354d97909a016f947a5cd9, To entity, Value { r#type: Entity, value: "e6184c8e261d46df9c4359fccde3395c" } +SetTriple: 0064b14cc0354d97909a016f947a5cd9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0064b14cc0354d97909a016f947a5cd9, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0064b14cc0354d97909a016f947a5cd9, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 277c3be2bb2e4c6084f22fda19ab0665, From entity, Value { r#type: Entity, value: "682fbeff41e242cda7f9c4909136a8c5" } +SetTriple: 277c3be2bb2e4c6084f22fda19ab0665, To entity, Value { r#type: Entity, value: "55a7c6143622426a84568a493eed94b9" } +SetTriple: 277c3be2bb2e4c6084f22fda19ab0665, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 277c3be2bb2e4c6084f22fda19ab0665, Index, Value { r#type: Text, value: "a0" } +SetTriple: 277c3be2bb2e4c6084f22fda19ab0665, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: ee526a741e894a81a4bd5bd544e17d09, From entity, Value { r#type: Entity, value: "682fbeff41e242cda7f9c4909136a8c5" } +SetTriple: ee526a741e894a81a4bd5bd544e17d09, To entity, Value { r#type: Entity, value: "e6184c8e261d46df9c4359fccde3395c" } +SetTriple: ee526a741e894a81a4bd5bd544e17d09, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ee526a741e894a81a4bd5bd544e17d09, Index, Value { r#type: Text, value: "a0" } +SetTriple: ee526a741e894a81a4bd5bd544e17d09, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 78a8d542e4d649169c56a78b4fa9472f, From entity, Value { r#type: Entity, value: "859d0658448941ce8ebf28a7e1b4481f" } +SetTriple: 78a8d542e4d649169c56a78b4fa9472f, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 78a8d542e4d649169c56a78b4fa9472f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 78a8d542e4d649169c56a78b4fa9472f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 78a8d542e4d649169c56a78b4fa9472f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 166c84fca6004061aa3629212a81dd59, From entity, Value { r#type: Entity, value: "682fbeff41e242cda7f9c4909136a8c5" } +SetTriple: 166c84fca6004061aa3629212a81dd59, To entity, Value { r#type: Entity, value: "859d0658448941ce8ebf28a7e1b4481f" } +SetTriple: 166c84fca6004061aa3629212a81dd59, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 166c84fca6004061aa3629212a81dd59, Index, Value { r#type: Text, value: "a0" } +SetTriple: 94f8f2d390f04620a2600c3c534e3ac8, From entity, Value { r#type: Entity, value: "859d0658448941ce8ebf28a7e1b4481f" } +SetTriple: 94f8f2d390f04620a2600c3c534e3ac8, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 94f8f2d390f04620a2600c3c534e3ac8, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 94f8f2d390f04620a2600c3c534e3ac8, Index, Value { r#type: Text, value: "a0" } +SetTriple: 94f8f2d390f04620a2600c3c534e3ac8, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: b5353fa5e07a476a85aa95fbf8e091ec, From entity, Value { r#type: Entity, value: "fb193443f45741e08990fecc363f07e0" } +SetTriple: b5353fa5e07a476a85aa95fbf8e091ec, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: b5353fa5e07a476a85aa95fbf8e091ec, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b5353fa5e07a476a85aa95fbf8e091ec, Index, Value { r#type: Text, value: "a0" } +SetTriple: b5353fa5e07a476a85aa95fbf8e091ec, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 71a4e4ddaf98466a93aa1fd9e152d5f7, From entity, Value { r#type: Entity, value: "fb193443f45741e08990fecc363f07e0" } +SetTriple: 71a4e4ddaf98466a93aa1fd9e152d5f7, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: 71a4e4ddaf98466a93aa1fd9e152d5f7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 71a4e4ddaf98466a93aa1fd9e152d5f7, Index, Value { r#type: Text, value: "a0" } +SetTriple: 71a4e4ddaf98466a93aa1fd9e152d5f7, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: c167b83a47f743fd842a4391847bd168, From entity, Value { r#type: Entity, value: "fb193443f45741e08990fecc363f07e0" } +SetTriple: c167b83a47f743fd842a4391847bd168, To entity, Value { r#type: Entity, value: "f724b80589e1424bb149acff9ecfd0f7" } +SetTriple: c167b83a47f743fd842a4391847bd168, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c167b83a47f743fd842a4391847bd168, Index, Value { r#type: Text, value: "a0" } +SetTriple: c167b83a47f743fd842a4391847bd168, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: ddbb34d027a14b01abe7dba3ab7c3614, From entity, Value { r#type: Entity, value: "fb193443f45741e08990fecc363f07e0" } +SetTriple: ddbb34d027a14b01abe7dba3ab7c3614, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: ddbb34d027a14b01abe7dba3ab7c3614, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ddbb34d027a14b01abe7dba3ab7c3614, Index, Value { r#type: Text, value: "a0" } +SetTriple: ddbb34d027a14b01abe7dba3ab7c3614, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 54408045fda74855becad28005c7c542, From entity, Value { r#type: Entity, value: "fb193443f45741e08990fecc363f07e0" } +SetTriple: 54408045fda74855becad28005c7c542, To entity, Value { r#type: Entity, value: "71a5569e688e4e0f8eb0d8c361211e7c" } +SetTriple: 54408045fda74855becad28005c7c542, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 54408045fda74855becad28005c7c542, Index, Value { r#type: Text, value: "a0" } +SetTriple: 54408045fda74855becad28005c7c542, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: b27c0239192a48c2ae30916a667b2f2e, From entity, Value { r#type: Entity, value: "276c48daef77463a887fdb21d82c4542" } +SetTriple: b27c0239192a48c2ae30916a667b2f2e, To entity, Value { r#type: Entity, value: "e6184c8e261d46df9c4359fccde3395c" } +SetTriple: b27c0239192a48c2ae30916a667b2f2e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b27c0239192a48c2ae30916a667b2f2e, Index, Value { r#type: Text, value: "a0" } +SetTriple: b27c0239192a48c2ae30916a667b2f2e, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 63366af9e37a4035805889001f4d06fb, To entity, Value { r#type: Entity, value: "3f395c71321e4a90bb7cdf63a2949fad" } +SetTriple: dff7e060b3994f718f879ab832474e92, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: dff7e060b3994f718f879ab832474e92, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: dff7e060b3994f718f879ab832474e92, From entity, Value { r#type: Entity, value: "9dd1bae768f645bcb1becc866fd30dca" } +SetTriple: b55f1e22916740a7b34f205df8b24363, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: b55f1e22916740a7b34f205df8b24363, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b55f1e22916740a7b34f205df8b24363, Index, Value { r#type: Text, value: "a0" } +SetTriple: b55f1e22916740a7b34f205df8b24363, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: ae783c05bd56402385e340e952097b92, From entity, Value { r#type: Entity, value: "73c0331a982a43169fd727d932c4bd1f" } +SetTriple: ae783c05bd56402385e340e952097b92, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: bcb2a31668004a218d0d18a81f60489a, From entity, Value { r#type: Entity, value: "0822d751b6284d3aa974df8c9d5c1cd1" } +SetTriple: bcb2a31668004a218d0d18a81f60489a, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: ae783c05bd56402385e340e952097b92, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: bcb2a31668004a218d0d18a81f60489a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bcb2a31668004a218d0d18a81f60489a, Index, Value { r#type: Text, value: "a0" } +SetTriple: bcb2a31668004a218d0d18a81f60489a, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 7282a9809b17478abc7807320ce1ac18, From entity, Value { r#type: Entity, value: "3f395c71321e4a90bb7cdf63a2949fad" } +SetTriple: 7282a9809b17478abc7807320ce1ac18, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 7282a9809b17478abc7807320ce1ac18, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ae783c05bd56402385e340e952097b92, Index, Value { r#type: Text, value: "a0" } +SetTriple: b55f1e22916740a7b34f205df8b24363, From entity, Value { r#type: Entity, value: "3f395c71321e4a90bb7cdf63a2949fad" } +SetTriple: 63366af9e37a4035805889001f4d06fb, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 63366af9e37a4035805889001f4d06fb, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7282a9809b17478abc7807320ce1ac18, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7282a9809b17478abc7807320ce1ac18, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 63366af9e37a4035805889001f4d06fb, From entity, Value { r#type: Entity, value: "0822d751b6284d3aa974df8c9d5c1cd1" } +SetTriple: dff7e060b3994f718f879ab832474e92, Index, Value { r#type: Text, value: "a0" } +SetTriple: 63366af9e37a4035805889001f4d06fb, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ae783c05bd56402385e340e952097b92, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0822d751b6284d3aa974df8c9d5c1cd1, Name, Value { r#type: Text, value: "Training provider" } +SetTriple: 9dd1bae768f645bcb1becc866fd30dca, Name, Value { r#type: Text, value: "Provided by" } +SetTriple: 73c0331a982a43169fd727d932c4bd1f, Name, Value { r#type: Text, value: "Course" } +SetTriple: e9f9853d366e480c8c3a09c4d36670af, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: e9f9853d366e480c8c3a09c4d36670af, Index, Value { r#type: Text, value: "a0" } +SetTriple: e9f9853d366e480c8c3a09c4d36670af, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e9f9853d366e480c8c3a09c4d36670af, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: e9f9853d366e480c8c3a09c4d36670af, From entity, Value { r#type: Entity, value: "0822d751b6284d3aa974df8c9d5c1cd1" } +SetTriple: ef264c9de9244ec2a213b827430b62db, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: ef264c9de9244ec2a213b827430b62db, Index, Value { r#type: Text, value: "a0" } +SetTriple: ef264c9de9244ec2a213b827430b62db, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ef264c9de9244ec2a213b827430b62db, To entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: ef264c9de9244ec2a213b827430b62db, From entity, Value { r#type: Entity, value: "0822d751b6284d3aa974df8c9d5c1cd1" } +SetTriple: 9eaf3dc2531d49849921c30f75f857cd, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 3f395c71321e4a90bb7cdf63a2949fad, Name, Value { r#type: Text, value: "Courses offered" } +SetTriple: 9eaf3dc2531d49849921c30f75f857cd, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9eaf3dc2531d49849921c30f75f857cd, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9eaf3dc2531d49849921c30f75f857cd, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 9eaf3dc2531d49849921c30f75f857cd, From entity, Value { r#type: Entity, value: "73c0331a982a43169fd727d932c4bd1f" } +SetTriple: 930432888700452281b7a7fe8a2b8ae0, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 930432888700452281b7a7fe8a2b8ae0, Index, Value { r#type: Text, value: "a0" } +SetTriple: 930432888700452281b7a7fe8a2b8ae0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 930432888700452281b7a7fe8a2b8ae0, To entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: 930432888700452281b7a7fe8a2b8ae0, From entity, Value { r#type: Entity, value: "73c0331a982a43169fd727d932c4bd1f" } +SetTriple: ae683562bd7241e797df605edf1657d5, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: ae683562bd7241e797df605edf1657d5, Index, Value { r#type: Text, value: "a0" } +SetTriple: ae683562bd7241e797df605edf1657d5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ae683562bd7241e797df605edf1657d5, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: ae683562bd7241e797df605edf1657d5, From entity, Value { r#type: Entity, value: "9dd1bae768f645bcb1becc866fd30dca" } +SetTriple: 8fd8b10c23754c14b4d2ccc8d2d5c3bd, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 8fd8b10c23754c14b4d2ccc8d2d5c3bd, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8fd8b10c23754c14b4d2ccc8d2d5c3bd, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8fd8b10c23754c14b4d2ccc8d2d5c3bd, To entity, Value { r#type: Entity, value: "9dd1bae768f645bcb1becc866fd30dca" } +SetTriple: 8fd8b10c23754c14b4d2ccc8d2d5c3bd, From entity, Value { r#type: Entity, value: "73c0331a982a43169fd727d932c4bd1f" } +SetTriple: dff7e060b3994f718f879ab832474e92, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: e15ff30392f9478ab221747aaae95a2b, Index, Value { r#type: Text, value: "a0" } +SetTriple: e15ff30392f9478ab221747aaae95a2b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e15ff30392f9478ab221747aaae95a2b, To entity, Value { r#type: Entity, value: "7fa816a3cb704534934888449869dc33" } +SetTriple: e15ff30392f9478ab221747aaae95a2b, From entity, Value { r#type: Entity, value: "ac0dc3bf85f7469dbd4b8692bc1bdf99" } +SetTriple: dba2af2e1e9d49c28997dd883110274f, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: dba2af2e1e9d49c28997dd883110274f, Index, Value { r#type: Text, value: "a0" } +SetTriple: dba2af2e1e9d49c28997dd883110274f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: Transcript, Description, Value { r#type: Text, value: "" } +SetTriple: dba2af2e1e9d49c28997dd883110274f, To entity, Value { r#type: Entity, value: "feb48f93d5e94ad58567ea8353998e52" } +SetTriple: dba2af2e1e9d49c28997dd883110274f, From entity, Value { r#type: Entity, value: "ac0dc3bf85f7469dbd4b8692bc1bdf99" } +SetTriple: cb8d534040a046a0b5ed8ab1fb0f78dc, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: cb8d534040a046a0b5ed8ab1fb0f78dc, Index, Value { r#type: Text, value: "a0" } +SetTriple: cb8d534040a046a0b5ed8ab1fb0f78dc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: cb8d534040a046a0b5ed8ab1fb0f78dc, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: cb8d534040a046a0b5ed8ab1fb0f78dc, From entity, Value { r#type: Entity, value: "ac0dc3bf85f7469dbd4b8692bc1bdf99" } +SetTriple: dc528841ad314d2387afc125a8901b14, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: dc528841ad314d2387afc125a8901b14, Index, Value { r#type: Text, value: "a0" } +SetTriple: dc528841ad314d2387afc125a8901b14, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: dc528841ad314d2387afc125a8901b14, To entity, Value { r#type: Entity, value: "864c9685fd454528a7caedd51316c09c" } +SetTriple: dc528841ad314d2387afc125a8901b14, From entity, Value { r#type: Entity, value: "ac0dc3bf85f7469dbd4b8692bc1bdf99" } +SetTriple: 8936df27a9974b689aba80d83d7323ef, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 8936df27a9974b689aba80d83d7323ef, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8936df27a9974b689aba80d83d7323ef, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8936df27a9974b689aba80d83d7323ef, To entity, Value { r#type: Entity, value: "e6184c8e261d46df9c4359fccde3395c" } +SetTriple: 8936df27a9974b689aba80d83d7323ef, From entity, Value { r#type: Entity, value: "ac0dc3bf85f7469dbd4b8692bc1bdf99" } +SetTriple: 26bb73bc267947538bb3d7e20805f6d0, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 26bb73bc267947538bb3d7e20805f6d0, Index, Value { r#type: Text, value: "a0" } +SetTriple: 26bb73bc267947538bb3d7e20805f6d0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 26bb73bc267947538bb3d7e20805f6d0, To entity, Value { r#type: Entity, value: "0db47aca1ccf4c9fbeb689519ebe9eed" } +SetTriple: 26bb73bc267947538bb3d7e20805f6d0, From entity, Value { r#type: Entity, value: "ac0dc3bf85f7469dbd4b8692bc1bdf99" } +SetTriple: 59f6bc627b5c4986b722c2f21f222c8c, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 59f6bc627b5c4986b722c2f21f222c8c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 59f6bc627b5c4986b722c2f21f222c8c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 59f6bc627b5c4986b722c2f21f222c8c, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 59f6bc627b5c4986b722c2f21f222c8c, From entity, Value { r#type: Entity, value: "ac0dc3bf85f7469dbd4b8692bc1bdf99" } +SetTriple: 63e6f024c92842719a82f12bb4418424, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 63e6f024c92842719a82f12bb4418424, Index, Value { r#type: Text, value: "a0" } +SetTriple: 63e6f024c92842719a82f12bb4418424, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 63e6f024c92842719a82f12bb4418424, To entity, Value { r#type: Entity, value: "55a7c6143622426a84568a493eed94b9" } +SetTriple: 63e6f024c92842719a82f12bb4418424, From entity, Value { r#type: Entity, value: "ac0dc3bf85f7469dbd4b8692bc1bdf99" } +SetTriple: e15ff30392f9478ab221747aaae95a2b, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: f9f7c00db2444507b7b31794eaf28102, Index, Value { r#type: Text, value: "a0" } +SetTriple: 836811bc30254efca41111e4284ab747, Name, Value { r#type: Text, value: "News events" } +SetTriple: News events, Description, Value { r#type: Text, value: "Occurrences of significant interest that are reported by the media, encompassing political, social, economic, or natural incidents that impact society and warrant public attention and discussion." } +SetTriple: 80296c0d19934288a789c9f453b70c1b, Name, Value { r#type: Text, value: "Transcripts" } +SetTriple: Transcripts, Description, Value { r#type: Text, value: "Written or electronic records of conversations, including interviews, speeches, or meetings, documenting the exact words spoken by participants for reference, analysis, or dissemination purposes." } +SetTriple: d72795bd55134fa6a383f71bd1745917, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d72795bd55134fa6a383f71bd1745917, To entity, Value { r#type: Entity, value: "836811bc30254efca41111e4284ab747" } +SetTriple: d72795bd55134fa6a383f71bd1745917, From entity, Value { r#type: Entity, value: "9438ee038c1145af9bf66b7ba8d4c1f3" } +SetTriple: aeff2654b83b43ccb5f302584792bfdc, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: aeff2654b83b43ccb5f302584792bfdc, Index, Value { r#type: Text, value: "a0" } +SetTriple: aeff2654b83b43ccb5f302584792bfdc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: aeff2654b83b43ccb5f302584792bfdc, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: aeff2654b83b43ccb5f302584792bfdc, From entity, Value { r#type: Entity, value: "836811bc30254efca41111e4284ab747" } +SetTriple: f27f64c6ddfb4e3991c93750cfb2935e, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: f27f64c6ddfb4e3991c93750cfb2935e, Index, Value { r#type: Text, value: "a0" } +SetTriple: f27f64c6ddfb4e3991c93750cfb2935e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f27f64c6ddfb4e3991c93750cfb2935e, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: f27f64c6ddfb4e3991c93750cfb2935e, From entity, Value { r#type: Entity, value: "836811bc30254efca41111e4284ab747" } +SetTriple: f9f7c00db2444507b7b31794eaf28102, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: Transcript, Description, Value { r#type: Text, value: "Detailed written or digital record of spoken words, such as those from interviews, speeches, or meetings, providing an exact account of the dialogue for purposes of reference, analysis, or accessibility." } +SetTriple: f9f7c00db2444507b7b31794eaf28102, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f9f7c00db2444507b7b31794eaf28102, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: f9f7c00db2444507b7b31794eaf28102, From entity, Value { r#type: Entity, value: "80296c0d19934288a789c9f453b70c1b" } +SetTriple: 7a7d9108095c48dab82580959b459620, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 7a7d9108095c48dab82580959b459620, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7a7d9108095c48dab82580959b459620, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7a7d9108095c48dab82580959b459620, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 7a7d9108095c48dab82580959b459620, From entity, Value { r#type: Entity, value: "80296c0d19934288a789c9f453b70c1b" } +SetTriple: 79449f5f6c284d1cbc25196a3d938eea, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 79449f5f6c284d1cbc25196a3d938eea, Index, Value { r#type: Text, value: "a0" } +SetTriple: 79449f5f6c284d1cbc25196a3d938eea, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 79449f5f6c284d1cbc25196a3d938eea, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: 79449f5f6c284d1cbc25196a3d938eea, From entity, Value { r#type: Entity, value: "ac0dc3bf85f7469dbd4b8692bc1bdf99" } +SetTriple: d72795bd55134fa6a383f71bd1745917, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: d72795bd55134fa6a383f71bd1745917, Index, Value { r#type: Text, value: "a0" } +SetTriple: 42657eda2c5b40bcac4bbfb4e0de6a05, From entity, Value { r#type: Entity, value: "ac0dc3bf85f7469dbd4b8692bc1bdf99" } +SetTriple: 42657eda2c5b40bcac4bbfb4e0de6a05, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 42657eda2c5b40bcac4bbfb4e0de6a05, Index, Value { r#type: Text, value: "a0" } +SetTriple: 42657eda2c5b40bcac4bbfb4e0de6a05, To entity, Value { r#type: Entity, value: "5259e517814d4772bfa21ce57ca5c5b5" } +SetTriple: 42657eda2c5b40bcac4bbfb4e0de6a05, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 9510950972654d67800e56baac1ade3e, From entity, Value { r#type: Entity, value: "737fec6ced9f4bc3b758dc5a38797c97" } +SetTriple: 9510950972654d67800e56baac1ade3e, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 9510950972654d67800e56baac1ade3e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9510950972654d67800e56baac1ade3e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9510950972654d67800e56baac1ade3e, To entity, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: dcf85661e2a54b8aa44b851225259793, From entity, Value { r#type: Entity, value: "2cc9d24459ea427f9257f1362a5fa952" } +SetTriple: 2cc9d24459ea427f9257f1362a5fa952, Name, Value { r#type: Text, value: "Finance Overview" } +SetTriple: dcf85661e2a54b8aa44b851225259793, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: dcf85661e2a54b8aa44b851225259793, Index, Value { r#type: Text, value: "a0" } +SetTriple: dcf85661e2a54b8aa44b851225259793, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: dcf85661e2a54b8aa44b851225259793, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: a8c7bc069c454cdda1081b3e3e894153, Index, Value { r#type: Text, value: "a0" } +SetTriple: a8c7bc069c454cdda1081b3e3e894153, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a8c7bc069c454cdda1081b3e3e894153, To entity, Value { r#type: Entity, value: "feb48f93d5e94ad58567ea8353998e52" } +SetTriple: a8c7bc069c454cdda1081b3e3e894153, From entity, Value { r#type: Entity, value: "724d29589d5443c8af52e3feb24cdf88" } +SetTriple: da38904a427e4116a8c52b799cac1824, Index, Value { r#type: Text, value: "a0" } +SetTriple: 18298aa02abb490dab549f6ea231fb9f, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 18298aa02abb490dab549f6ea231fb9f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 18298aa02abb490dab549f6ea231fb9f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 18298aa02abb490dab549f6ea231fb9f, To entity, Value { r#type: Entity, value: "dfc221d98cce4f0b9353e437a98387e3" } +SetTriple: 18298aa02abb490dab549f6ea231fb9f, From entity, Value { r#type: Entity, value: "293adea280c34fb98f440b146bc3ec48" } +SetTriple: da38904a427e4116a8c52b799cac1824, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: da38904a427e4116a8c52b799cac1824, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: da38904a427e4116a8c52b799cac1824, To entity, Value { r#type: Entity, value: "293adea280c34fb98f440b146bc3ec48" } +SetTriple: da38904a427e4116a8c52b799cac1824, From entity, Value { r#type: Entity, value: "724d29589d5443c8af52e3feb24cdf88" } +SetTriple: 5c9e4c3896e7450b84cdca010526fad8, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 5c9e4c3896e7450b84cdca010526fad8, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5c9e4c3896e7450b84cdca010526fad8, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5c9e4c3896e7450b84cdca010526fad8, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 5c9e4c3896e7450b84cdca010526fad8, From entity, Value { r#type: Entity, value: "293adea280c34fb98f440b146bc3ec48" } +SetTriple: a8c7bc069c454cdda1081b3e3e894153, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 293adea280c34fb98f440b146bc3ec48, Description, Value { r#type: Text, value: "URL pointing to a saved version of a webpage allows users to view content as it appeared at a certain point in time, even if the original page has since been altered, relocated, or removed. This feature is useful for accessing historical data or retrieving information from websites that are no longer available in their original form." } +SetTriple: 293adea280c34fb98f440b146bc3ec48, Name, Value { r#type: Text, value: "Web archive URL" } +SetTriple: Social media platforms, Name, Value { r#type: Text, value: "Online publication platforms" } +SetTriple: Social media platform, Description, Value { r#type: Text, value: "Digital space that facilitates the creation, sharing, and management of content, services, or products, enabling interaction between users and providers across the internet." } +SetTriple: Social media platform, Name, Value { r#type: Text, value: "Online platform" } +SetTriple: Online publication platforms, Description, Value { r#type: Text, value: "Digital spaces where users and content creators can share and distribute various forms of media, including articles, blogs, and social media posts, across the internet." } +SetTriple: 591b846ab28c4129967b2d63f263f68f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 591b846ab28c4129967b2d63f263f68f, From entity, Value { r#type: Entity, value: "d5b7cf8fb6904af893b29ad1d1822534" } +SetTriple: 5bfb2da35a7a4c1a8bed67f5b82db03f, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 5bfb2da35a7a4c1a8bed67f5b82db03f, From entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 5bfb2da35a7a4c1a8bed67f5b82db03f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5bfb2da35a7a4c1a8bed67f5b82db03f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 591b846ab28c4129967b2d63f263f68f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 591b846ab28c4129967b2d63f263f68f, To entity, Value { r#type: Entity, value: "" } +SetTriple: 5bfb2da35a7a4c1a8bed67f5b82db03f, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 591b846ab28c4129967b2d63f263f68f, Relation type, Value { r#type: Entity, value: "388ad59b1cc7413ca0bb34a4de48c758" } +SetTriple: b68c6b725e704e8b96a07eeb4dd83561, Relation type, Value { r#type: Entity, value: "388ad59b1cc7413ca0bb34a4de48c758" } +SetTriple: b68c6b725e704e8b96a07eeb4dd83561, From entity, Value { r#type: Entity, value: "d5b7cf8fb6904af893b29ad1d1822534" } +SetTriple: b68c6b725e704e8b96a07eeb4dd83561, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: b68c6b725e704e8b96a07eeb4dd83561, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b68c6b725e704e8b96a07eeb4dd83561, Index, Value { r#type: Text, value: "a0" } +SetTriple: bb53d62e0cbc4c0ab10e9c140d92b987, Relation type, Value { r#type: Entity, value: "388ad59b1cc7413ca0bb34a4de48c758" } +SetTriple: bb53d62e0cbc4c0ab10e9c140d92b987, Index, Value { r#type: Text, value: "a0" } +SetTriple: bb53d62e0cbc4c0ab10e9c140d92b987, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bb53d62e0cbc4c0ab10e9c140d92b987, To entity, Value { r#type: Entity, value: "" } +SetTriple: bb53d62e0cbc4c0ab10e9c140d92b987, From entity, Value { r#type: Entity, value: "d5b7cf8fb6904af893b29ad1d1822534" } +SetTriple: a90bbf25b519454e9084480b6085b6ac, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a90bbf25b519454e9084480b6085b6ac, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: a90bbf25b519454e9084480b6085b6ac, From entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: a90bbf25b519454e9084480b6085b6ac, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: a90bbf25b519454e9084480b6085b6ac, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7090e7b1e4f0441cbfc26dee592fb351, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7090e7b1e4f0441cbfc26dee592fb351, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 7090e7b1e4f0441cbfc26dee592fb351, From entity, Value { r#type: Entity, value: "d5b7cf8fb6904af893b29ad1d1822534" } +SetTriple: 3e63c0f96a124dd188a4b4c79b5875b2, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 3e63c0f96a124dd188a4b4c79b5875b2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3e63c0f96a124dd188a4b4c79b5875b2, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3e63c0f96a124dd188a4b4c79b5875b2, To entity, Value { r#type: Entity, value: "3d31f766b65148afa357271343a773de" } +SetTriple: 3e63c0f96a124dd188a4b4c79b5875b2, From entity, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 7090e7b1e4f0441cbfc26dee592fb351, Relation type, Value { r#type: Entity, value: "388ad59b1cc7413ca0bb34a4de48c758" } +SetTriple: 7090e7b1e4f0441cbfc26dee592fb351, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1584a3c8553245779fa16dca2b75a815, From entity, Value { r#type: Entity, value: "038473bc682448c4a6e2afc2184a4cba" } +SetTriple: 1584a3c8553245779fa16dca2b75a815, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1584a3c8553245779fa16dca2b75a815, Index, Value { r#type: Text, value: "a0" } +SetTriple: 34e77dbc2f194d158ba55027244e972e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 34e77dbc2f194d158ba55027244e972e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 34e77dbc2f194d158ba55027244e972e, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 991a4be5f64d45a589696824b8360a9c, From entity, Value { r#type: Entity, value: "c64f9303c4d74a3dbc1e343fe4be86b5" } +SetTriple: 991a4be5f64d45a589696824b8360a9c, To entity, Value { r#type: Entity, value: "89e4ec2ac3ff46048747b7da1247b8fb" } +SetTriple: 991a4be5f64d45a589696824b8360a9c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 991a4be5f64d45a589696824b8360a9c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 991a4be5f64d45a589696824b8360a9c, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 06396bc5749147ccb0b5b7d23e78d659, From entity, Value { r#type: Entity, value: "c7747db35a3049e3863fdadebddd3e35" } +SetTriple: 06396bc5749147ccb0b5b7d23e78d659, To entity, Value { r#type: Entity, value: "e1832055d98243a2bb97e5b4886f9b1c" } +SetTriple: 06396bc5749147ccb0b5b7d23e78d659, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 06396bc5749147ccb0b5b7d23e78d659, Index, Value { r#type: Text, value: "a0" } +SetTriple: 06396bc5749147ccb0b5b7d23e78d659, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 2b6d8fa0d6234cbda2b39f8466fc23ce, From entity, Value { r#type: Entity, value: "c8ec5342083f4c71bb72db66c610ee19" } +SetTriple: 2b6d8fa0d6234cbda2b39f8466fc23ce, To entity, Value { r#type: Entity, value: "61b2cb6bd0194f6895c7f8c416b2faec" } +SetTriple: 2b6d8fa0d6234cbda2b39f8466fc23ce, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2b6d8fa0d6234cbda2b39f8466fc23ce, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2b6d8fa0d6234cbda2b39f8466fc23ce, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: bed04e05fe764c8cb36544a43731f2ae, From entity, Value { r#type: Entity, value: "cb9d261d456b4eaf87e51e9faa441867" } +SetTriple: bed04e05fe764c8cb36544a43731f2ae, To entity, Value { r#type: Entity, value: "0ed7c98908154183b34cd156a4494bfa" } +SetTriple: bed04e05fe764c8cb36544a43731f2ae, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bed04e05fe764c8cb36544a43731f2ae, Index, Value { r#type: Text, value: "a0" } +SetTriple: bed04e05fe764c8cb36544a43731f2ae, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: df33cec7cd94407188793ad018c2fc52, From entity, Value { r#type: Entity, value: "cc83fb08421f4580bdf28831e6425583" } +SetTriple: df33cec7cd94407188793ad018c2fc52, To entity, Value { r#type: Entity, value: "9fd8d594765e41d5822a575141722840" } +SetTriple: df33cec7cd94407188793ad018c2fc52, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: df33cec7cd94407188793ad018c2fc52, Index, Value { r#type: Text, value: "a0" } +SetTriple: df33cec7cd94407188793ad018c2fc52, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 01021f7444cb406faf70c92e8eea4ab7, From entity, Value { r#type: Entity, value: "ce59ccc12ac54ace8f8209322434733d" } +SetTriple: 01021f7444cb406faf70c92e8eea4ab7, To entity, Value { r#type: Entity, value: "0ed7c98908154183b34cd156a4494bfa" } +SetTriple: 01021f7444cb406faf70c92e8eea4ab7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 01021f7444cb406faf70c92e8eea4ab7, Index, Value { r#type: Text, value: "a0" } +SetTriple: 01021f7444cb406faf70c92e8eea4ab7, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 8430dbec01104d55a8766e1d9752d4f9, From entity, Value { r#type: Entity, value: "dab75eacc45b48ee84e0429e17e9d876" } +SetTriple: 8430dbec01104d55a8766e1d9752d4f9, To entity, Value { r#type: Entity, value: "9fd8d594765e41d5822a575141722840" } +SetTriple: 8430dbec01104d55a8766e1d9752d4f9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8430dbec01104d55a8766e1d9752d4f9, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8430dbec01104d55a8766e1d9752d4f9, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 88c1095929bf496388a9dc4e73a520c1, From entity, Value { r#type: Entity, value: "eab5d59073844c398775a613eca3587e" } +SetTriple: 88c1095929bf496388a9dc4e73a520c1, To entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: 88c1095929bf496388a9dc4e73a520c1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 88c1095929bf496388a9dc4e73a520c1, Index, Value { r#type: Text, value: "a0" } +SetTriple: 88c1095929bf496388a9dc4e73a520c1, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 644f6520c2f6492295415eac661435e5, From entity, Value { r#type: Entity, value: "f01c6d195683448984f75cc23bcf7fac" } +SetTriple: 644f6520c2f6492295415eac661435e5, To entity, Value { r#type: Entity, value: "9fd8d594765e41d5822a575141722840" } +SetTriple: 644f6520c2f6492295415eac661435e5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 644f6520c2f6492295415eac661435e5, Index, Value { r#type: Text, value: "a0" } +SetTriple: 644f6520c2f6492295415eac661435e5, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: d69825afd9eb4e12a6ad56abdd31169d, From entity, Value { r#type: Entity, value: "f0ff2d4071ad4fa697e65d7fa5d0e226" } +SetTriple: d69825afd9eb4e12a6ad56abdd31169d, To entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: d69825afd9eb4e12a6ad56abdd31169d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d69825afd9eb4e12a6ad56abdd31169d, Index, Value { r#type: Text, value: "a0" } +SetTriple: d69825afd9eb4e12a6ad56abdd31169d, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: afc32b574dd442b3a6d25b0c2a7cd349, From entity, Value { r#type: Entity, value: "f107a6f221e9475b84d752dd7dcae912" } +SetTriple: afc32b574dd442b3a6d25b0c2a7cd349, To entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: afc32b574dd442b3a6d25b0c2a7cd349, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: afc32b574dd442b3a6d25b0c2a7cd349, Index, Value { r#type: Text, value: "a0" } +SetTriple: afc32b574dd442b3a6d25b0c2a7cd349, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: a435019227cb4593a8efc5730b2514d9, From entity, Value { r#type: Entity, value: "f1f53d5384f244579bd691b4aea7a490" } +SetTriple: a435019227cb4593a8efc5730b2514d9, To entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: a435019227cb4593a8efc5730b2514d9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a435019227cb4593a8efc5730b2514d9, Index, Value { r#type: Text, value: "a0" } +SetTriple: a435019227cb4593a8efc5730b2514d9, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: a3a659d28fc54b1eb7f195dcb10db116, From entity, Value { r#type: Entity, value: "f2b51833ffbe453d86b021563de7c946" } +SetTriple: a3a659d28fc54b1eb7f195dcb10db116, To entity, Value { r#type: Entity, value: "9fd8d594765e41d5822a575141722840" } +SetTriple: a3a659d28fc54b1eb7f195dcb10db116, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a3a659d28fc54b1eb7f195dcb10db116, Index, Value { r#type: Text, value: "a0" } +SetTriple: a3a659d28fc54b1eb7f195dcb10db116, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: b46d54b62ae94281a02a19b953fccb05, From entity, Value { r#type: Entity, value: "f496c0697cf946bbbc4ad4040bca433b" } +SetTriple: b46d54b62ae94281a02a19b953fccb05, To entity, Value { r#type: Entity, value: "61b2cb6bd0194f6895c7f8c416b2faec" } +SetTriple: b46d54b62ae94281a02a19b953fccb05, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b46d54b62ae94281a02a19b953fccb05, Index, Value { r#type: Text, value: "a0" } +SetTriple: b46d54b62ae94281a02a19b953fccb05, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 886ad27fdac74d62a9bdb2f4ce039c82, From entity, Value { r#type: Entity, value: "f5df623b504e48048d0f3df6adb10610" } +SetTriple: 886ad27fdac74d62a9bdb2f4ce039c82, To entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: 886ad27fdac74d62a9bdb2f4ce039c82, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 886ad27fdac74d62a9bdb2f4ce039c82, Index, Value { r#type: Text, value: "a0" } +SetTriple: 886ad27fdac74d62a9bdb2f4ce039c82, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: ba9a89ccc6a54a1fa9dbd654c0dd7637, From entity, Value { r#type: Entity, value: "f71912463dca4e778a79d9cdc9804127" } +SetTriple: ba9a89ccc6a54a1fa9dbd654c0dd7637, To entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: ba9a89ccc6a54a1fa9dbd654c0dd7637, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ba9a89ccc6a54a1fa9dbd654c0dd7637, Index, Value { r#type: Text, value: "a0" } +SetTriple: ba9a89ccc6a54a1fa9dbd654c0dd7637, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 2e5a90656ee04befb03e442a5aea44a0, From entity, Value { r#type: Entity, value: "f7423062fb7549288b63156af138258b" } +SetTriple: 2e5a90656ee04befb03e442a5aea44a0, To entity, Value { r#type: Entity, value: "0ed7c98908154183b34cd156a4494bfa" } +SetTriple: 2e5a90656ee04befb03e442a5aea44a0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2e5a90656ee04befb03e442a5aea44a0, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2e5a90656ee04befb03e442a5aea44a0, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 0d02005d5e884d67b08dae6cf058fc78, From entity, Value { r#type: Entity, value: "fa8e8e54f7424c00b73c05adee2b4545" } +SetTriple: 0d02005d5e884d67b08dae6cf058fc78, To entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: 0d02005d5e884d67b08dae6cf058fc78, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0d02005d5e884d67b08dae6cf058fc78, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0d02005d5e884d67b08dae6cf058fc78, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: b5b0b1f32635490f9f9014f75abda3cc, From entity, Value { r#type: Entity, value: "fb193443f45741e08990fecc363f07e0" } +SetTriple: b5b0b1f32635490f9f9014f75abda3cc, To entity, Value { r#type: Entity, value: "9fd8d594765e41d5822a575141722840" } +SetTriple: b5b0b1f32635490f9f9014f75abda3cc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b5b0b1f32635490f9f9014f75abda3cc, Index, Value { r#type: Text, value: "a0" } +SetTriple: b5b0b1f32635490f9f9014f75abda3cc, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 3621ebfc27b542d7935362faf5027329, From entity, Value { r#type: Entity, value: "fcf7819a3894481a801df0600725cddb" } +SetTriple: 3621ebfc27b542d7935362faf5027329, To entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: 3621ebfc27b542d7935362faf5027329, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3621ebfc27b542d7935362faf5027329, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3621ebfc27b542d7935362faf5027329, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 1b96e3462da1492a8a23aebdcf0c94be, From entity, Value { r#type: Entity, value: "fe27d6d8654c4c80a39ee65bd6826e70" } +SetTriple: 1b96e3462da1492a8a23aebdcf0c94be, To entity, Value { r#type: Entity, value: "0ed7c98908154183b34cd156a4494bfa" } +SetTriple: 1b96e3462da1492a8a23aebdcf0c94be, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1b96e3462da1492a8a23aebdcf0c94be, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1b96e3462da1492a8a23aebdcf0c94be, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 66648d1bd13a42a3930a59cdb5fc9838, From entity, Value { r#type: Entity, value: "feb63aba3b23478eb8a6832bdf25f87a" } +SetTriple: 66648d1bd13a42a3930a59cdb5fc9838, To entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: 66648d1bd13a42a3930a59cdb5fc9838, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 66648d1bd13a42a3930a59cdb5fc9838, Index, Value { r#type: Text, value: "a0" } +SetTriple: 66648d1bd13a42a3930a59cdb5fc9838, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 965370cd1ca7451a9251eb8137b8a90b, From entity, Value { r#type: Entity, value: "017c5749ea46465a966904ed17344671" } +SetTriple: 965370cd1ca7451a9251eb8137b8a90b, To entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: 965370cd1ca7451a9251eb8137b8a90b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 965370cd1ca7451a9251eb8137b8a90b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 965370cd1ca7451a9251eb8137b8a90b, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: bbe0346fa83f446ba1605c23269e0547, From entity, Value { r#type: Entity, value: "0a5195dc42a34327a727df4b3392df65" } +SetTriple: bbe0346fa83f446ba1605c23269e0547, To entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: bbe0346fa83f446ba1605c23269e0547, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bbe0346fa83f446ba1605c23269e0547, Index, Value { r#type: Text, value: "a0" } +SetTriple: bbe0346fa83f446ba1605c23269e0547, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 11c395e4c7614bf5a37954a89198900f, From entity, Value { r#type: Entity, value: "48cdb3d78de84bce87d99163ce55c6fe" } +SetTriple: 11c395e4c7614bf5a37954a89198900f, To entity, Value { r#type: Entity, value: "3d31f766b65148afa357271343a773de" } +SetTriple: 11c395e4c7614bf5a37954a89198900f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 11c395e4c7614bf5a37954a89198900f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 11c395e4c7614bf5a37954a89198900f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: c2c0825935fe48a8ab09504d09c4b0d7, From entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: c2c0825935fe48a8ab09504d09c4b0d7, To entity, Value { r#type: Entity, value: "48cdb3d78de84bce87d99163ce55c6fe" } +SetTriple: c2c0825935fe48a8ab09504d09c4b0d7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c2c0825935fe48a8ab09504d09c4b0d7, Index, Value { r#type: Text, value: "a0" } +SetTriple: c2c0825935fe48a8ab09504d09c4b0d7, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 35c15c2da99843d0a69ff02802e9edcc, From entity, Value { r#type: Entity, value: "16b52120dd5f4caa81c2e23a34c10699" } +SetTriple: 35c15c2da99843d0a69ff02802e9edcc, To entity, Value { r#type: Entity, value: "0ed7c98908154183b34cd156a4494bfa" } +SetTriple: 35c15c2da99843d0a69ff02802e9edcc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 35c15c2da99843d0a69ff02802e9edcc, Index, Value { r#type: Text, value: "a0" } +SetTriple: 35c15c2da99843d0a69ff02802e9edcc, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: e9a5b08c165e4bc2be983871e744222a, From entity, Value { r#type: Entity, value: "1a9fc4a00fec4eeaa075eec7ebd0d043" } +SetTriple: e9a5b08c165e4bc2be983871e744222a, To entity, Value { r#type: Entity, value: "48cdb3d78de84bce87d99163ce55c6fe" } +SetTriple: e9a5b08c165e4bc2be983871e744222a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e9a5b08c165e4bc2be983871e744222a, Index, Value { r#type: Text, value: "a0" } +SetTriple: e9a5b08c165e4bc2be983871e744222a, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 40e8842a26c444c88b7237d79614fe78, From entity, Value { r#type: Entity, value: "1d5d0c2adb23466ca0b09abe879df457" } +SetTriple: 40e8842a26c444c88b7237d79614fe78, To entity, Value { r#type: Entity, value: "48cdb3d78de84bce87d99163ce55c6fe" } +SetTriple: 40e8842a26c444c88b7237d79614fe78, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 40e8842a26c444c88b7237d79614fe78, Index, Value { r#type: Text, value: "a0" } +SetTriple: 40e8842a26c444c88b7237d79614fe78, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 9263969968404d718d7adcde8f7e70dc, From entity, Value { r#type: Entity, value: "1e158076b9134724adf38ce65aa04f93" } +SetTriple: 9263969968404d718d7adcde8f7e70dc, To entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: 9263969968404d718d7adcde8f7e70dc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9263969968404d718d7adcde8f7e70dc, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9263969968404d718d7adcde8f7e70dc, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 0aed2cbf0fd6425f8a7d5423ca3b649f, From entity, Value { r#type: Entity, value: "2edf4225793741bab2056ac91ab4aab4" } +SetTriple: 0aed2cbf0fd6425f8a7d5423ca3b649f, To entity, Value { r#type: Entity, value: "0ed7c98908154183b34cd156a4494bfa" } +SetTriple: 0aed2cbf0fd6425f8a7d5423ca3b649f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0aed2cbf0fd6425f8a7d5423ca3b649f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0aed2cbf0fd6425f8a7d5423ca3b649f, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 47da61a21bef4465a2f32b9cd482b8ba, From entity, Value { r#type: Entity, value: "2cc9d24459ea427f9257f1362a5fa952" } +SetTriple: 47da61a21bef4465a2f32b9cd482b8ba, To entity, Value { r#type: Entity, value: "0ed7c98908154183b34cd156a4494bfa" } +SetTriple: 47da61a21bef4465a2f32b9cd482b8ba, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 47da61a21bef4465a2f32b9cd482b8ba, Index, Value { r#type: Text, value: "a0" } +SetTriple: 47da61a21bef4465a2f32b9cd482b8ba, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 466861ccb9a841db9db38e4510e218d2, From entity, Value { r#type: Entity, value: "306598522df542f69ad72921c33ad84b" } +SetTriple: 466861ccb9a841db9db38e4510e218d2, To entity, Value { r#type: Entity, value: "48cdb3d78de84bce87d99163ce55c6fe" } +SetTriple: 466861ccb9a841db9db38e4510e218d2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 466861ccb9a841db9db38e4510e218d2, Index, Value { r#type: Text, value: "a0" } +SetTriple: 466861ccb9a841db9db38e4510e218d2, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 2ff007864ed243b5b59d1bd4794aa628, From entity, Value { r#type: Entity, value: "359846abd634441ab588756cb8439aa2" } +SetTriple: 2ff007864ed243b5b59d1bd4794aa628, To entity, Value { r#type: Entity, value: "0ed7c98908154183b34cd156a4494bfa" } +SetTriple: 2ff007864ed243b5b59d1bd4794aa628, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2ff007864ed243b5b59d1bd4794aa628, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2ff007864ed243b5b59d1bd4794aa628, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: ac57ef80a34a427e90f4135800238e40, From entity, Value { r#type: Entity, value: "43b8c8a544d74577a6804428dfc3e78b" } +SetTriple: ac57ef80a34a427e90f4135800238e40, To entity, Value { r#type: Entity, value: "0ed7c98908154183b34cd156a4494bfa" } +SetTriple: ac57ef80a34a427e90f4135800238e40, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ac57ef80a34a427e90f4135800238e40, Index, Value { r#type: Text, value: "a0" } +SetTriple: ac57ef80a34a427e90f4135800238e40, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: e69d1ae55e2b4d11ab5ad330b7871563, From entity, Value { r#type: Entity, value: "44e726f36e5d4f5d9227e5d819724461" } +SetTriple: e69d1ae55e2b4d11ab5ad330b7871563, To entity, Value { r#type: Entity, value: "0ed7c98908154183b34cd156a4494bfa" } +SetTriple: e69d1ae55e2b4d11ab5ad330b7871563, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e69d1ae55e2b4d11ab5ad330b7871563, Index, Value { r#type: Text, value: "a0" } +SetTriple: e69d1ae55e2b4d11ab5ad330b7871563, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: e20b812e9fbe43faa46e8ad7338d24c5, From entity, Value { r#type: Entity, value: "462f2ff0b2a14e13976dc8c2469b3546" } +SetTriple: e20b812e9fbe43faa46e8ad7338d24c5, To entity, Value { r#type: Entity, value: "0ed7c98908154183b34cd156a4494bfa" } +SetTriple: e20b812e9fbe43faa46e8ad7338d24c5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e20b812e9fbe43faa46e8ad7338d24c5, Index, Value { r#type: Text, value: "a0" } +SetTriple: e20b812e9fbe43faa46e8ad7338d24c5, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 77821d01dcf54f75b4bb4b9e09edea9a, From entity, Value { r#type: Entity, value: "49a283a095974640985e9c7a0d001e5c" } +SetTriple: 77821d01dcf54f75b4bb4b9e09edea9a, To entity, Value { r#type: Entity, value: "0ed7c98908154183b34cd156a4494bfa" } +SetTriple: 77821d01dcf54f75b4bb4b9e09edea9a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 77821d01dcf54f75b4bb4b9e09edea9a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 77821d01dcf54f75b4bb4b9e09edea9a, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 4503a301cf40491ebf3eb56807c50802, From entity, Value { r#type: Entity, value: "4f766605d1504cf1b98edffe0ab10b11" } +SetTriple: 4503a301cf40491ebf3eb56807c50802, To entity, Value { r#type: Entity, value: "f1b9fd886388436e95b551aafaea77e5" } +SetTriple: 4503a301cf40491ebf3eb56807c50802, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4503a301cf40491ebf3eb56807c50802, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4503a301cf40491ebf3eb56807c50802, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: ffcc0e23700640a0abfd043bcc79b824, From entity, Value { r#type: Entity, value: "4f766605d1504cf1b98edffe0ab10b11" } +SetTriple: ffcc0e23700640a0abfd043bcc79b824, To entity, Value { r#type: Entity, value: "3d31f766b65148afa357271343a773de" } +SetTriple: ffcc0e23700640a0abfd043bcc79b824, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ffcc0e23700640a0abfd043bcc79b824, Index, Value { r#type: Text, value: "a0" } +SetTriple: ffcc0e23700640a0abfd043bcc79b824, Relation type, Value { r#type: Entity, value: "577bd9fbb29e4e2bb5f8f48aedbd26ac" } +SetTriple: 1596de6c0fa542e48fef927040fa4a2d, From entity, Value { r#type: Entity, value: "4f766605d1504cf1b98edffe0ab10b11" } +SetTriple: 1596de6c0fa542e48fef927040fa4a2d, To entity, Value { r#type: Entity, value: "88d5925217ae4d9aa36724710129eb47" } +SetTriple: 1596de6c0fa542e48fef927040fa4a2d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1596de6c0fa542e48fef927040fa4a2d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1596de6c0fa542e48fef927040fa4a2d, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: c5ee220d709841a99f0356cec411c3df, From entity, Value { r#type: Entity, value: "2f8d165525af4f5a9567195494f4d331" } +SetTriple: c5ee220d709841a99f0356cec411c3df, To entity, Value { r#type: Entity, value: "9fd8d594765e41d5822a575141722840" } +SetTriple: c5ee220d709841a99f0356cec411c3df, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c5ee220d709841a99f0356cec411c3df, Index, Value { r#type: Text, value: "a0" } +SetTriple: c5ee220d709841a99f0356cec411c3df, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 0cd7fc1689b94c379f976cde089f077f, From entity, Value { r#type: Entity, value: "2f8d165525af4f5a9567195494f4d331" } +SetTriple: 0cd7fc1689b94c379f976cde089f077f, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 0cd7fc1689b94c379f976cde089f077f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0cd7fc1689b94c379f976cde089f077f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0cd7fc1689b94c379f976cde089f077f, Relation type, Value { r#type: Entity, value: "577bd9fbb29e4e2bb5f8f48aedbd26ac" } +SetTriple: ffa6bb8b06ec412a858c817bd77f16ba, From entity, Value { r#type: Entity, value: "2f8d165525af4f5a9567195494f4d331" } +SetTriple: ffa6bb8b06ec412a858c817bd77f16ba, To entity, Value { r#type: Entity, value: "88d5925217ae4d9aa36724710129eb47" } +SetTriple: ffa6bb8b06ec412a858c817bd77f16ba, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ffa6bb8b06ec412a858c817bd77f16ba, Index, Value { r#type: Text, value: "a0" } +SetTriple: ffa6bb8b06ec412a858c817bd77f16ba, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 12e2400308554957a09aac05206f7376, From entity, Value { r#type: Entity, value: "038473bc682448c4a6e2afc2184a4cba" } +SetTriple: 12e2400308554957a09aac05206f7376, To entity, Value { r#type: Entity, value: "e1832055d98243a2bb97e5b4886f9b1c" } +SetTriple: 12e2400308554957a09aac05206f7376, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 12e2400308554957a09aac05206f7376, Index, Value { r#type: Text, value: "a0" } +SetTriple: 12e2400308554957a09aac05206f7376, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: bf4cae69b79d4246a60fe672203ec52d, From entity, Value { r#type: Entity, value: "038473bc682448c4a6e2afc2184a4cba" } +SetTriple: bf4cae69b79d4246a60fe672203ec52d, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: bf4cae69b79d4246a60fe672203ec52d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bf4cae69b79d4246a60fe672203ec52d, Index, Value { r#type: Text, value: "a0" } +SetTriple: bf4cae69b79d4246a60fe672203ec52d, Relation type, Value { r#type: Entity, value: "577bd9fbb29e4e2bb5f8f48aedbd26ac" } +SetTriple: bb86d2be53414dd8a68ddfc6a0d8e30f, From entity, Value { r#type: Entity, value: "038473bc682448c4a6e2afc2184a4cba" } +SetTriple: bb86d2be53414dd8a68ddfc6a0d8e30f, To entity, Value { r#type: Entity, value: "88d5925217ae4d9aa36724710129eb47" } +SetTriple: bb86d2be53414dd8a68ddfc6a0d8e30f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bb86d2be53414dd8a68ddfc6a0d8e30f, Index, Value { r#type: Text, value: "a0" } +SetTriple: bb86d2be53414dd8a68ddfc6a0d8e30f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: b5ab682b9ce94f9f8e08b3d11a3af36b, From entity, Value { r#type: Entity, value: "2f8d165525af4f5a9567195494f4d331" } +SetTriple: b5ab682b9ce94f9f8e08b3d11a3af36b, To entity, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: b5ab682b9ce94f9f8e08b3d11a3af36b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b5ab682b9ce94f9f8e08b3d11a3af36b, Index, Value { r#type: Text, value: "a0" } +SetTriple: b5ab682b9ce94f9f8e08b3d11a3af36b, Relation type, Value { r#type: Entity, value: "388ad59b1cc7413ca0bb34a4de48c758" } +SetTriple: 377dd20a53f143ec9723b190294f039c, From entity, Value { r#type: Entity, value: "2f8d165525af4f5a9567195494f4d331" } +SetTriple: 377dd20a53f143ec9723b190294f039c, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 377dd20a53f143ec9723b190294f039c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 377dd20a53f143ec9723b190294f039c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 377dd20a53f143ec9723b190294f039c, Relation type, Value { r#type: Entity, value: "388ad59b1cc7413ca0bb34a4de48c758" } +SetTriple: 1584a3c8553245779fa16dca2b75a815, To entity, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 89e4ec2ac3ff46048747b7da1247b8fb, Name, Value { r#type: Text, value: "Politics" } +SetTriple: 038473bc682448c4a6e2afc2184a4cba, Filter, Value { r#type: Text, value: "{and: [{typeIds_contains_nocase: [\"d7ab40920ab5441e88c35c27952de773\"]}, {entityOf_: {space: \"ab7d4b9e02f840dab9746d352acb0ac6\"}}, {entityOf_: {attribute: \"90dcfc330cdb4252a7c3f653d4f54e26\", entityValue: \"e1832055d98243a2bb97e5b4886f9b1c\"}}]}" } +SetTriple: 7b973ad913a14de4be060fb4858678fb, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7b973ad913a14de4be060fb4858678fb, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7b973ad913a14de4be060fb4858678fb, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 4b693a340f994797bddf3c891c8e29d3, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4b693a340f994797bddf3c891c8e29d3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4b693a340f994797bddf3c891c8e29d3, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 44fd0c8e3f65453fa2abb05d96a8284a, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 44fd0c8e3f65453fa2abb05d96a8284a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 44fd0c8e3f65453fa2abb05d96a8284a, From entity, Value { r#type: Entity, value: "f1b9fd886388436e95b551aafaea77e5" } +SetTriple: 44fd0c8e3f65453fa2abb05d96a8284a, To entity, Value { r#type: Entity, value: "4f766605d1504cf1b98edffe0ab10b11" } +SetTriple: 7b973ad913a14de4be060fb4858678fb, From entity, Value { r#type: Entity, value: "9fd8d594765e41d5822a575141722840" } +SetTriple: 7b973ad913a14de4be060fb4858678fb, To entity, Value { r#type: Entity, value: "2f8d165525af4f5a9567195494f4d331" } +SetTriple: 4b693a340f994797bddf3c891c8e29d3, From entity, Value { r#type: Entity, value: "e1832055d98243a2bb97e5b4886f9b1c" } +SetTriple: 4b693a340f994797bddf3c891c8e29d3, To entity, Value { r#type: Entity, value: "038473bc682448c4a6e2afc2184a4cba" } +SetTriple: 4f766605d1504cf1b98edffe0ab10b11, Filter, Value { r#type: Text, value: "{typeIds_contains_nocase: [\"3d31f766b65148afa357271343a773de\"], entityOf_: {space: \"ab7d4b9e02f840dab9746d352acb0ac6\"}}" } +SetTriple: 2f8d165525af4f5a9567195494f4d331, Filter, Value { r#type: Text, value: "{and: [{typeIds_contains_nocase: [\"d7ab40920ab5441e88c35c27952de773\"]}, {entityOf_: {space: \"ab7d4b9e02f840dab9746d352acb0ac6\"}}, {entityOf_: {attribute: \"90dcfc330cdb4252a7c3f653d4f54e26\", entityValue: \"9fd8d594765e41d5822a575141722840\"}}]}" } +SetTriple: 44fd0c8e3f65453fa2abb05d96a8284a, Index, Value { r#type: Text, value: "a3" } +SetTriple: 9fd8d594765e41d5822a575141722840, Name, Value { r#type: Text, value: "Sources of information" } +SetTriple: e1832055d98243a2bb97e5b4886f9b1c, Name, Value { r#type: Text, value: "Services" } +SetTriple: 2333765c9ad6434d9c66152c81be44fb, Name, Value { r#type: Text, value: "News" } +SetTriple: f3fe42c3bc19456c89129e701f08f4aa, Name, Value { r#type: Text, value: "Information types" } +SetTriple: 61b2cb6bd0194f6895c7f8c416b2faec, Name, Value { r#type: Text, value: "Places" } +SetTriple: 0ed7c98908154183b34cd156a4494bfa, Name, Value { r#type: Text, value: "Projects" } +SetTriple: 48cdb3d78de84bce87d99163ce55c6fe, Name, Value { r#type: Text, value: "Technical" } +SetTriple: 4f766605d1504cf1b98edffe0ab10b11, Name, Value { r#type: Text, value: "Tags" } +SetTriple: 2f8d165525af4f5a9567195494f4d331, Name, Value { r#type: Text, value: "Types" } +SetTriple: 038473bc682448c4a6e2afc2184a4cba, Name, Value { r#type: Text, value: "Types" } +SetTriple: d5811eaa49f544f791c6eee080b5ac58, Relation type, Value { r#type: Entity, value: "388ad59b1cc7413ca0bb34a4de48c758" } +SetTriple: d5811eaa49f544f791c6eee080b5ac58, Index, Value { r#type: Text, value: "a0" } +SetTriple: d5811eaa49f544f791c6eee080b5ac58, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d5811eaa49f544f791c6eee080b5ac58, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: d5811eaa49f544f791c6eee080b5ac58, From entity, Value { r#type: Entity, value: "038473bc682448c4a6e2afc2184a4cba" } +SetTriple: 1584a3c8553245779fa16dca2b75a815, Relation type, Value { r#type: Entity, value: "388ad59b1cc7413ca0bb34a4de48c758" } +SetTriple: 9a9ec0d8e3674766b6d9834a999ef576, From entity, Value { r#type: Entity, value: "06375f2ac6a7460c8371187cb761e2be" } +SetTriple: 9a9ec0d8e3674766b6d9834a999ef576, To entity, Value { r#type: Entity, value: "9fd8d594765e41d5822a575141722840" } +SetTriple: 9a9ec0d8e3674766b6d9834a999ef576, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9a9ec0d8e3674766b6d9834a999ef576, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9a9ec0d8e3674766b6d9834a999ef576, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: fa9119487ea1412188ae227e8f871340, From entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: fa9119487ea1412188ae227e8f871340, To entity, Value { r#type: Entity, value: "3d31f766b65148afa357271343a773de" } +SetTriple: fa9119487ea1412188ae227e8f871340, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: fa9119487ea1412188ae227e8f871340, Index, Value { r#type: Text, value: "a0" } +SetTriple: fa9119487ea1412188ae227e8f871340, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: e8f6abc1572b44beac258fe9c8507bc4, From entity, Value { r#type: Entity, value: "e1832055d98243a2bb97e5b4886f9b1c" } +SetTriple: e8f6abc1572b44beac258fe9c8507bc4, To entity, Value { r#type: Entity, value: "3d31f766b65148afa357271343a773de" } +SetTriple: e8f6abc1572b44beac258fe9c8507bc4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e8f6abc1572b44beac258fe9c8507bc4, Index, Value { r#type: Text, value: "a0" } +SetTriple: e8f6abc1572b44beac258fe9c8507bc4, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 72540ce017ff41cc95115a7edfc08922, From entity, Value { r#type: Entity, value: "0822d751b6284d3aa974df8c9d5c1cd1" } +SetTriple: 72540ce017ff41cc95115a7edfc08922, To entity, Value { r#type: Entity, value: "e1832055d98243a2bb97e5b4886f9b1c" } +SetTriple: 72540ce017ff41cc95115a7edfc08922, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 72540ce017ff41cc95115a7edfc08922, Index, Value { r#type: Text, value: "a0" } +SetTriple: 72540ce017ff41cc95115a7edfc08922, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: a388b5a898674fd3b9c2ce4ecbba1567, From entity, Value { r#type: Entity, value: "d5b7cf8fb6904af893b29ad1d1822534" } +SetTriple: a388b5a898674fd3b9c2ce4ecbba1567, To entity, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: a388b5a898674fd3b9c2ce4ecbba1567, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a388b5a898674fd3b9c2ce4ecbba1567, Index, Value { r#type: Text, value: "a0" } +SetTriple: a388b5a898674fd3b9c2ce4ecbba1567, Relation type, Value { r#type: Entity, value: "388ad59b1cc7413ca0bb34a4de48c758" } +SetTriple: f41c3d15b81a4b279af90ad6e70a830c, From entity, Value { r#type: Entity, value: "2333765c9ad6434d9c66152c81be44fb" } +SetTriple: f41c3d15b81a4b279af90ad6e70a830c, To entity, Value { r#type: Entity, value: "3d31f766b65148afa357271343a773de" } +SetTriple: f41c3d15b81a4b279af90ad6e70a830c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f41c3d15b81a4b279af90ad6e70a830c, Index, Value { r#type: Text, value: "a0" } +SetTriple: f41c3d15b81a4b279af90ad6e70a830c, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: faf7d1093071484e88b02612b700d6ff, From entity, Value { r#type: Entity, value: "0a5195dc42a34327a727df4b3392df65" } +SetTriple: faf7d1093071484e88b02612b700d6ff, To entity, Value { r#type: Entity, value: "2333765c9ad6434d9c66152c81be44fb" } +SetTriple: faf7d1093071484e88b02612b700d6ff, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: faf7d1093071484e88b02612b700d6ff, Index, Value { r#type: Text, value: "a0" } +SetTriple: faf7d1093071484e88b02612b700d6ff, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: e2363646f87c419c9abd141cfd4c7fe1, From entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: e2363646f87c419c9abd141cfd4c7fe1, To entity, Value { r#type: Entity, value: "3d31f766b65148afa357271343a773de" } +SetTriple: e2363646f87c419c9abd141cfd4c7fe1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e2363646f87c419c9abd141cfd4c7fe1, Index, Value { r#type: Text, value: "a0" } +SetTriple: e2363646f87c419c9abd141cfd4c7fe1, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 38b16f396e874d24b9d9218fab9f73ce, From entity, Value { r#type: Entity, value: "0913adbf9a7840599aba4c788a681255" } +SetTriple: 38b16f396e874d24b9d9218fab9f73ce, To entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: 38b16f396e874d24b9d9218fab9f73ce, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 38b16f396e874d24b9d9218fab9f73ce, Index, Value { r#type: Text, value: "a0" } +SetTriple: 38b16f396e874d24b9d9218fab9f73ce, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 46b33550fae44847b484f70d782914b8, From entity, Value { r#type: Entity, value: "9fd8d594765e41d5822a575141722840" } +SetTriple: 46b33550fae44847b484f70d782914b8, To entity, Value { r#type: Entity, value: "3d31f766b65148afa357271343a773de" } +SetTriple: 46b33550fae44847b484f70d782914b8, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 46b33550fae44847b484f70d782914b8, Index, Value { r#type: Text, value: "a0" } +SetTriple: 46b33550fae44847b484f70d782914b8, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: c760200093e24f64a6683c3e691202ec, From entity, Value { r#type: Entity, value: "61b2cb6bd0194f6895c7f8c416b2faec" } +SetTriple: c760200093e24f64a6683c3e691202ec, To entity, Value { r#type: Entity, value: "3d31f766b65148afa357271343a773de" } +SetTriple: c760200093e24f64a6683c3e691202ec, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c760200093e24f64a6683c3e691202ec, Index, Value { r#type: Text, value: "a0" } +SetTriple: c760200093e24f64a6683c3e691202ec, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: fb334ba466a84ac7b4f8edc97ac63afa, From entity, Value { r#type: Entity, value: "1160ed82001d4d15a998b9044ea7d213" } +SetTriple: fb334ba466a84ac7b4f8edc97ac63afa, To entity, Value { r#type: Entity, value: "61b2cb6bd0194f6895c7f8c416b2faec" } +SetTriple: fb334ba466a84ac7b4f8edc97ac63afa, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: fb334ba466a84ac7b4f8edc97ac63afa, Index, Value { r#type: Text, value: "a0" } +SetTriple: fb334ba466a84ac7b4f8edc97ac63afa, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: b56598de81fc4f88b4f7db6707296844, From entity, Value { r#type: Entity, value: "1390be437d4c4080a925b2f7bc03fc86" } +SetTriple: b56598de81fc4f88b4f7db6707296844, To entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: b56598de81fc4f88b4f7db6707296844, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b56598de81fc4f88b4f7db6707296844, Index, Value { r#type: Text, value: "a0" } +SetTriple: b56598de81fc4f88b4f7db6707296844, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 8fee76116efc4ed08b0b2b1f4333cbb6, From entity, Value { r#type: Entity, value: "15234a4c061f46ee90a0c44cd9414cbe" } +SetTriple: 8fee76116efc4ed08b0b2b1f4333cbb6, To entity, Value { r#type: Entity, value: "9fd8d594765e41d5822a575141722840" } +SetTriple: 8fee76116efc4ed08b0b2b1f4333cbb6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8fee76116efc4ed08b0b2b1f4333cbb6, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8fee76116efc4ed08b0b2b1f4333cbb6, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: f19bad865ff14dad9719a4ce30168e35, From entity, Value { r#type: Entity, value: "1d7f027e415c4f69800e460fde65feb9" } +SetTriple: f19bad865ff14dad9719a4ce30168e35, To entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: f19bad865ff14dad9719a4ce30168e35, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f19bad865ff14dad9719a4ce30168e35, Index, Value { r#type: Text, value: "a0" } +SetTriple: f19bad865ff14dad9719a4ce30168e35, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 7b6bfc98fd614fcdae7dcbe726314e6a, From entity, Value { r#type: Entity, value: "1e39e693db0f404b8e91e06ae41b5e59" } +SetTriple: 7b6bfc98fd614fcdae7dcbe726314e6a, To entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: 7b6bfc98fd614fcdae7dcbe726314e6a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7b6bfc98fd614fcdae7dcbe726314e6a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7b6bfc98fd614fcdae7dcbe726314e6a, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 3c2f4eb9347c482cb41390d771b12eeb, From entity, Value { r#type: Entity, value: "2056da31f55343b4b3668ee094719719" } +SetTriple: 3c2f4eb9347c482cb41390d771b12eeb, To entity, Value { r#type: Entity, value: "e1832055d98243a2bb97e5b4886f9b1c" } +SetTriple: 3c2f4eb9347c482cb41390d771b12eeb, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3c2f4eb9347c482cb41390d771b12eeb, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3c2f4eb9347c482cb41390d771b12eeb, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 6da25fbdccf94f98915f29613b7acceb, From entity, Value { r#type: Entity, value: "2411d4a11eea4963bdbf852ce6ced5a4" } +SetTriple: 6da25fbdccf94f98915f29613b7acceb, To entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: 6da25fbdccf94f98915f29613b7acceb, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6da25fbdccf94f98915f29613b7acceb, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6da25fbdccf94f98915f29613b7acceb, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: ede7e82ff8a647e9962d7bfe4cb6c0d2, From entity, Value { r#type: Entity, value: "276c48daef77463a887fdb21d82c4542" } +SetTriple: ede7e82ff8a647e9962d7bfe4cb6c0d2, To entity, Value { r#type: Entity, value: "2333765c9ad6434d9c66152c81be44fb" } +SetTriple: ede7e82ff8a647e9962d7bfe4cb6c0d2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ede7e82ff8a647e9962d7bfe4cb6c0d2, Index, Value { r#type: Text, value: "a0" } +SetTriple: ede7e82ff8a647e9962d7bfe4cb6c0d2, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 8284a9fa869c45ea8ca315fc0d462717, From entity, Value { r#type: Entity, value: "276c48daef77463a887fdb21d82c4542" } +SetTriple: 8284a9fa869c45ea8ca315fc0d462717, To entity, Value { r#type: Entity, value: "9fd8d594765e41d5822a575141722840" } +SetTriple: 8284a9fa869c45ea8ca315fc0d462717, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8284a9fa869c45ea8ca315fc0d462717, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8284a9fa869c45ea8ca315fc0d462717, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 6158e11aea154c408dcea1482c7805cd, From entity, Value { r#type: Entity, value: "284f02213aea456a83eabe0e28f63a2c" } +SetTriple: 6158e11aea154c408dcea1482c7805cd, To entity, Value { r#type: Entity, value: "9fd8d594765e41d5822a575141722840" } +SetTriple: 6158e11aea154c408dcea1482c7805cd, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6158e11aea154c408dcea1482c7805cd, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6158e11aea154c408dcea1482c7805cd, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 159946f069d443bf8b17a02ba33cdcca, From entity, Value { r#type: Entity, value: "89e4ec2ac3ff46048747b7da1247b8fb" } +SetTriple: 159946f069d443bf8b17a02ba33cdcca, To entity, Value { r#type: Entity, value: "3d31f766b65148afa357271343a773de" } +SetTriple: 159946f069d443bf8b17a02ba33cdcca, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 159946f069d443bf8b17a02ba33cdcca, Index, Value { r#type: Text, value: "a0" } +SetTriple: 159946f069d443bf8b17a02ba33cdcca, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: d9e7ceeffb30400d8181f92dc2b920e2, From entity, Value { r#type: Entity, value: "2abfb81cb1354d16a455dc6813e64405" } +SetTriple: d9e7ceeffb30400d8181f92dc2b920e2, To entity, Value { r#type: Entity, value: "89e4ec2ac3ff46048747b7da1247b8fb" } +SetTriple: d9e7ceeffb30400d8181f92dc2b920e2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d9e7ceeffb30400d8181f92dc2b920e2, Index, Value { r#type: Text, value: "a0" } +SetTriple: d9e7ceeffb30400d8181f92dc2b920e2, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 1c431452abcf4defa91221e028440cc2, From entity, Value { r#type: Entity, value: "2edf4225793741bab2056ac91ab4aab4" } +SetTriple: 1c431452abcf4defa91221e028440cc2, To entity, Value { r#type: Entity, value: "e1832055d98243a2bb97e5b4886f9b1c" } +SetTriple: 1c431452abcf4defa91221e028440cc2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1c431452abcf4defa91221e028440cc2, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1c431452abcf4defa91221e028440cc2, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: d439e559eea34eb1ada8ca765a867774, From entity, Value { r#type: Entity, value: "3282ff6808804059bbffce241cc0d7da" } +SetTriple: d439e559eea34eb1ada8ca765a867774, To entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: d439e559eea34eb1ada8ca765a867774, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d439e559eea34eb1ada8ca765a867774, Index, Value { r#type: Text, value: "a0" } +SetTriple: d439e559eea34eb1ada8ca765a867774, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 91a9ef901d1a4ca091822f3c05df5334, From entity, Value { r#type: Entity, value: "3d31f766b65148afa357271343a773de" } +SetTriple: 91a9ef901d1a4ca091822f3c05df5334, To entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: 91a9ef901d1a4ca091822f3c05df5334, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 91a9ef901d1a4ca091822f3c05df5334, Index, Value { r#type: Text, value: "a0" } +SetTriple: 91a9ef901d1a4ca091822f3c05df5334, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: b9c65c4c33594dfe8d02bc5bec7308fc, From entity, Value { r#type: Entity, value: "462f2ff0b2a14e13976dc8c2469b3546" } +SetTriple: b9c65c4c33594dfe8d02bc5bec7308fc, To entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: b9c65c4c33594dfe8d02bc5bec7308fc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b9c65c4c33594dfe8d02bc5bec7308fc, Index, Value { r#type: Text, value: "a0" } +SetTriple: b9c65c4c33594dfe8d02bc5bec7308fc, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 62316545c714447f958da931d6967ea0, From entity, Value { r#type: Entity, value: "4a65923f16454702b50b5d063efe9cc8" } +SetTriple: 62316545c714447f958da931d6967ea0, To entity, Value { r#type: Entity, value: "89e4ec2ac3ff46048747b7da1247b8fb" } +SetTriple: 62316545c714447f958da931d6967ea0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 62316545c714447f958da931d6967ea0, Index, Value { r#type: Text, value: "a0" } +SetTriple: 62316545c714447f958da931d6967ea0, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: a2fc5549cde7498081a774dfa9821ba9, From entity, Value { r#type: Entity, value: "4aa5db6e5af744ab87b881b3ba0138d1" } +SetTriple: a2fc5549cde7498081a774dfa9821ba9, To entity, Value { r#type: Entity, value: "61b2cb6bd0194f6895c7f8c416b2faec" } +SetTriple: a2fc5549cde7498081a774dfa9821ba9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a2fc5549cde7498081a774dfa9821ba9, Index, Value { r#type: Text, value: "a0" } +SetTriple: a2fc5549cde7498081a774dfa9821ba9, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 344f91ad163a45899f344d2b8da11a8e, From entity, Value { r#type: Entity, value: "4e1966c79f51435284b630151ec2d3e5" } +SetTriple: 344f91ad163a45899f344d2b8da11a8e, To entity, Value { r#type: Entity, value: "61b2cb6bd0194f6895c7f8c416b2faec" } +SetTriple: 344f91ad163a45899f344d2b8da11a8e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 344f91ad163a45899f344d2b8da11a8e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 344f91ad163a45899f344d2b8da11a8e, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 27f75794256e418aaec7c227311e2d2a, From entity, Value { r#type: Entity, value: "587429e126b04aa9893e4ea21b2d8287" } +SetTriple: 27f75794256e418aaec7c227311e2d2a, To entity, Value { r#type: Entity, value: "9fd8d594765e41d5822a575141722840" } +SetTriple: 27f75794256e418aaec7c227311e2d2a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 27f75794256e418aaec7c227311e2d2a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 27f75794256e418aaec7c227311e2d2a, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: b774c947c088411193f4a465eb0602d1, From entity, Value { r#type: Entity, value: "5bc939aa6c834bd1870f7c0acfa48844" } +SetTriple: b774c947c088411193f4a465eb0602d1, To entity, Value { r#type: Entity, value: "61b2cb6bd0194f6895c7f8c416b2faec" } +SetTriple: b774c947c088411193f4a465eb0602d1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b774c947c088411193f4a465eb0602d1, Index, Value { r#type: Text, value: "a0" } +SetTriple: b774c947c088411193f4a465eb0602d1, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: d5d00c8db5d94987aa2c78dcf5131bb4, From entity, Value { r#type: Entity, value: "63352fac43ee4dbca4cb3c3827d15208" } +SetTriple: d5d00c8db5d94987aa2c78dcf5131bb4, To entity, Value { r#type: Entity, value: "61b2cb6bd0194f6895c7f8c416b2faec" } +SetTriple: d5d00c8db5d94987aa2c78dcf5131bb4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d5d00c8db5d94987aa2c78dcf5131bb4, Index, Value { r#type: Text, value: "a0" } +SetTriple: d5d00c8db5d94987aa2c78dcf5131bb4, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 5664ed598b834dab8f99479127643f43, From entity, Value { r#type: Entity, value: "682fbeff41e242cda7f9c4909136a8c5" } +SetTriple: 5664ed598b834dab8f99479127643f43, To entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: 5664ed598b834dab8f99479127643f43, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5664ed598b834dab8f99479127643f43, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5664ed598b834dab8f99479127643f43, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 544f43843d68497f85523bc6022401e3, From entity, Value { r#type: Entity, value: "68ee14807b774f53b02c94422749b36f" } +SetTriple: 544f43843d68497f85523bc6022401e3, To entity, Value { r#type: Entity, value: "89e4ec2ac3ff46048747b7da1247b8fb" } +SetTriple: 544f43843d68497f85523bc6022401e3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 544f43843d68497f85523bc6022401e3, Index, Value { r#type: Text, value: "a0" } +SetTriple: 544f43843d68497f85523bc6022401e3, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 8b9941b40981421083441fffd51081da, From entity, Value { r#type: Entity, value: "724d29589d5443c8af52e3feb24cdf88" } +SetTriple: 8b9941b40981421083441fffd51081da, To entity, Value { r#type: Entity, value: "9fd8d594765e41d5822a575141722840" } +SetTriple: 8b9941b40981421083441fffd51081da, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8b9941b40981421083441fffd51081da, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8b9941b40981421083441fffd51081da, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 8966564182f64f769264fdd639793d7e, From entity, Value { r#type: Entity, value: "682fbeff41e242cda7f9c4909136a8c5" } +SetTriple: 8966564182f64f769264fdd639793d7e, To entity, Value { r#type: Entity, value: "9fd8d594765e41d5822a575141722840" } +SetTriple: 8966564182f64f769264fdd639793d7e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8966564182f64f769264fdd639793d7e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8966564182f64f769264fdd639793d7e, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 5645254557104b8c88c94ee9e60e1a5d, From entity, Value { r#type: Entity, value: "737fec6ced9f4bc3b758dc5a38797c97" } +SetTriple: 5645254557104b8c88c94ee9e60e1a5d, To entity, Value { r#type: Entity, value: "61b2cb6bd0194f6895c7f8c416b2faec" } +SetTriple: 5645254557104b8c88c94ee9e60e1a5d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5645254557104b8c88c94ee9e60e1a5d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5645254557104b8c88c94ee9e60e1a5d, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: fa069e105fb44d4d9a87e3d140b2835a, From entity, Value { r#type: Entity, value: "73c0331a982a43169fd727d932c4bd1f" } +SetTriple: fa069e105fb44d4d9a87e3d140b2835a, To entity, Value { r#type: Entity, value: "e1832055d98243a2bb97e5b4886f9b1c" } +SetTriple: fa069e105fb44d4d9a87e3d140b2835a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: fa069e105fb44d4d9a87e3d140b2835a, Index, Value { r#type: Text, value: "a0" } +SetTriple: fa069e105fb44d4d9a87e3d140b2835a, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 08ea83ef174147f5b2db1fe273f14997, From entity, Value { r#type: Entity, value: "79e43124950544cb93d67b93ddd2fd3a" } +SetTriple: 08ea83ef174147f5b2db1fe273f14997, To entity, Value { r#type: Entity, value: "89e4ec2ac3ff46048747b7da1247b8fb" } +SetTriple: 08ea83ef174147f5b2db1fe273f14997, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 08ea83ef174147f5b2db1fe273f14997, Index, Value { r#type: Text, value: "a0" } +SetTriple: 08ea83ef174147f5b2db1fe273f14997, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: ec69853d5aa44307a90b224d69e8870e, From entity, Value { r#type: Entity, value: "7a5e199b00b04c68834aafcd18673b4c" } +SetTriple: ec69853d5aa44307a90b224d69e8870e, To entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: ec69853d5aa44307a90b224d69e8870e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ec69853d5aa44307a90b224d69e8870e, Index, Value { r#type: Text, value: "a0" } +SetTriple: ec69853d5aa44307a90b224d69e8870e, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: f876b05cf3ae4ff7b0b3d350df8b0262, From entity, Value { r#type: Entity, value: "8b07ea978d504aa38f15e4da8659f685" } +SetTriple: f876b05cf3ae4ff7b0b3d350df8b0262, To entity, Value { r#type: Entity, value: "e1832055d98243a2bb97e5b4886f9b1c" } +SetTriple: f876b05cf3ae4ff7b0b3d350df8b0262, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f876b05cf3ae4ff7b0b3d350df8b0262, Index, Value { r#type: Text, value: "a0" } +SetTriple: f876b05cf3ae4ff7b0b3d350df8b0262, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 40084f8994cd4a52b0c9ff8100d93a23, From entity, Value { r#type: Entity, value: "8dd452981a8241ae823776565cb134e6" } +SetTriple: 40084f8994cd4a52b0c9ff8100d93a23, To entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: 40084f8994cd4a52b0c9ff8100d93a23, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 40084f8994cd4a52b0c9ff8100d93a23, Index, Value { r#type: Text, value: "a0" } +SetTriple: 40084f8994cd4a52b0c9ff8100d93a23, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 867fb888e2e64eb89e07aad24a9155d5, From entity, Value { r#type: Entity, value: "8e705c2ab65d4bb790ddc87270421849" } +SetTriple: 867fb888e2e64eb89e07aad24a9155d5, To entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: 867fb888e2e64eb89e07aad24a9155d5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 867fb888e2e64eb89e07aad24a9155d5, Index, Value { r#type: Text, value: "a0" } +SetTriple: 867fb888e2e64eb89e07aad24a9155d5, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: a1cde468b7ad4898a35d7ba14b67437e, From entity, Value { r#type: Entity, value: "911a8e0a52f24655a0c6d89cd161bb12" } +SetTriple: a1cde468b7ad4898a35d7ba14b67437e, To entity, Value { r#type: Entity, value: "61b2cb6bd0194f6895c7f8c416b2faec" } +SetTriple: a1cde468b7ad4898a35d7ba14b67437e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a1cde468b7ad4898a35d7ba14b67437e, Index, Value { r#type: Text, value: "a0" } +SetTriple: a1cde468b7ad4898a35d7ba14b67437e, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 8edb52be07ce471ea18021f64e982846, From entity, Value { r#type: Entity, value: "9438ee038c1145af9bf66b7ba8d4c1f3" } +SetTriple: 8edb52be07ce471ea18021f64e982846, To entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: 8edb52be07ce471ea18021f64e982846, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8edb52be07ce471ea18021f64e982846, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8edb52be07ce471ea18021f64e982846, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 2312589c3a5142108dd557f4427d9866, From entity, Value { r#type: Entity, value: "0ed7c98908154183b34cd156a4494bfa" } +SetTriple: 2312589c3a5142108dd557f4427d9866, To entity, Value { r#type: Entity, value: "3d31f766b65148afa357271343a773de" } +SetTriple: 2312589c3a5142108dd557f4427d9866, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2312589c3a5142108dd557f4427d9866, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2312589c3a5142108dd557f4427d9866, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 31ffaf37896d48e9b7305953e24008a2, From entity, Value { r#type: Entity, value: "9c1922f1d7a247d1841d234cb2f56991" } +SetTriple: 31ffaf37896d48e9b7305953e24008a2, To entity, Value { r#type: Entity, value: "0ed7c98908154183b34cd156a4494bfa" } +SetTriple: 31ffaf37896d48e9b7305953e24008a2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 31ffaf37896d48e9b7305953e24008a2, Index, Value { r#type: Text, value: "a0" } +SetTriple: 31ffaf37896d48e9b7305953e24008a2, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 75aff84ff5454061b7675d78f4b717a2, From entity, Value { r#type: Entity, value: "9cc8a65ddf924c0c8d9024980e822dc0" } +SetTriple: 75aff84ff5454061b7675d78f4b717a2, To entity, Value { r#type: Entity, value: "0ed7c98908154183b34cd156a4494bfa" } +SetTriple: 75aff84ff5454061b7675d78f4b717a2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 75aff84ff5454061b7675d78f4b717a2, Index, Value { r#type: Text, value: "a0" } +SetTriple: 75aff84ff5454061b7675d78f4b717a2, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: bf8dcc50a18e4fb1b0281e875b3e0f37, From entity, Value { r#type: Entity, value: "a36de44dff584511b73405f5b3911001" } +SetTriple: bf8dcc50a18e4fb1b0281e875b3e0f37, To entity, Value { r#type: Entity, value: "0ed7c98908154183b34cd156a4494bfa" } +SetTriple: bf8dcc50a18e4fb1b0281e875b3e0f37, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bf8dcc50a18e4fb1b0281e875b3e0f37, Index, Value { r#type: Text, value: "a0" } +SetTriple: bf8dcc50a18e4fb1b0281e875b3e0f37, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: f4253dcd02304e87bb136420755d7b83, From entity, Value { r#type: Entity, value: "abf54171e51945528db1ff6f2ed05e54" } +SetTriple: f4253dcd02304e87bb136420755d7b83, To entity, Value { r#type: Entity, value: "89e4ec2ac3ff46048747b7da1247b8fb" } +SetTriple: f4253dcd02304e87bb136420755d7b83, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f4253dcd02304e87bb136420755d7b83, Index, Value { r#type: Text, value: "a0" } +SetTriple: f4253dcd02304e87bb136420755d7b83, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 5bd9c0defa46482db6f874f62b87760f, From entity, Value { r#type: Entity, value: "ac0dc3bf85f7469dbd4b8692bc1bdf99" } +SetTriple: 5bd9c0defa46482db6f874f62b87760f, To entity, Value { r#type: Entity, value: "9fd8d594765e41d5822a575141722840" } +SetTriple: 5bd9c0defa46482db6f874f62b87760f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5bd9c0defa46482db6f874f62b87760f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5bd9c0defa46482db6f874f62b87760f, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: c453614694d04e8187f52b659450a750, From entity, Value { r#type: Entity, value: "ac29ecfd79bb4ca7b896ee1757781170" } +SetTriple: c453614694d04e8187f52b659450a750, To entity, Value { r#type: Entity, value: "89e4ec2ac3ff46048747b7da1247b8fb" } +SetTriple: c453614694d04e8187f52b659450a750, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c453614694d04e8187f52b659450a750, Index, Value { r#type: Text, value: "a0" } +SetTriple: c453614694d04e8187f52b659450a750, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 58e025520ce44ea8875df423ab2ee1c6, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: 58e025520ce44ea8875df423ab2ee1c6, To entity, Value { r#type: Entity, value: "2333765c9ad6434d9c66152c81be44fb" } +SetTriple: 58e025520ce44ea8875df423ab2ee1c6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 58e025520ce44ea8875df423ab2ee1c6, Index, Value { r#type: Text, value: "a0" } +SetTriple: 58e025520ce44ea8875df423ab2ee1c6, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 8af8f7a3fbca43cb88b2f335d4da4dfe, From entity, Value { r#type: Entity, value: "b3b03c909b6d487cb2e2a7d685f120eb" } +SetTriple: 8af8f7a3fbca43cb88b2f335d4da4dfe, To entity, Value { r#type: Entity, value: "0ed7c98908154183b34cd156a4494bfa" } +SetTriple: 8af8f7a3fbca43cb88b2f335d4da4dfe, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8af8f7a3fbca43cb88b2f335d4da4dfe, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8af8f7a3fbca43cb88b2f335d4da4dfe, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 267c6a3ef8524dd9ba4cec03b83e873f, From entity, Value { r#type: Entity, value: "b67663f43a7d426180616df2c4eb77ce" } +SetTriple: 267c6a3ef8524dd9ba4cec03b83e873f, To entity, Value { r#type: Entity, value: "9fd8d594765e41d5822a575141722840" } +SetTriple: 267c6a3ef8524dd9ba4cec03b83e873f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 267c6a3ef8524dd9ba4cec03b83e873f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 267c6a3ef8524dd9ba4cec03b83e873f, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 545983f3049449aea3e4c2d39bfa9934, From entity, Value { r#type: Entity, value: "ba43fd1aef2d449f97c46bf8e8ac9d58" } +SetTriple: 545983f3049449aea3e4c2d39bfa9934, To entity, Value { r#type: Entity, value: "0ed7c98908154183b34cd156a4494bfa" } +SetTriple: 545983f3049449aea3e4c2d39bfa9934, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 545983f3049449aea3e4c2d39bfa9934, Index, Value { r#type: Text, value: "a0" } +SetTriple: 545983f3049449aea3e4c2d39bfa9934, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 9d1b94bc78934c499df6277d1ff87693, From entity, Value { r#type: Entity, value: "bc2a4e5b115e44e99758c639a13f32a4" } +SetTriple: 9d1b94bc78934c499df6277d1ff87693, To entity, Value { r#type: Entity, value: "0ed7c98908154183b34cd156a4494bfa" } +SetTriple: 9d1b94bc78934c499df6277d1ff87693, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9d1b94bc78934c499df6277d1ff87693, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9d1b94bc78934c499df6277d1ff87693, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 34e77dbc2f194d158ba55027244e972e, From entity, Value { r#type: Entity, value: "c0ae7c77d33f41a8a8e6563c9d4f7ae6" } +SetTriple: 34e77dbc2f194d158ba55027244e972e, To entity, Value { r#type: Entity, value: "89e4ec2ac3ff46048747b7da1247b8fb" } +SetTriple: d9401e5b03a245f5a6290062d76bd7cd, Index, Value { r#type: Text, value: "a0" } +SetTriple: cdd71a2ca6d541a4ac23d575008831f2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 284bcf56bbed4e78a89950deedc370b5, To entity, Value { r#type: Entity, value: "88d5925217ae4d9aa36724710129eb47" } +SetTriple: 284bcf56bbed4e78a89950deedc370b5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 284bcf56bbed4e78a89950deedc370b5, Index, Value { r#type: Text, value: "a0" } +SetTriple: 284bcf56bbed4e78a89950deedc370b5, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: a95553fee59b446bb0d62c950c657790, From entity, Value { r#type: Entity, value: "587429e126b04aa9893e4ea21b2d8287" } +SetTriple: f4b35d55cf19421688cb5900ba6ee55c, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: f4b35d55cf19421688cb5900ba6ee55c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4bcd52fc91ea47cba14920fecc16467b, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: f4b35d55cf19421688cb5900ba6ee55c, Index, Value { r#type: Text, value: "a0" } +SetTriple: a95553fee59b446bb0d62c950c657790, To entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: a95553fee59b446bb0d62c950c657790, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: fa1c052c17f2464e9c12fd2d4414533c, Filter, Value { r#type: Text, value: "{and: [{typeIds_contains_nocase: [\"d7ab40920ab5441e88c35c27952de773\"]}, {entityOf_: {space: \"ab7d4b9e02f840dab9746d352acb0ac6\"}}, {entityOf_: {attribute: \"90dcfc330cdb4252a7c3f653d4f54e26\", entityValue: \"f3fe42c3bc19456c89129e701f08f4aa\"}}]}" } +SetTriple: 4bcd52fc91ea47cba14920fecc16467b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4bcd52fc91ea47cba14920fecc16467b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: cf389f50016c4eacb9456b330432c113, Index, Value { r#type: Text, value: "a0" } +SetTriple: cf389f50016c4eacb9456b330432c113, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4bcd52fc91ea47cba14920fecc16467b, To entity, Value { r#type: Entity, value: "2333765c9ad6434d9c66152c81be44fb" } +SetTriple: cf389f50016c4eacb9456b330432c113, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: cdd71a2ca6d541a4ac23d575008831f2, From entity, Value { r#type: Entity, value: "3d8ab901c94b426594324ceb6cd3813c" } +SetTriple: cdd71a2ca6d541a4ac23d575008831f2, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: a95553fee59b446bb0d62c950c657790, Index, Value { r#type: Text, value: "a0" } +SetTriple: a95553fee59b446bb0d62c950c657790, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 4bcd52fc91ea47cba14920fecc16467b, From entity, Value { r#type: Entity, value: "3d8ab901c94b426594324ceb6cd3813c" } +SetTriple: cdd71a2ca6d541a4ac23d575008831f2, Index, Value { r#type: Text, value: "a0" } +SetTriple: cdd71a2ca6d541a4ac23d575008831f2, Relation type, Value { r#type: Entity, value: "577bd9fbb29e4e2bb5f8f48aedbd26ac" } +SetTriple: c9eae7f85a854b4aa2306c2ccdec3d34, From entity, Value { r#type: Entity, value: "3d8ab901c94b426594324ceb6cd3813c" } +SetTriple: c9eae7f85a854b4aa2306c2ccdec3d34, To entity, Value { r#type: Entity, value: "88d5925217ae4d9aa36724710129eb47" } +SetTriple: c9eae7f85a854b4aa2306c2ccdec3d34, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c9eae7f85a854b4aa2306c2ccdec3d34, Index, Value { r#type: Text, value: "a0" } +SetTriple: c9eae7f85a854b4aa2306c2ccdec3d34, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: fa1c052c17f2464e9c12fd2d4414533c, Name, Value { r#type: Text, value: "Types" } +SetTriple: 3d8ab901c94b426594324ceb6cd3813c, Name, Value { r#type: Text, value: "Types" } +SetTriple: d9401e5b03a245f5a6290062d76bd7cd, From entity, Value { r#type: Entity, value: "fa1c052c17f2464e9c12fd2d4414533c" } +SetTriple: d9401e5b03a245f5a6290062d76bd7cd, To entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: d9401e5b03a245f5a6290062d76bd7cd, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d9401e5b03a245f5a6290062d76bd7cd, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: a9a264bca58b49babc18caee5b1f65de, From entity, Value { r#type: Entity, value: "fa1c052c17f2464e9c12fd2d4414533c" } +SetTriple: a9a264bca58b49babc18caee5b1f65de, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: Types, Filter, Value { r#type: Text, value: "{and: [{typeIds_contains_nocase: [\"d7ab40920ab5441e88c35c27952de773\"]}, {entityOf_: {space: \"ab7d4b9e02f840dab9746d352acb0ac6\"}}, {entityOf_: {attribute: \"90dcfc330cdb4252a7c3f653d4f54e26\", entityValue: \"2333765c9ad6434d9c66152c81be44fb\"}}]}" } +SetTriple: cf389f50016c4eacb9456b330432c113, To entity, Value { r#type: Entity, value: "fa1c052c17f2464e9c12fd2d4414533c" } +SetTriple: cf389f50016c4eacb9456b330432c113, From entity, Value { r#type: Entity, value: "f3fe42c3bc19456c89129e701f08f4aa" } +SetTriple: f4b35d55cf19421688cb5900ba6ee55c, To entity, Value { r#type: Entity, value: "3d8ab901c94b426594324ceb6cd3813c" } +SetTriple: f4b35d55cf19421688cb5900ba6ee55c, From entity, Value { r#type: Entity, value: "2333765c9ad6434d9c66152c81be44fb" } +SetTriple: a9a264bca58b49babc18caee5b1f65de, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a9a264bca58b49babc18caee5b1f65de, Index, Value { r#type: Text, value: "a0" } +SetTriple: a9a264bca58b49babc18caee5b1f65de, Relation type, Value { r#type: Entity, value: "577bd9fbb29e4e2bb5f8f48aedbd26ac" } +SetTriple: 284bcf56bbed4e78a89950deedc370b5, From entity, Value { r#type: Entity, value: "fa1c052c17f2464e9c12fd2d4414533c" } +SetTriple: aa112bc68275424991d89222adc7d653, Index, Value { r#type: Text, value: "a0" } +SetTriple: a376bc95538f45cfa8df0d005f0dad2f, From entity, Value { r#type: Entity, value: "fa60930f07d84f6080ddbdcf62963060" } +SetTriple: a376bc95538f45cfa8df0d005f0dad2f, Index, Value { r#type: Text, value: "a0" } +SetTriple: a376bc95538f45cfa8df0d005f0dad2f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: a376bc95538f45cfa8df0d005f0dad2f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: aa112bc68275424991d89222adc7d653, From entity, Value { r#type: Entity, value: "fa60930f07d84f6080ddbdcf62963060" } +SetTriple: aa112bc68275424991d89222adc7d653, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: fa60930f07d84f6080ddbdcf62963060, Description, Value { r#type: Text, value: "Pages linked to the current entity offering additional information or further exploration, enhancing user navigation and enriching the browsing experience." } +SetTriple: fa60930f07d84f6080ddbdcf62963060, Name, Value { r#type: Text, value: "Related pages" } +SetTriple: a376bc95538f45cfa8df0d005f0dad2f, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: aa112bc68275424991d89222adc7d653, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e2316f7e73ec4791a6a7b087f12aefee, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: e2316f7e73ec4791a6a7b087f12aefee, To entity, Value { r#type: Entity, value: "5742a7038b734eb6b3df4378c1b512c6" } +SetTriple: e2316f7e73ec4791a6a7b087f12aefee, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: aa112bc68275424991d89222adc7d653, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: e2316f7e73ec4791a6a7b087f12aefee, Index, Value { r#type: Text, value: "a0" } +SetTriple: e2316f7e73ec4791a6a7b087f12aefee, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 4f3062d8279c47dcbdfd745d8164fe62, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: 4f3062d8279c47dcbdfd745d8164fe62, To entity, Value { r#type: Entity, value: "e6184c8e261d46df9c4359fccde3395c" } +SetTriple: 4f3062d8279c47dcbdfd745d8164fe62, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4f3062d8279c47dcbdfd745d8164fe62, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4f3062d8279c47dcbdfd745d8164fe62, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 1aaf7673d4f841c592828bc11fab0b27, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6ee44a3f0bfc4119aac5904672cef835, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6ee44a3f0bfc4119aac5904672cef835, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6ee44a3f0bfc4119aac5904672cef835, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 09a2b5cafb234894b802583bf5f0ad0d, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 09a2b5cafb234894b802583bf5f0ad0d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 09a2b5cafb234894b802583bf5f0ad0d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 09a2b5cafb234894b802583bf5f0ad0d, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: f0c4c60e1fee42feaab78b42fbd0fddf, Markdown Content, Value { r#type: Text, value: "- **Topics**, topics connected to the news event. For instance, in the context of US Politics, the news event could be linked to a politician.\n\n- **Cover,** a banner image with a 3:1 ratio (exact cover size is 1192px by 320px).\n\n- **Location**, the place where the news event takes or took place.\n\n- **Date**, the date when the news event happened.\n\n- **Sources**, encompass press articles, press releases, social media posts, and relevant documents such as transcripts or statements, all of which provide information and facilitate comprehension of current events.\n\n- **Claims about**, to complete, comment, question or refute the news event.\n\n- **Claims from**, key insights derived from the news event, highlighting the pivotal aspects or conclusions.\n\n- **Relevant questions**, the **Five W's and H**: Who? What? When? Where? Why? How?\" is a checklist used in journalism to guide research and interviews and to raise important ethical questions, such as “How do you know that?\"\n\n- **Related entities:** any entities that are interconnected with the current entity.\n\n- **Tags**, help in filtering tables and sorting the entity\n\n\n" } +SetTriple: 09a2b5cafb234894b802583bf5f0ad0d, From entity, Value { r#type: Entity, value: "f0c4c60e1fee42feaab78b42fbd0fddf" } +SetTriple: 0f9ef1f89adf4f6c82047d0bba73df7f, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 0f9ef1f89adf4f6c82047d0bba73df7f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0f9ef1f89adf4f6c82047d0bba73df7f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0f9ef1f89adf4f6c82047d0bba73df7f, To entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: 0f9ef1f89adf4f6c82047d0bba73df7f, From entity, Value { r#type: Entity, value: "f0c4c60e1fee42feaab78b42fbd0fddf" } +SetTriple: 7f3ecf260f4248b0b1466a73771c1c7f, Index, Value { r#type: Text, value: "a1" } +SetTriple: 7f3ecf260f4248b0b1466a73771c1c7f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7f3ecf260f4248b0b1466a73771c1c7f, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 482ebb808b734bbea50eba40c280c06f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 482ebb808b734bbea50eba40c280c06f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 482ebb808b734bbea50eba40c280c06f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 482ebb808b734bbea50eba40c280c06f, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: 482ebb808b734bbea50eba40c280c06f, From entity, Value { r#type: Entity, value: "66f5e679ec3447ca9712ad525142c59e" } +SetTriple: 1aaf7673d4f841c592828bc11fab0b27, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 1aaf7673d4f841c592828bc11fab0b27, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1aaf7673d4f841c592828bc11fab0b27, To entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: 1aaf7673d4f841c592828bc11fab0b27, From entity, Value { r#type: Entity, value: "66f5e679ec3447ca9712ad525142c59e" } +SetTriple: 66f5e679ec3447ca9712ad525142c59e, Markdown Content, Value { r#type: Text, value: "## Overview of News event type attributes:\n\n" } +SetTriple: 6ee44a3f0bfc4119aac5904672cef835, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: 6ee44a3f0bfc4119aac5904672cef835, To entity, Value { r#type: Entity, value: "66f5e679ec3447ca9712ad525142c59e" } +SetTriple: 7f3ecf260f4248b0b1466a73771c1c7f, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: 7f3ecf260f4248b0b1466a73771c1c7f, To entity, Value { r#type: Entity, value: "f0c4c60e1fee42feaab78b42fbd0fddf" } +SetTriple: 66f5e679ec3447ca9712ad525142c59e, Name, Value { r#type: Text, value: "Overview of News eve" } +SetTriple: f0c4c60e1fee42feaab78b42fbd0fddf, Name, Value { r#type: Text, value: "Topics, topics conne" } +SetTriple: 84dd957db0f642dfa69270452661647c, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 3b25f94bd577474680d4b6622218ce33, Name, Value { r#type: Text, value: "News events" } +SetTriple: 6b2973367d70472490cbc48fec376c8c, Name, Value { r#type: Text, value: "Topics, topics conne" } +SetTriple: e1d682324b82411da03c1e195e5cd6fc, Index, Value { r#type: Text, value: "a0" } +SetTriple: e1d682324b82411da03c1e195e5cd6fc, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: f4a8034b57314f928b3ba2d2163959d5, From entity, Value { r#type: Entity, value: "6b2973367d70472490cbc48fec376c8c" } +SetTriple: f4a8034b57314f928b3ba2d2163959d5, To entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: deea36a0f4d94d4cadfdca78a13abc1e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: deea36a0f4d94d4cadfdca78a13abc1e, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: f4a8034b57314f928b3ba2d2163959d5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f4a8034b57314f928b3ba2d2163959d5, Index, Value { r#type: Text, value: "a0" } +SetTriple: f4a8034b57314f928b3ba2d2163959d5, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 84dd957db0f642dfa69270452661647c, From entity, Value { r#type: Entity, value: "6b2973367d70472490cbc48fec376c8c" } +SetTriple: 84dd957db0f642dfa69270452661647c, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: 84dd957db0f642dfa69270452661647c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 84dd957db0f642dfa69270452661647c, Index, Value { r#type: Text, value: "a0" } +SetTriple: Topics, topics conne, Markdown Content, Value { r#type: Text, value: "- **Topics**, topics connected to the news event. For instance, in the context of US Politics, the news event could be linked to a politician.\n\n- **Cover,** a banner image with a 3:1 ratio (exact cover size is 1192px by 320px).\n\n- **Location**, the place where the news event takes or took place.\n\n- **Date**, the date when the news event happened.\n\n- **Sources**, encompass press articles, press releases, social media posts, and relevant documents such as transcripts or statements, all of which provide information and facilitate comprehension of current events.\n\n- **Claims about**, to complete, comment, question or refute the news event.\n\n- **Claims from**, key insights derived from the news event, highlighting the pivotal aspects or conclusions.\n\n- **Relevant questions**, the **Five W's and H**: Who? What? When? Where? Why? How?\" is a checklist used in journalism to guide research and interviews and to raise important ethical questions, such as “How do you know that?\"\n\n- **Related entities:** any entities that are interconnected with the current entity.\n\n- **Tags**, help in filtering tables and sorting the entity\n\n\n" } +SetTriple: 5db1cff0c8c345d9aca109bfac8bdf8b, From entity, Value { r#type: Entity, value: "cb9d261d456b4eaf87e51e9faa441867" } +SetTriple: 5db1cff0c8c345d9aca109bfac8bdf8b, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 5db1cff0c8c345d9aca109bfac8bdf8b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5db1cff0c8c345d9aca109bfac8bdf8b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5db1cff0c8c345d9aca109bfac8bdf8b, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: News events, Filter, Value { r#type: Text, value: "{typeIds_contains_nocase: [\"b10408748be747a7b15298c320681d61\"], entityOf_: {space: \"ab7d4b9e02f840dab9746d352acb0ac6\"}}" } +SetTriple: d7abcaa8b9d44ec594628e37c6e9fd41, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: d7abcaa8b9d44ec594628e37c6e9fd41, To entity, Value { r#type: Entity, value: "6b2973367d70472490cbc48fec376c8c" } +SetTriple: deea36a0f4d94d4cadfdca78a13abc1e, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: deea36a0f4d94d4cadfdca78a13abc1e, To entity, Value { r#type: Entity, value: "3b25f94bd577474680d4b6622218ce33" } +SetTriple: e1d682324b82411da03c1e195e5cd6fc, From entity, Value { r#type: Entity, value: "3b25f94bd577474680d4b6622218ce33" } +SetTriple: 319ef0b9bd04417482765802d3044d4e, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 319ef0b9bd04417482765802d3044d4e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 319ef0b9bd04417482765802d3044d4e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 319ef0b9bd04417482765802d3044d4e, To entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: 319ef0b9bd04417482765802d3044d4e, From entity, Value { r#type: Entity, value: "3b25f94bd577474680d4b6622218ce33" } +SetTriple: df3f7672d72a487eae4fee42e1daf20b, Relation type, Value { r#type: Entity, value: "577bd9fbb29e4e2bb5f8f48aedbd26ac" } +SetTriple: df3f7672d72a487eae4fee42e1daf20b, Index, Value { r#type: Text, value: "a0" } +SetTriple: df3f7672d72a487eae4fee42e1daf20b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: df3f7672d72a487eae4fee42e1daf20b, To entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: df3f7672d72a487eae4fee42e1daf20b, From entity, Value { r#type: Entity, value: "3b25f94bd577474680d4b6622218ce33" } +SetTriple: e1d682324b82411da03c1e195e5cd6fc, To entity, Value { r#type: Entity, value: "88d5925217ae4d9aa36724710129eb47" } +SetTriple: e1d682324b82411da03c1e195e5cd6fc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d7abcaa8b9d44ec594628e37c6e9fd41, Index, Value { r#type: Text, value: "a1" } +SetTriple: d7abcaa8b9d44ec594628e37c6e9fd41, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d7abcaa8b9d44ec594628e37c6e9fd41, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: deea36a0f4d94d4cadfdca78a13abc1e, Index, Value { r#type: Text, value: "a2" } +SetTriple: 3b7fd5a1e7a64063a2af8c97fea4e2b9, To entity, Value { r#type: Entity, value: "3d31f766b65148afa357271343a773de" } +SetTriple: 3b7fd5a1e7a64063a2af8c97fea4e2b9, From entity, Value { r#type: Entity, value: "158924cf028e466eb3c721e9429491bc" } +SetTriple: 158924cf028e466eb3c721e9429491bc, Name, Value { r#type: Text, value: "Trending" } +SetTriple: 3b7fd5a1e7a64063a2af8c97fea4e2b9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3b7fd5a1e7a64063a2af8c97fea4e2b9, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 3b7fd5a1e7a64063a2af8c97fea4e2b9, Index, Value { r#type: Text, value: "a0" } +SetTriple: cb96c35482eb4b1c8f06eaffeff3fea6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: cb96c35482eb4b1c8f06eaffeff3fea6, Index, Value { r#type: Text, value: "a0" } +SetTriple: cb96c35482eb4b1c8f06eaffeff3fea6, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 6cb77b2684fd4911a5366deadd5a3fc0, To entity, Value { r#type: Entity, value: "e6184c8e261d46df9c4359fccde3395c" } +SetTriple: 6ddf0da8d19149eba5a8d683175fa080, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 6ddf0da8d19149eba5a8d683175fa080, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6ddf0da8d19149eba5a8d683175fa080, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6ddf0da8d19149eba5a8d683175fa080, To entity, Value { r#type: Entity, value: "912c4d9504fc4d3cbc84382b3a1904d1" } +SetTriple: 6ddf0da8d19149eba5a8d683175fa080, From entity, Value { r#type: Entity, value: "873e0723752f4cd1bccab304cb8c4383" } +SetTriple: 6cb77b2684fd4911a5366deadd5a3fc0, From entity, Value { r#type: Entity, value: "0913adbf9a7840599aba4c788a681255" } +SetTriple: 6cb77b2684fd4911a5366deadd5a3fc0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6cb77b2684fd4911a5366deadd5a3fc0, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6cb77b2684fd4911a5366deadd5a3fc0, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: cb96c35482eb4b1c8f06eaffeff3fea6, From entity, Value { r#type: Entity, value: "0913adbf9a7840599aba4c788a681255" } +SetTriple: cb96c35482eb4b1c8f06eaffeff3fea6, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: af894933710e4042aa29580d6d2a8ce1, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: af894933710e4042aa29580d6d2a8ce1, From entity, Value { r#type: Entity, value: "fa8e8e54f7424c00b73c05adee2b4545" } +SetTriple: af894933710e4042aa29580d6d2a8ce1, To entity, Value { r#type: Entity, value: "e6184c8e261d46df9c4359fccde3395c" } +SetTriple: af894933710e4042aa29580d6d2a8ce1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: af894933710e4042aa29580d6d2a8ce1, Index, Value { r#type: Text, value: "a0" } +SetTriple: c5efbdb7e3a24c5b8a49a9fca4b7d627, To entity, Value { r#type: Entity, value: "e6184c8e261d46df9c4359fccde3395c" } +SetTriple: c5efbdb7e3a24c5b8a49a9fca4b7d627, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c5efbdb7e3a24c5b8a49a9fca4b7d627, Index, Value { r#type: Text, value: "a0" } +SetTriple: c5efbdb7e3a24c5b8a49a9fca4b7d627, From entity, Value { r#type: Entity, value: "1d7f027e415c4f69800e460fde65feb9" } +SetTriple: c5efbdb7e3a24c5b8a49a9fca4b7d627, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: bafa5804c8c343f5935994573426c80d, From entity, Value { r#type: Entity, value: "1a9fc4a00fec4eeaa075eec7ebd0d043" } +SetTriple: bafa5804c8c343f5935994573426c80d, To entity, Value { r#type: Entity, value: "e6184c8e261d46df9c4359fccde3395c" } +SetTriple: bafa5804c8c343f5935994573426c80d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bafa5804c8c343f5935994573426c80d, Index, Value { r#type: Text, value: "a0" } +SetTriple: bafa5804c8c343f5935994573426c80d, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 9dcb539bb4b54bc9bc31386c3e18d7c7, From entity, Value { r#type: Entity, value: "edd2eac1632f4a8fa0bdeace2b1a3ea5" } +SetTriple: 41d1cfd97046449d9b405e76cc700a4c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 41d1cfd97046449d9b405e76cc700a4c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 69f985ba75c34254a795cdbe6ae26359, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 0c60ccc4ada7488b96f39174c36f6806, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: 0c60ccc4ada7488b96f39174c36f6806, To entity, Value { r#type: Entity, value: "8b0bc6f76cba48158e67fc4654b2250e" } +SetTriple: fe9bdc55496144b8b56030441dcd9e6e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7aba5ef67f3746e5aa508afd56e2e370, From entity, Value { r#type: Entity, value: "edd2eac1632f4a8fa0bdeace2b1a3ea5" } +SetTriple: 7aba5ef67f3746e5aa508afd56e2e370, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 8b0bc6f76cba48158e67fc4654b2250e, Name, Value { r#type: Text, value: "Related news events" } +SetTriple: Related news events, Description, Value { r#type: Text, value: "News events linked to the current entity." } +SetTriple: 9dcb539bb4b54bc9bc31386c3e18d7c7, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 7aba5ef67f3746e5aa508afd56e2e370, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9dcb539bb4b54bc9bc31386c3e18d7c7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 41d1cfd97046449d9b405e76cc700a4c, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 41d1cfd97046449d9b405e76cc700a4c, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: c8f2a862b03f4983868f0e4c05c0356b, From entity, Value { r#type: Entity, value: "8b0bc6f76cba48158e67fc4654b2250e" } +SetTriple: 69f985ba75c34254a795cdbe6ae26359, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: 69f985ba75c34254a795cdbe6ae26359, To entity, Value { r#type: Entity, value: "0db47aca1ccf4c9fbeb689519ebe9eed" } +SetTriple: 69f985ba75c34254a795cdbe6ae26359, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c8f2a862b03f4983868f0e4c05c0356b, Index, Value { r#type: Text, value: "a0" } +SetTriple: c8f2a862b03f4983868f0e4c05c0356b, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: fe9bdc55496144b8b56030441dcd9e6e, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 7aba5ef67f3746e5aa508afd56e2e370, Index, Value { r#type: Text, value: "a0" } +SetTriple: c5b08b9bbcbd4c30a12a9aa0631e7af0, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0c60ccc4ada7488b96f39174c36f6806, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c5b08b9bbcbd4c30a12a9aa0631e7af0, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: fe9bdc55496144b8b56030441dcd9e6e, Index, Value { r#type: Text, value: "a0" } +SetTriple: c5b08b9bbcbd4c30a12a9aa0631e7af0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c5b08b9bbcbd4c30a12a9aa0631e7af0, To entity, Value { r#type: Entity, value: "9c2ef1313a1547e9ac5d0fce07e792a1" } +SetTriple: c5b08b9bbcbd4c30a12a9aa0631e7af0, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: 0c60ccc4ada7488b96f39174c36f6806, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: fe9bdc55496144b8b56030441dcd9e6e, From entity, Value { r#type: Entity, value: "8b0bc6f76cba48158e67fc4654b2250e" } +SetTriple: 0c60ccc4ada7488b96f39174c36f6806, Index, Value { r#type: Text, value: "a0" } +SetTriple: 41d1cfd97046449d9b405e76cc700a4c, To entity, Value { r#type: Entity, value: "edd2eac1632f4a8fa0bdeace2b1a3ea5" } +SetTriple: 7aba5ef67f3746e5aa508afd56e2e370, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: fe9bdc55496144b8b56030441dcd9e6e, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: c8f2a862b03f4983868f0e4c05c0356b, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 9dcb539bb4b54bc9bc31386c3e18d7c7, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9dcb539bb4b54bc9bc31386c3e18d7c7, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 69f985ba75c34254a795cdbe6ae26359, Index, Value { r#type: Text, value: "a0" } +SetTriple: c8f2a862b03f4983868f0e4c05c0356b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: edd2eac1632f4a8fa0bdeace2b1a3ea5, Name, Value { r#type: Text, value: "Related news topics " } +SetTriple: Related news topics , Description, Value { r#type: Text, value: "News topics linked to the current entity. " } +SetTriple: 0365b06d58e7409e9bb94ee1d96590c7, Index, Value { r#type: Text, value: "a0" } +SetTriple: cf9e030e22b9434e9b285120b0b74541, Name, Value { r#type: Text, value: "Sponsors" } +SetTriple: da9b988dad444a999bc913c65a9d925d, Name, Value { r#type: Text, value: "Partners" } +SetTriple: a0633f3218d34ace8d861602949984af, From entity, Value { r#type: Entity, value: "38fea29845a648d6bf253c608dcca3fb" } +SetTriple: a0633f3218d34ace8d861602949984af, To entity, Value { r#type: Entity, value: "03597522e1f2423b882d330cfe89331d" } +SetTriple: a0633f3218d34ace8d861602949984af, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a0633f3218d34ace8d861602949984af, Index, Value { r#type: Text, value: "a0" } +SetTriple: a0633f3218d34ace8d861602949984af, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: b8f3c7ee818942e5a55fac833042919b, From entity, Value { r#type: Entity, value: "cf9e030e22b9434e9b285120b0b74541" } +SetTriple: b8f3c7ee818942e5a55fac833042919b, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: b8f3c7ee818942e5a55fac833042919b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b8f3c7ee818942e5a55fac833042919b, Index, Value { r#type: Text, value: "a0" } +SetTriple: b8f3c7ee818942e5a55fac833042919b, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: f219b6b8e1fd4e32804d6eee82953978, From entity, Value { r#type: Entity, value: "38fea29845a648d6bf253c608dcca3fb" } +SetTriple: f219b6b8e1fd4e32804d6eee82953978, To entity, Value { r#type: Entity, value: "cf9e030e22b9434e9b285120b0b74541" } +SetTriple: f219b6b8e1fd4e32804d6eee82953978, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f219b6b8e1fd4e32804d6eee82953978, Index, Value { r#type: Text, value: "a0" } +SetTriple: f219b6b8e1fd4e32804d6eee82953978, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 9354d2aeac954823b95774722ddc872e, From entity, Value { r#type: Entity, value: "cf9e030e22b9434e9b285120b0b74541" } +SetTriple: 9354d2aeac954823b95774722ddc872e, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 9354d2aeac954823b95774722ddc872e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9354d2aeac954823b95774722ddc872e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9354d2aeac954823b95774722ddc872e, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 011849da33c14f43811f142420d44e32, From entity, Value { r#type: Entity, value: "da9b988dad444a999bc913c65a9d925d" } +SetTriple: 011849da33c14f43811f142420d44e32, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 011849da33c14f43811f142420d44e32, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 011849da33c14f43811f142420d44e32, Index, Value { r#type: Text, value: "a0" } +SetTriple: 011849da33c14f43811f142420d44e32, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 8a5db5832b244622834a46333547cecc, From entity, Value { r#type: Entity, value: "38fea29845a648d6bf253c608dcca3fb" } +SetTriple: 8a5db5832b244622834a46333547cecc, To entity, Value { r#type: Entity, value: "da9b988dad444a999bc913c65a9d925d" } +SetTriple: 8a5db5832b244622834a46333547cecc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8a5db5832b244622834a46333547cecc, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8a5db5832b244622834a46333547cecc, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 0365b06d58e7409e9bb94ee1d96590c7, From entity, Value { r#type: Entity, value: "da9b988dad444a999bc913c65a9d925d" } +SetTriple: 0365b06d58e7409e9bb94ee1d96590c7, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 0365b06d58e7409e9bb94ee1d96590c7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0365b06d58e7409e9bb94ee1d96590c7, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 299f3f955598443d8ff094d68f4b1fe9, From entity, Value { r#type: Entity, value: "724d29589d5443c8af52e3feb24cdf88" } +SetTriple: 299f3f955598443d8ff094d68f4b1fe9, To entity, Value { r#type: Entity, value: "8b0bc6f76cba48158e67fc4654b2250e" } +SetTriple: 299f3f955598443d8ff094d68f4b1fe9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 299f3f955598443d8ff094d68f4b1fe9, Index, Value { r#type: Text, value: "a0" } +SetTriple: 299f3f955598443d8ff094d68f4b1fe9, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 867fc268fd4844b7a63a886f4ebcfdc0, From entity, Value { r#type: Entity, value: "724d29589d5443c8af52e3feb24cdf88" } +SetTriple: 867fc268fd4844b7a63a886f4ebcfdc0, To entity, Value { r#type: Entity, value: "edd2eac1632f4a8fa0bdeace2b1a3ea5" } +SetTriple: 867fc268fd4844b7a63a886f4ebcfdc0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 867fc268fd4844b7a63a886f4ebcfdc0, Index, Value { r#type: Text, value: "a0" } +SetTriple: 867fc268fd4844b7a63a886f4ebcfdc0, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: db9f04334d51434abbcbe2843b080417, From entity, Value { r#type: Entity, value: "724d29589d5443c8af52e3feb24cdf88" } +SetTriple: db9f04334d51434abbcbe2843b080417, To entity, Value { r#type: Entity, value: "0db47aca1ccf4c9fbeb689519ebe9eed" } +SetTriple: db9f04334d51434abbcbe2843b080417, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: db9f04334d51434abbcbe2843b080417, Index, Value { r#type: Text, value: "a0" } +SetTriple: db9f04334d51434abbcbe2843b080417, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 241927b72e9c4477bb33f2633556ef7c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 241927b72e9c4477bb33f2633556ef7c, To entity, Value { r#type: Entity, value: "31e66dcef0db42fcb35ddc83765fd2f9" } +SetTriple: 241927b72e9c4477bb33f2633556ef7c, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: fa7b180ef3f949c38b58995c3b0a2d52, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: fa7b180ef3f949c38b58995c3b0a2d52, Index, Value { r#type: Text, value: "a0" } +SetTriple: fa7b180ef3f949c38b58995c3b0a2d52, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 31e66dcef0db42fcb35ddc83765fd2f9, Name, Value { r#type: Text, value: "Read more about this news event" } +SetTriple: 9ea7972b288e4167887198f192431f68, Name, Value { r#type: Text, value: "Summary" } +SetTriple: fa7b180ef3f949c38b58995c3b0a2d52, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: c23b2e5fe6d04eaab9fbd1bf6ff474cf, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: c23b2e5fe6d04eaab9fbd1bf6ff474cf, Index, Value { r#type: Text, value: "a0" } +SetTriple: eecb2cf61c524a4ab17825f128f46e1c, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: c23b2e5fe6d04eaab9fbd1bf6ff474cf, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: c23b2e5fe6d04eaab9fbd1bf6ff474cf, From entity, Value { r#type: Entity, value: "31e66dcef0db42fcb35ddc83765fd2f9" } +SetTriple: eecb2cf61c524a4ab17825f128f46e1c, From entity, Value { r#type: Entity, value: "9ea7972b288e4167887198f192431f68" } +SetTriple: c23b2e5fe6d04eaab9fbd1bf6ff474cf, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: eecb2cf61c524a4ab17825f128f46e1c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: eecb2cf61c524a4ab17825f128f46e1c, Index, Value { r#type: Text, value: "a0" } +SetTriple: eecb2cf61c524a4ab17825f128f46e1c, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 0d52524297534bee949b9fd7e7914086, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: 0d52524297534bee949b9fd7e7914086, To entity, Value { r#type: Entity, value: "9ea7972b288e4167887198f192431f68" } +SetTriple: 0d52524297534bee949b9fd7e7914086, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0d52524297534bee949b9fd7e7914086, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0d52524297534bee949b9fd7e7914086, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: fa7b180ef3f949c38b58995c3b0a2d52, From entity, Value { r#type: Entity, value: "31e66dcef0db42fcb35ddc83765fd2f9" } +SetTriple: a99bd04a5c3f482b93e0507fe73490f5, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: a99bd04a5c3f482b93e0507fe73490f5, Index, Value { r#type: Text, value: "a0" } +SetTriple: a99bd04a5c3f482b93e0507fe73490f5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a99bd04a5c3f482b93e0507fe73490f5, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: a99bd04a5c3f482b93e0507fe73490f5, From entity, Value { r#type: Entity, value: "9ea7972b288e4167887198f192431f68" } +SetTriple: 241927b72e9c4477bb33f2633556ef7c, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 241927b72e9c4477bb33f2633556ef7c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 074e22e6845244b7a254b7fb232d2fb4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f07099d0b32c42119122b690c59cf048, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: f07099d0b32c42119122b690c59cf048, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f07099d0b32c42119122b690c59cf048, Index, Value { r#type: Text, value: "a1" } +SetTriple: f07099d0b32c42119122b690c59cf048, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: f07099d0b32c42119122b690c59cf048, To entity, Value { r#type: Entity, value: "fc1740722e7445acac59964282deddb5" } +SetTriple: 4e3d004f4d73486487630d56712cbc6a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4e3d004f4d73486487630d56712cbc6a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4e3d004f4d73486487630d56712cbc6a, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 8e439c4d51534fbcb9dd5c75620bd765, From entity, Value { r#type: Entity, value: "ad0c9680bf2047b0a0d8357ff79287e1" } +SetTriple: 8e439c4d51534fbcb9dd5c75620bd765, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 8e439c4d51534fbcb9dd5c75620bd765, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8e439c4d51534fbcb9dd5c75620bd765, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8e439c4d51534fbcb9dd5c75620bd765, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 6de09b7adf8343ffa19bf4f1ad7d2e51, From entity, Value { r#type: Entity, value: "fc1740722e7445acac59964282deddb5" } +SetTriple: 6de09b7adf8343ffa19bf4f1ad7d2e51, To entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: 6de09b7adf8343ffa19bf4f1ad7d2e51, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6de09b7adf8343ffa19bf4f1ad7d2e51, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6de09b7adf8343ffa19bf4f1ad7d2e51, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 6d297bf5137f41bfaec2c15c7716be50, From entity, Value { r#type: Entity, value: "fc1740722e7445acac59964282deddb5" } +SetTriple: 6d297bf5137f41bfaec2c15c7716be50, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: 6d297bf5137f41bfaec2c15c7716be50, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6d297bf5137f41bfaec2c15c7716be50, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6d297bf5137f41bfaec2c15c7716be50, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 0b8edbce003d4162ab41dee67f6f430e, From entity, Value { r#type: Entity, value: "bf5946e63df94e1ebd0502725fa7be32" } +SetTriple: 0b8edbce003d4162ab41dee67f6f430e, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 0b8edbce003d4162ab41dee67f6f430e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0b8edbce003d4162ab41dee67f6f430e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0b8edbce003d4162ab41dee67f6f430e, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 94ef85e4942b47bc8807caf3cf342959, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: 94ef85e4942b47bc8807caf3cf342959, To entity, Value { r#type: Entity, value: "bf5946e63df94e1ebd0502725fa7be32" } +SetTriple: 94ef85e4942b47bc8807caf3cf342959, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 94ef85e4942b47bc8807caf3cf342959, Index, Value { r#type: Text, value: "a0" } +SetTriple: 94ef85e4942b47bc8807caf3cf342959, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 074e22e6845244b7a254b7fb232d2fb4, From entity, Value { r#type: Entity, value: "bf5946e63df94e1ebd0502725fa7be32" } +SetTriple: 074e22e6845244b7a254b7fb232d2fb4, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 074e22e6845244b7a254b7fb232d2fb4, Index, Value { r#type: Text, value: "a0" } +SetTriple: 074e22e6845244b7a254b7fb232d2fb4, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: fc1740722e7445acac59964282deddb5, Markdown Content, Value { r#type: Text, value: "- **Topics**, topics connected to the news event. For instance, in the context of US Politics, the news event could be linked to a politician.\n\n- **Cover,** a banner image with a 3:1 ratio (exact cover size is 1192px by 320px).\n\n- **Location**, the place where the news event takes or took place.\n\n- **Date**, the date when the news event happened.\n\n- **Sources**, encompass press articles, press releases, social media posts, and relevant documents such as transcripts or statements, all of which provide information and facilitate comprehension of current events.\n\n- **Claims about**, to complete, comment, question or refute the news event.\n\n- **Claims from**, key insights derived from the news event, highlighting the pivotal aspects or conclusions.\n\n- **Relevant questions**, the **Five W's and H**: Who? What? When? Where? Why? How?\" is a checklist used in journalism to guide research and interviews and to raise important ethical questions, such as “How do you know that?\"\n\n- **Related entities:** any entities that are interconnected with the current entity.\n\n- **Tags**, help in filtering tables and sorting the entity\n\n\n" } +SetTriple: ad0c9680bf2047b0a0d8357ff79287e1, Name, Value { r#type: Text, value: "Broader news topics" } +SetTriple: Read more about this news event, Name, Value { r#type: Text, value: "Further reading" } +SetTriple: Further reading, Description, Value { r#type: Text, value: "Exploring additional content to deepen understanding, broaden perspectives, and enhance knowledge about a specific event or topic." } +SetTriple: fc1740722e7445acac59964282deddb5, Name, Value { r#type: Text, value: "Topics, topics conne" } +SetTriple: bf5946e63df94e1ebd0502725fa7be32, Name, Value { r#type: Text, value: "Primary topic" } +SetTriple: Primary topic, Description, Value { r#type: Text, value: "Acts as a homepage, provide the central, foundational topic from which all other related topics prominently branch out." } +SetTriple: Broader news topics, Description, Value { r#type: Text, value: "Wide-ranging classifications organizing a diverse array of news topics." } +SetTriple: 065acda3004144cb87be65f5645ab937, From entity, Value { r#type: Entity, value: "ad0c9680bf2047b0a0d8357ff79287e1" } +SetTriple: 065acda3004144cb87be65f5645ab937, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 065acda3004144cb87be65f5645ab937, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 065acda3004144cb87be65f5645ab937, Index, Value { r#type: Text, value: "a0" } +SetTriple: 065acda3004144cb87be65f5645ab937, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 4e3d004f4d73486487630d56712cbc6a, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: 4e3d004f4d73486487630d56712cbc6a, To entity, Value { r#type: Entity, value: "ad0c9680bf2047b0a0d8357ff79287e1" } +SetTriple: 6f74caba21a04aa4bb588c057092113e, From entity, Value { r#type: Entity, value: "38fea29845a648d6bf253c608dcca3fb" } +SetTriple: 8cc1c9a8b69b42c3b7bb821bfd250293, Name, Value { r#type: Text, value: "Main program events" } +SetTriple: 000ac5b0cfd543358c6a12fcf036b87e, Name, Value { r#type: Text, value: "Side events" } +SetTriple: 6f74caba21a04aa4bb588c057092113e, To entity, Value { r#type: Entity, value: "000ac5b0cfd543358c6a12fcf036b87e" } +SetTriple: 6f74caba21a04aa4bb588c057092113e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6f74caba21a04aa4bb588c057092113e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6f74caba21a04aa4bb588c057092113e, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 3872094d573c4e58a5aeea6abdd8eb95, From entity, Value { r#type: Entity, value: "000ac5b0cfd543358c6a12fcf036b87e" } +SetTriple: 3872094d573c4e58a5aeea6abdd8eb95, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 3872094d573c4e58a5aeea6abdd8eb95, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3872094d573c4e58a5aeea6abdd8eb95, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3872094d573c4e58a5aeea6abdd8eb95, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 613e71e2e4eb4a9b9b3689f93ebd6527, From entity, Value { r#type: Entity, value: "8cc1c9a8b69b42c3b7bb821bfd250293" } +SetTriple: 613e71e2e4eb4a9b9b3689f93ebd6527, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 613e71e2e4eb4a9b9b3689f93ebd6527, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 613e71e2e4eb4a9b9b3689f93ebd6527, Index, Value { r#type: Text, value: "a0" } +SetTriple: 613e71e2e4eb4a9b9b3689f93ebd6527, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 31f6d2a07538412a8412044ac8dcbe70, From entity, Value { r#type: Entity, value: "38fea29845a648d6bf253c608dcca3fb" } +SetTriple: 31f6d2a07538412a8412044ac8dcbe70, To entity, Value { r#type: Entity, value: "8cc1c9a8b69b42c3b7bb821bfd250293" } +SetTriple: 31f6d2a07538412a8412044ac8dcbe70, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 31f6d2a07538412a8412044ac8dcbe70, Index, Value { r#type: Text, value: "a0" } +SetTriple: 31f6d2a07538412a8412044ac8dcbe70, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 3071f7047a124b81a9c028f1600be1b0, To entity, Value { r#type: Entity, value: "4e5403e9ebf04291b3dadb84f8efab77" } +SetTriple: 3731ee3e35764060b970cc9e5748cf42, From entity, Value { r#type: Entity, value: "59e14010cdcf41609953b8e09edca8b7" } +SetTriple: 3731ee3e35764060b970cc9e5748cf42, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4e5403e9ebf04291b3dadb84f8efab77, Name, Value { r#type: Text, value: "Event badges" } +SetTriple: 59e14010cdcf41609953b8e09edca8b7, Name, Value { r#type: Text, value: "Event badge" } +SetTriple: 3731ee3e35764060b970cc9e5748cf42, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 3071f7047a124b81a9c028f1600be1b0, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 3071f7047a124b81a9c028f1600be1b0, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3731ee3e35764060b970cc9e5748cf42, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9b433d6abcf5486a982cbcfa023c8864, From entity, Value { r#type: Entity, value: "4e5403e9ebf04291b3dadb84f8efab77" } +SetTriple: 9b433d6abcf5486a982cbcfa023c8864, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 9b433d6abcf5486a982cbcfa023c8864, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9b433d6abcf5486a982cbcfa023c8864, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9b433d6abcf5486a982cbcfa023c8864, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: af456ca811b8406b965169d4737c56bc, From entity, Value { r#type: Entity, value: "cb9d261d456b4eaf87e51e9faa441867" } +SetTriple: af456ca811b8406b965169d4737c56bc, To entity, Value { r#type: Entity, value: "4e5403e9ebf04291b3dadb84f8efab77" } +SetTriple: af456ca811b8406b965169d4737c56bc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: af456ca811b8406b965169d4737c56bc, Index, Value { r#type: Text, value: "a0" } +SetTriple: af456ca811b8406b965169d4737c56bc, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 3731ee3e35764060b970cc9e5748cf42, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 3071f7047a124b81a9c028f1600be1b0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3071f7047a124b81a9c028f1600be1b0, From entity, Value { r#type: Entity, value: "912c4d9504fc4d3cbc84382b3a1904d1" } +SetTriple: 69379156b00a48b29566e1daed2a3a2f, From entity, Value { r#type: Entity, value: "177b156d617341d4957d00be86103df6" } +SetTriple: 126c0a3ba22b4baeb8b3e681e8af9cbe, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 126c0a3ba22b4baeb8b3e681e8af9cbe, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 126c0a3ba22b4baeb8b3e681e8af9cbe, Index, Value { r#type: Text, value: "a0" } +SetTriple: 126c0a3ba22b4baeb8b3e681e8af9cbe, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 7f0bef00d5104634857373d18c247fb1, From entity, Value { r#type: Entity, value: "6e0a2f9f07d9425da9238ee38a5d1cf7" } +SetTriple: 7f0bef00d5104634857373d18c247fb1, To entity, Value { r#type: Entity, value: "50ebb186321e476fa02f7e8d74d4f33e" } +SetTriple: 7f0bef00d5104634857373d18c247fb1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7f0bef00d5104634857373d18c247fb1, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7f0bef00d5104634857373d18c247fb1, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: cf4ae616c71b410c9feffe68b78b5bd8, From entity, Value { r#type: Entity, value: "1e751581955a4beab57776c9d79c33ec" } +SetTriple: cf4ae616c71b410c9feffe68b78b5bd8, To entity, Value { r#type: Entity, value: "50ebb186321e476fa02f7e8d74d4f33e" } +SetTriple: cf4ae616c71b410c9feffe68b78b5bd8, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: cf4ae616c71b410c9feffe68b78b5bd8, Index, Value { r#type: Text, value: "a0" } +SetTriple: cf4ae616c71b410c9feffe68b78b5bd8, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 31200910d55a47ef8d9dbb6b5a4db89f, From entity, Value { r#type: Entity, value: "3d0b19e0313843479687a351223efcc3" } +SetTriple: 31200910d55a47ef8d9dbb6b5a4db89f, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 31200910d55a47ef8d9dbb6b5a4db89f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 31200910d55a47ef8d9dbb6b5a4db89f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 31200910d55a47ef8d9dbb6b5a4db89f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 53a8e7250235420abff87680829a204d, From entity, Value { r#type: Entity, value: "e15d0d78982f4195af8dd509ac8e2c2e" } +SetTriple: 53a8e7250235420abff87680829a204d, To entity, Value { r#type: Entity, value: "3d0b19e0313843479687a351223efcc3" } +SetTriple: 53a8e7250235420abff87680829a204d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 53a8e7250235420abff87680829a204d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 53a8e7250235420abff87680829a204d, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: fa59708e7ba04543b0b926a23e5ecf39, From entity, Value { r#type: Entity, value: "d4f217f19b334aa486930f3812f56ff6" } +SetTriple: fa59708e7ba04543b0b926a23e5ecf39, To entity, Value { r#type: Entity, value: "3d0b19e0313843479687a351223efcc3" } +SetTriple: fa59708e7ba04543b0b926a23e5ecf39, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: fa59708e7ba04543b0b926a23e5ecf39, Index, Value { r#type: Text, value: "a0" } +SetTriple: fa59708e7ba04543b0b926a23e5ecf39, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: e15d0d78982f4195af8dd509ac8e2c2e, Name, Value { r#type: Text, value: "In-person attendance" } +SetTriple: d4f217f19b334aa486930f3812f56ff6, Name, Value { r#type: Text, value: "Online attendance" } +SetTriple: Venue, Name, Value { r#type: Text, value: "Venues" } +SetTriple: 493dda198afa4267a1ff5be6738ce090, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 493dda198afa4267a1ff5be6738ce090, Index, Value { r#type: Text, value: "a0" } +SetTriple: 493dda198afa4267a1ff5be6738ce090, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 493dda198afa4267a1ff5be6738ce090, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 493dda198afa4267a1ff5be6738ce090, From entity, Value { r#type: Entity, value: "349127cd63f4414685583c0d0812c2b8" } +SetTriple: dc0377c9b4b243e0bf94a5fca0a1e7de, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: dc0377c9b4b243e0bf94a5fca0a1e7de, Index, Value { r#type: Text, value: "a0" } +SetTriple: dc0377c9b4b243e0bf94a5fca0a1e7de, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: dc0377c9b4b243e0bf94a5fca0a1e7de, To entity, Value { r#type: Entity, value: "9e98d3c2c71343fe97ba0eb0869c1f9c" } +SetTriple: dc0377c9b4b243e0bf94a5fca0a1e7de, From entity, Value { r#type: Entity, value: "38fea29845a648d6bf253c608dcca3fb" } +SetTriple: 4aee7e2c6bc94b41ab8e8d2c63054778, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 4aee7e2c6bc94b41ab8e8d2c63054778, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4aee7e2c6bc94b41ab8e8d2c63054778, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4aee7e2c6bc94b41ab8e8d2c63054778, To entity, Value { r#type: Entity, value: "349127cd63f4414685583c0d0812c2b8" } +SetTriple: 4aee7e2c6bc94b41ab8e8d2c63054778, From entity, Value { r#type: Entity, value: "38fea29845a648d6bf253c608dcca3fb" } +SetTriple: ddf7184158604b7f921e5bf21a922560, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: ddf7184158604b7f921e5bf21a922560, Index, Value { r#type: Text, value: "a0" } +SetTriple: ddf7184158604b7f921e5bf21a922560, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ddf7184158604b7f921e5bf21a922560, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: ddf7184158604b7f921e5bf21a922560, From entity, Value { r#type: Entity, value: "349127cd63f4414685583c0d0812c2b8" } +SetTriple: d80da7ed52224ff6ab64359864a4caea, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: d80da7ed52224ff6ab64359864a4caea, Index, Value { r#type: Text, value: "a0" } +SetTriple: d80da7ed52224ff6ab64359864a4caea, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d80da7ed52224ff6ab64359864a4caea, To entity, Value { r#type: Entity, value: "62aa1a055b264271811b567c98b48ab3" } +SetTriple: d80da7ed52224ff6ab64359864a4caea, From entity, Value { r#type: Entity, value: "38fea29845a648d6bf253c608dcca3fb" } +SetTriple: 61e272cfa623497fbdcc1744d8c20e5e, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 61e272cfa623497fbdcc1744d8c20e5e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 61e272cfa623497fbdcc1744d8c20e5e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 61e272cfa623497fbdcc1744d8c20e5e, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 61e272cfa623497fbdcc1744d8c20e5e, From entity, Value { r#type: Entity, value: "62aa1a055b264271811b567c98b48ab3" } +SetTriple: 0f843dff0c2b4e63b4186fa9f8d8b3fd, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 0f843dff0c2b4e63b4186fa9f8d8b3fd, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0f843dff0c2b4e63b4186fa9f8d8b3fd, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0f843dff0c2b4e63b4186fa9f8d8b3fd, To entity, Value { r#type: Entity, value: "fc68ee55a7754819a97ba1e18ad2301a" } +SetTriple: 0f843dff0c2b4e63b4186fa9f8d8b3fd, From entity, Value { r#type: Entity, value: "38fea29845a648d6bf253c608dcca3fb" } +SetTriple: 07f0770401294e7c94ee6d37f9e011f0, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 07f0770401294e7c94ee6d37f9e011f0, Index, Value { r#type: Text, value: "a0" } +SetTriple: 07f0770401294e7c94ee6d37f9e011f0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 07f0770401294e7c94ee6d37f9e011f0, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 07f0770401294e7c94ee6d37f9e011f0, From entity, Value { r#type: Entity, value: "fc68ee55a7754819a97ba1e18ad2301a" } +SetTriple: 90bdd3c166cd4de586d664f382f690b9, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 90bdd3c166cd4de586d664f382f690b9, Index, Value { r#type: Text, value: "a0" } +SetTriple: 90bdd3c166cd4de586d664f382f690b9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 90bdd3c166cd4de586d664f382f690b9, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 90bdd3c166cd4de586d664f382f690b9, From entity, Value { r#type: Entity, value: "8cc1c9a8b69b42c3b7bb821bfd250293" } +SetTriple: b31b800b0561439c88c3ca73ea396279, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: b31b800b0561439c88c3ca73ea396279, Index, Value { r#type: Text, value: "a0" } +SetTriple: b31b800b0561439c88c3ca73ea396279, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b31b800b0561439c88c3ca73ea396279, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: b31b800b0561439c88c3ca73ea396279, From entity, Value { r#type: Entity, value: "177b156d617341d4957d00be86103df6" } +SetTriple: 1f6341c930744d62b9566c6856e85cba, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 1f6341c930744d62b9566c6856e85cba, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1f6341c930744d62b9566c6856e85cba, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1f6341c930744d62b9566c6856e85cba, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 1f6341c930744d62b9566c6856e85cba, From entity, Value { r#type: Entity, value: "c15de18f79ad46308326adf8a4285051" } +SetTriple: fcc5e1eb90684fa096e90fb8e08b01db, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: fcc5e1eb90684fa096e90fb8e08b01db, Index, Value { r#type: Text, value: "a0" } +SetTriple: fcc5e1eb90684fa096e90fb8e08b01db, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: fcc5e1eb90684fa096e90fb8e08b01db, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: fcc5e1eb90684fa096e90fb8e08b01db, From entity, Value { r#type: Entity, value: "c0d900e1dfb4476185017002ca4d6e50" } +SetTriple: 21cac27e60904d2fb7c1e6f25ba8db77, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 21cac27e60904d2fb7c1e6f25ba8db77, Index, Value { r#type: Text, value: "a0" } +SetTriple: 21cac27e60904d2fb7c1e6f25ba8db77, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 21cac27e60904d2fb7c1e6f25ba8db77, To entity, Value { r#type: Entity, value: "c0d900e1dfb4476185017002ca4d6e50" } +SetTriple: 21cac27e60904d2fb7c1e6f25ba8db77, From entity, Value { r#type: Entity, value: "38fea29845a648d6bf253c608dcca3fb" } +SetTriple: 76b6bdca3a224d999fd711ad4f1be46d, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 76b6bdca3a224d999fd711ad4f1be46d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 76b6bdca3a224d999fd711ad4f1be46d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 76b6bdca3a224d999fd711ad4f1be46d, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 76b6bdca3a224d999fd711ad4f1be46d, From entity, Value { r#type: Entity, value: "c0d900e1dfb4476185017002ca4d6e50" } +SetTriple: 610e03cd2a71451885ae1106569cf5f7, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 610e03cd2a71451885ae1106569cf5f7, Index, Value { r#type: Text, value: "a0" } +SetTriple: b04e6f96c9d042db8d13cfbcee8134c8, From entity, Value { r#type: Entity, value: "38fea29845a648d6bf253c608dcca3fb" } +SetTriple: b04e6f96c9d042db8d13cfbcee8134c8, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: b04e6f96c9d042db8d13cfbcee8134c8, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b04e6f96c9d042db8d13cfbcee8134c8, Index, Value { r#type: Text, value: "a0" } +SetTriple: b04e6f96c9d042db8d13cfbcee8134c8, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: d8ce068d3b18442a8fc2c6d91c21d749, From entity, Value { r#type: Entity, value: "38fea29845a648d6bf253c608dcca3fb" } +SetTriple: d8ce068d3b18442a8fc2c6d91c21d749, To entity, Value { r#type: Entity, value: "71a5569e688e4e0f8eb0d8c361211e7c" } +SetTriple: d8ce068d3b18442a8fc2c6d91c21d749, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d8ce068d3b18442a8fc2c6d91c21d749, Index, Value { r#type: Text, value: "a0" } +SetTriple: d8ce068d3b18442a8fc2c6d91c21d749, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 126c0a3ba22b4baeb8b3e681e8af9cbe, From entity, Value { r#type: Entity, value: "50ebb186321e476fa02f7e8d74d4f33e" } +SetTriple: 69379156b00a48b29566e1daed2a3a2f, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 69379156b00a48b29566e1daed2a3a2f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 69379156b00a48b29566e1daed2a3a2f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 69379156b00a48b29566e1daed2a3a2f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 58c6b592b40f4168accd66f9dd3eaea3, From entity, Value { r#type: Entity, value: "38fea29845a648d6bf253c608dcca3fb" } +SetTriple: 58c6b592b40f4168accd66f9dd3eaea3, To entity, Value { r#type: Entity, value: "177b156d617341d4957d00be86103df6" } +SetTriple: 58c6b592b40f4168accd66f9dd3eaea3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 58c6b592b40f4168accd66f9dd3eaea3, Index, Value { r#type: Text, value: "a0" } +SetTriple: 58c6b592b40f4168accd66f9dd3eaea3, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 5679a5d2846e4ad78b146aa503af2c99, From entity, Value { r#type: Entity, value: "c15de18f79ad46308326adf8a4285051" } +SetTriple: 5679a5d2846e4ad78b146aa503af2c99, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 5679a5d2846e4ad78b146aa503af2c99, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5679a5d2846e4ad78b146aa503af2c99, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5679a5d2846e4ad78b146aa503af2c99, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 610e03cd2a71451885ae1106569cf5f7, From entity, Value { r#type: Entity, value: "38fea29845a648d6bf253c608dcca3fb" } +SetTriple: 610e03cd2a71451885ae1106569cf5f7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 610e03cd2a71451885ae1106569cf5f7, To entity, Value { r#type: Entity, value: "c15de18f79ad46308326adf8a4285051" } +SetTriple: a1d5337fca5d4281a1e1e4c290b096d4, From entity, Value { r#type: Entity, value: "62aa1a055b264271811b567c98b48ab3" } +SetTriple: a1d5337fca5d4281a1e1e4c290b096d4, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: a1d5337fca5d4281a1e1e4c290b096d4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a1d5337fca5d4281a1e1e4c290b096d4, Index, Value { r#type: Text, value: "a0" } +SetTriple: a1d5337fca5d4281a1e1e4c290b096d4, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 3d0b19e0313843479687a351223efcc3, Name, Value { r#type: Text, value: "Attendance type" } +SetTriple: 1e751581955a4beab57776c9d79c33ec, Name, Value { r#type: Text, value: "Paid" } +SetTriple: 6e0a2f9f07d9425da9238ee38a5d1cf7, Name, Value { r#type: Text, value: "Free" } +SetTriple: 50ebb186321e476fa02f7e8d74d4f33e, Name, Value { r#type: Text, value: "Pricing type" } +SetTriple: 349127cd63f4414685583c0d0812c2b8, Name, Value { r#type: Text, value: "Cities" } +SetTriple: 62aa1a055b264271811b567c98b48ab3, Name, Value { r#type: Text, value: "States " } +SetTriple: fc68ee55a7754819a97ba1e18ad2301a, Name, Value { r#type: Text, value: "Countries" } +SetTriple: c0d900e1dfb4476185017002ca4d6e50, Name, Value { r#type: Text, value: "Continents" } +SetTriple: c15de18f79ad46308326adf8a4285051, Name, Value { r#type: Text, value: "Pricing types" } +SetTriple: 177b156d617341d4957d00be86103df6, Name, Value { r#type: Text, value: "Attendance types" } +SetTriple: 05a34ddf822c41e2b5c979c9c8b1f541, From entity, Value { r#type: Entity, value: "fc68ee55a7754819a97ba1e18ad2301a" } +SetTriple: 05a34ddf822c41e2b5c979c9c8b1f541, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 05a34ddf822c41e2b5c979c9c8b1f541, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 05a34ddf822c41e2b5c979c9c8b1f541, Index, Value { r#type: Text, value: "a0" } +SetTriple: 05a34ddf822c41e2b5c979c9c8b1f541, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 3e71dd5f499242b588bb586e01dc992b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3e71dd5f499242b588bb586e01dc992b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3e71dd5f499242b588bb586e01dc992b, To entity, Value { r#type: Entity, value: "e6184c8e261d46df9c4359fccde3395c" } +SetTriple: 3e71dd5f499242b588bb586e01dc992b, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 3e71dd5f499242b588bb586e01dc992b, From entity, Value { r#type: Entity, value: "dab75eacc45b48ee84e0429e17e9d876" } +SetTriple: Document, Description, Value { r#type: Text, value: "A piece of written, printed, or electronic matter that provides information or serves as an official record." } +SetTriple: 4334c54bdc424836aa03e834b5db9e92, To entity, Value { r#type: Entity, value: "71a5569e688e4e0f8eb0d8c361211e7c" } +SetTriple: 4334c54bdc424836aa03e834b5db9e92, From entity, Value { r#type: Entity, value: "79e43124950544cb93d67b93ddd2fd3a" } +SetTriple: 6cf61384a8a7487089d61dda0dcf9132, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6cf61384a8a7487089d61dda0dcf9132, To entity, Value { r#type: Entity, value: "f724b80589e1424bb149acff9ecfd0f7" } +SetTriple: 6cf61384a8a7487089d61dda0dcf9132, From entity, Value { r#type: Entity, value: "79e43124950544cb93d67b93ddd2fd3a" } +SetTriple: 4334c54bdc424836aa03e834b5db9e92, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 4334c54bdc424836aa03e834b5db9e92, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4334c54bdc424836aa03e834b5db9e92, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6cf61384a8a7487089d61dda0dcf9132, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 6cf61384a8a7487089d61dda0dcf9132, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6b0d841ee537473fbc78886015f127ee, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 6b0d841ee537473fbc78886015f127ee, From entity, Value { r#type: Entity, value: "4e5403e9ebf04291b3dadb84f8efab77" } +SetTriple: 6b0d841ee537473fbc78886015f127ee, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 6b0d841ee537473fbc78886015f127ee, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6b0d841ee537473fbc78886015f127ee, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b7f92bdbf75f4a088a32c2acf4ce43f5, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: b7f92bdbf75f4a088a32c2acf4ce43f5, From entity, Value { r#type: Entity, value: "4e5403e9ebf04291b3dadb84f8efab77" } +SetTriple: b7f92bdbf75f4a088a32c2acf4ce43f5, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: b7f92bdbf75f4a088a32c2acf4ce43f5, Index, Value { r#type: Text, value: "a0" } +SetTriple: b7f92bdbf75f4a088a32c2acf4ce43f5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6e5ce7353cb148758bef55a5043f5c38, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6e5ce7353cb148758bef55a5043f5c38, From entity, Value { r#type: Entity, value: "dab75eacc45b48ee84e0429e17e9d876" } +SetTriple: 6e5ce7353cb148758bef55a5043f5c38, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 6e5ce7353cb148758bef55a5043f5c38, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6e5ce7353cb148758bef55a5043f5c38, To entity, Value { r#type: Entity, value: "feb48f93d5e94ad58567ea8353998e52" } +SetTriple: 8de1e69861b847539d9f3cc16fa7790e, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: deea36a0f4d94d4cadfdca78a13abc1e, Index, Value { r#type: Text, value: "a1" } +SetTriple: bd9ec734ade0498fa2fa8f7c79ecee75, Index, Value { r#type: Text, value: "a0" } +SetTriple: bd9ec734ade0498fa2fa8f7c79ecee75, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bd9ec734ade0498fa2fa8f7c79ecee75, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 078ef207d555405ba7f6f74fd6393f91, Index, Value { r#type: Text, value: "a1" } +SetTriple: 078ef207d555405ba7f6f74fd6393f91, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 078ef207d555405ba7f6f74fd6393f91, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: c2e24485229249dea8d0de8302ed3816, Index, Value { r#type: Text, value: "a2" } +SetTriple: c2e24485229249dea8d0de8302ed3816, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c2e24485229249dea8d0de8302ed3816, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: e3931dc3073b4a56b914ebca0f823d23, Index, Value { r#type: Text, value: "a3" } +SetTriple: e3931dc3073b4a56b914ebca0f823d23, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e3931dc3073b4a56b914ebca0f823d23, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 6ce2043d35ed493f9b034df852f3712e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6ce2043d35ed493f9b034df852f3712e, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 35d71a8b0e1c4a27b0416874fa864b75, Index, Value { r#type: Text, value: "a5" } +SetTriple: 35d71a8b0e1c4a27b0416874fa864b75, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 35d71a8b0e1c4a27b0416874fa864b75, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 204b2ab172394b07a18b60a72a2aafbc, Index, Value { r#type: Text, value: "a6" } +SetTriple: 204b2ab172394b07a18b60a72a2aafbc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 204b2ab172394b07a18b60a72a2aafbc, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 95cfb4221a444997b52e7d5cc6ee0eeb, Index, Value { r#type: Text, value: "a7" } +SetTriple: 95cfb4221a444997b52e7d5cc6ee0eeb, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 95cfb4221a444997b52e7d5cc6ee0eeb, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 025d776d4340420f8dde2649f178d470, Index, Value { r#type: Text, value: "a8" } +SetTriple: 025d776d4340420f8dde2649f178d470, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 025d776d4340420f8dde2649f178d470, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: fc8bbfd33d964762b1dbd460199877fc, Index, Value { r#type: Text, value: "a9" } +SetTriple: fc8bbfd33d964762b1dbd460199877fc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: fc8bbfd33d964762b1dbd460199877fc, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 9b21a65314364313a6c2bb978f4da14e, Index, Value { r#type: Text, value: "aA" } +SetTriple: 9b21a65314364313a6c2bb978f4da14e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9b21a65314364313a6c2bb978f4da14e, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 136a5a0924f24135b9d12a8599b4f18d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 65ec0026b442472fb6b2de436f9c4545, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1f60d148ecb0421885bbd2ea7f5d9fa1, Index, Value { r#type: Text, value: "a0" } +SetTriple: News event, Description, Value { r#type: Text, value: "A news story is a factual and timely report about a recent event or development, designed to inform the public. It typically covers who, what, when, where, why, and how, presenting information clearly and objectively." } +SetTriple: 08be6f595e5f48ba9e8efe39a6fd1a63, Description, Value { r#type: Text, value: "A news topic is a broad subject or category that groups related news stories. It includes various themes, provides a framework to organize and discuss events, guides readers through interconnected information, and always ends with the word \"news.\"" } +SetTriple: c998b9cc8bfd4ab9b20dd6d0a8eedb33, Description, Value { r#type: Text, value: "A claim about something significant that happened. This type is used together with a claim type. " } +SetTriple: f07775d7794b42e590c65d9094593a6a, Markdown Content, Value { r#type: Text, value: "Policy and Regulation News\n\n" } +SetTriple: dbaf9d0ace014157a3ef598e518d13cd, Markdown Content, Value { r#type: Text, value: "Crypto politics News\n\n" } +SetTriple: c02fc3de9f8844aaaa5d9239def1722b, Markdown Content, Value { r#type: Text, value: "Sutopics: Crypto regulations News, Crypto legislations News, Politians and crypto News, crypto election\n\n" } +SetTriple: 1a7bdc80d0674461965ebe7250001b10, Markdown Content, Value { r#type: Text, value: "Politians and crypto\n\n" } +SetTriple: 88526f0061a74e22ae507b186dfa2567, Markdown Content, Value { r#type: Text, value: "Politians that oppose crypto News, Polititians that support crypto News, Politian votes on crypto News\n\n" } +SetTriple: df095a57608145d0a183cec556ec4460, Markdown Content, Value { r#type: Text, value: "Politians that oppose crypto\n\n" } +SetTriple: 368f0f782770430ea2c34999da0257cb, Markdown Content, Value { r#type: Text, value: "Subtopics: Crypto regulation, Crypto legistlation, politians and crypto, crypto election, Policy and regulation news.\n\n" } +SetTriple: 95cfb4221a444997b52e7d5cc6ee0eeb, From entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: 95cfb4221a444997b52e7d5cc6ee0eeb, To entity, Value { r#type: Entity, value: "1a7bdc80d0674461965ebe7250001b10" } +SetTriple: 025d776d4340420f8dde2649f178d470, From entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: 025d776d4340420f8dde2649f178d470, To entity, Value { r#type: Entity, value: "88526f0061a74e22ae507b186dfa2567" } +SetTriple: fc8bbfd33d964762b1dbd460199877fc, From entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: fc8bbfd33d964762b1dbd460199877fc, To entity, Value { r#type: Entity, value: "df095a57608145d0a183cec556ec4460" } +SetTriple: 9b21a65314364313a6c2bb978f4da14e, From entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: 9b21a65314364313a6c2bb978f4da14e, To entity, Value { r#type: Entity, value: "7b415470b8f849d7b6d15050e54ff3cf" } +SetTriple: b4722ee6ab59445095682d7fbf0259d4, Markdown Content, Value { r#type: Text, value: "Crypto for the planet News\n\n" } +SetTriple: 198c3b17f859473bb2ebd4cf0435b626, Markdown Content, Value { r#type: Text, value: "Crypto politics\n\n" } +SetTriple: 7b415470b8f849d7b6d15050e54ff3cf, Markdown Content, Value { r#type: Text, value: "Republican politians News that support crypto News, Democrat politians that support crypto\n\n" } +SetTriple: 27e5a4d9c8f94a70a2e755289b4e95eb, Markdown Content, Value { r#type: Text, value: "Policy and regulation\n\n" } +SetTriple: c2e24485229249dea8d0de8302ed3816, From entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: c2e24485229249dea8d0de8302ed3816, To entity, Value { r#type: Entity, value: "b4722ee6ab59445095682d7fbf0259d4" } +SetTriple: e3931dc3073b4a56b914ebca0f823d23, From entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: e3931dc3073b4a56b914ebca0f823d23, To entity, Value { r#type: Entity, value: "27e5a4d9c8f94a70a2e755289b4e95eb" } +SetTriple: 6ce2043d35ed493f9b034df852f3712e, From entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: 6ce2043d35ed493f9b034df852f3712e, To entity, Value { r#type: Entity, value: "368f0f782770430ea2c34999da0257cb" } +SetTriple: 6ce2043d35ed493f9b034df852f3712e, Index, Value { r#type: Text, value: "a4" } +SetTriple: 35d71a8b0e1c4a27b0416874fa864b75, From entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: 35d71a8b0e1c4a27b0416874fa864b75, To entity, Value { r#type: Entity, value: "198c3b17f859473bb2ebd4cf0435b626" } +SetTriple: 204b2ab172394b07a18b60a72a2aafbc, From entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: 204b2ab172394b07a18b60a72a2aafbc, To entity, Value { r#type: Entity, value: "c02fc3de9f8844aaaa5d9239def1722b" } +SetTriple: 29a6afdc42384fc1b0cefada59acb8c4, From entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: 29a6afdc42384fc1b0cefada59acb8c4, To entity, Value { r#type: Entity, value: "e6184c8e261d46df9c4359fccde3395c" } +SetTriple: 29a6afdc42384fc1b0cefada59acb8c4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 29a6afdc42384fc1b0cefada59acb8c4, Index, Value { r#type: Text, value: "a0" } +SetTriple: 29a6afdc42384fc1b0cefada59acb8c4, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 357c6b8a3ea645c69af835c69111c29c, From entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: 357c6b8a3ea645c69af835c69111c29c, To entity, Value { r#type: Entity, value: "edd2eac1632f4a8fa0bdeace2b1a3ea5" } +SetTriple: 357c6b8a3ea645c69af835c69111c29c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 357c6b8a3ea645c69af835c69111c29c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 357c6b8a3ea645c69af835c69111c29c, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 38c9110393504bbe9dfd37e682307938, From entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: 38c9110393504bbe9dfd37e682307938, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 38c9110393504bbe9dfd37e682307938, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 38c9110393504bbe9dfd37e682307938, Index, Value { r#type: Text, value: "a0" } +SetTriple: 38c9110393504bbe9dfd37e682307938, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 8de1e69861b847539d9f3cc16fa7790e, From entity, Value { r#type: Entity, value: "2db21ea578264dfdbbbacf7de0570e08" } +SetTriple: 8de1e69861b847539d9f3cc16fa7790e, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 8de1e69861b847539d9f3cc16fa7790e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8de1e69861b847539d9f3cc16fa7790e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 53fe63b1ecc84508a7a9e0beb81f6e48, From entity, Value { r#type: Entity, value: "c998b9cc8bfd4ab9b20dd6d0a8eedb33" } +SetTriple: 53fe63b1ecc84508a7a9e0beb81f6e48, To entity, Value { r#type: Entity, value: "167664f668f840e1976b20bd16ed8d47" } +SetTriple: 53fe63b1ecc84508a7a9e0beb81f6e48, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 53fe63b1ecc84508a7a9e0beb81f6e48, Index, Value { r#type: Text, value: "a0" } +SetTriple: 53fe63b1ecc84508a7a9e0beb81f6e48, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 5e2973aa9e754d3b8cea3ff8a54a735b, From entity, Value { r#type: Entity, value: "c998b9cc8bfd4ab9b20dd6d0a8eedb33" } +SetTriple: 5e2973aa9e754d3b8cea3ff8a54a735b, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 5e2973aa9e754d3b8cea3ff8a54a735b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5e2973aa9e754d3b8cea3ff8a54a735b, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 1c5782127e0e46b2bb46d3ea0d68b951, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: 1c5782127e0e46b2bb46d3ea0d68b951, To entity, Value { r#type: Entity, value: "edd2eac1632f4a8fa0bdeace2b1a3ea5" } +SetTriple: 1c5782127e0e46b2bb46d3ea0d68b951, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1c5782127e0e46b2bb46d3ea0d68b951, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1c5782127e0e46b2bb46d3ea0d68b951, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 5f4eb42048ef42efb78c07e423c840d2, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: 5f4eb42048ef42efb78c07e423c840d2, To entity, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 5f4eb42048ef42efb78c07e423c840d2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5f4eb42048ef42efb78c07e423c840d2, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5f4eb42048ef42efb78c07e423c840d2, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 39fe065edb3b42ef804e3625f8820c57, From entity, Value { r#type: Entity, value: "c0cfae526619413785d02c8847415947" } +SetTriple: 39fe065edb3b42ef804e3625f8820c57, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 39fe065edb3b42ef804e3625f8820c57, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 39fe065edb3b42ef804e3625f8820c57, Index, Value { r#type: Text, value: "a0" } +SetTriple: 39fe065edb3b42ef804e3625f8820c57, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 9d9c99fc307f4625b81176d24a105fa4, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: 9d9c99fc307f4625b81176d24a105fa4, To entity, Value { r#type: Entity, value: "c0cfae526619413785d02c8847415947" } +SetTriple: 9d9c99fc307f4625b81176d24a105fa4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9d9c99fc307f4625b81176d24a105fa4, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9d9c99fc307f4625b81176d24a105fa4, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 9f680821431b424aba422252e126284b, From entity, Value { r#type: Entity, value: "c0cfae526619413785d02c8847415947" } +SetTriple: 9f680821431b424aba422252e126284b, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 9f680821431b424aba422252e126284b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9f680821431b424aba422252e126284b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9f680821431b424aba422252e126284b, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: dd3c7b0faa8e474b8ac4b7467abef7d8, From entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: dd3c7b0faa8e474b8ac4b7467abef7d8, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: dd3c7b0faa8e474b8ac4b7467abef7d8, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: dd3c7b0faa8e474b8ac4b7467abef7d8, Index, Value { r#type: Text, value: "a0" } +SetTriple: dd3c7b0faa8e474b8ac4b7467abef7d8, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: cb9dc0fc61c44841a5784cf8dfec7fda, From entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: cb9dc0fc61c44841a5784cf8dfec7fda, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: cb9dc0fc61c44841a5784cf8dfec7fda, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: cb9dc0fc61c44841a5784cf8dfec7fda, Index, Value { r#type: Text, value: "a0" } +SetTriple: cb9dc0fc61c44841a5784cf8dfec7fda, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 65b1139ecb5d47649e071747dfdcb017, From entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: 65b1139ecb5d47649e071747dfdcb017, To entity, Value { r#type: Entity, value: "8b0bc6f76cba48158e67fc4654b2250e" } +SetTriple: 65b1139ecb5d47649e071747dfdcb017, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 65b1139ecb5d47649e071747dfdcb017, Index, Value { r#type: Text, value: "a0" } +SetTriple: 65b1139ecb5d47649e071747dfdcb017, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: c2e14dcb0966478db3ba87645c33e435, From entity, Value { r#type: Entity, value: "f07775d7794b42e590c65d9094593a6a" } +SetTriple: c2e14dcb0966478db3ba87645c33e435, To entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: c2e14dcb0966478db3ba87645c33e435, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c2e14dcb0966478db3ba87645c33e435, Index, Value { r#type: Text, value: "a0" } +SetTriple: c2e14dcb0966478db3ba87645c33e435, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 37e42d1efb2a4058a185c6dd212fc4b0, From entity, Value { r#type: Entity, value: "f07775d7794b42e590c65d9094593a6a" } +SetTriple: 37e42d1efb2a4058a185c6dd212fc4b0, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: 37e42d1efb2a4058a185c6dd212fc4b0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 37e42d1efb2a4058a185c6dd212fc4b0, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 521354ae6b414d368527a9ea97c466fc, From entity, Value { r#type: Entity, value: "dbaf9d0ace014157a3ef598e518d13cd" } +SetTriple: 521354ae6b414d368527a9ea97c466fc, To entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: 521354ae6b414d368527a9ea97c466fc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 521354ae6b414d368527a9ea97c466fc, Index, Value { r#type: Text, value: "a0" } +SetTriple: 521354ae6b414d368527a9ea97c466fc, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 1eebd77e297947f7b35a56cf2a0f65a0, From entity, Value { r#type: Entity, value: "dbaf9d0ace014157a3ef598e518d13cd" } +SetTriple: 1eebd77e297947f7b35a56cf2a0f65a0, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: 1eebd77e297947f7b35a56cf2a0f65a0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1eebd77e297947f7b35a56cf2a0f65a0, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1eebd77e297947f7b35a56cf2a0f65a0, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: b4244a3f65aa403d88ed8242ccb91757, From entity, Value { r#type: Entity, value: "b4722ee6ab59445095682d7fbf0259d4" } +SetTriple: b4244a3f65aa403d88ed8242ccb91757, To entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: b4244a3f65aa403d88ed8242ccb91757, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b4244a3f65aa403d88ed8242ccb91757, Index, Value { r#type: Text, value: "a0" } +SetTriple: b4244a3f65aa403d88ed8242ccb91757, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 67a14621027f4c1da4161f8af3a98262, From entity, Value { r#type: Entity, value: "b4722ee6ab59445095682d7fbf0259d4" } +SetTriple: 67a14621027f4c1da4161f8af3a98262, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: 67a14621027f4c1da4161f8af3a98262, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 67a14621027f4c1da4161f8af3a98262, Index, Value { r#type: Text, value: "a0" } +SetTriple: 67a14621027f4c1da4161f8af3a98262, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 156134263c804734a67e9463d0119516, From entity, Value { r#type: Entity, value: "198c3b17f859473bb2ebd4cf0435b626" } +SetTriple: 156134263c804734a67e9463d0119516, To entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: 156134263c804734a67e9463d0119516, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 156134263c804734a67e9463d0119516, Index, Value { r#type: Text, value: "a0" } +SetTriple: 156134263c804734a67e9463d0119516, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 08be34a7682e4c508ad90fab51b1040c, From entity, Value { r#type: Entity, value: "198c3b17f859473bb2ebd4cf0435b626" } +SetTriple: 08be34a7682e4c508ad90fab51b1040c, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: 08be34a7682e4c508ad90fab51b1040c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 08be34a7682e4c508ad90fab51b1040c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 08be34a7682e4c508ad90fab51b1040c, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: f6dea3741df44814a12814f1c150e085, From entity, Value { r#type: Entity, value: "c02fc3de9f8844aaaa5d9239def1722b" } +SetTriple: f6dea3741df44814a12814f1c150e085, To entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: f6dea3741df44814a12814f1c150e085, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f6dea3741df44814a12814f1c150e085, Index, Value { r#type: Text, value: "a0" } +SetTriple: f6dea3741df44814a12814f1c150e085, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: f825229e4b2a49c7825e539954ed7ef8, From entity, Value { r#type: Entity, value: "c02fc3de9f8844aaaa5d9239def1722b" } +SetTriple: f825229e4b2a49c7825e539954ed7ef8, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: f825229e4b2a49c7825e539954ed7ef8, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f825229e4b2a49c7825e539954ed7ef8, Index, Value { r#type: Text, value: "a0" } +SetTriple: f825229e4b2a49c7825e539954ed7ef8, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: ffbdf4a6e7c0442483617ebefbbfc340, From entity, Value { r#type: Entity, value: "1a7bdc80d0674461965ebe7250001b10" } +SetTriple: ffbdf4a6e7c0442483617ebefbbfc340, To entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: ffbdf4a6e7c0442483617ebefbbfc340, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ffbdf4a6e7c0442483617ebefbbfc340, Index, Value { r#type: Text, value: "a0" } +SetTriple: ffbdf4a6e7c0442483617ebefbbfc340, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: d1431acdf9f4447895f45c78a7829d0c, From entity, Value { r#type: Entity, value: "1a7bdc80d0674461965ebe7250001b10" } +SetTriple: d1431acdf9f4447895f45c78a7829d0c, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: d1431acdf9f4447895f45c78a7829d0c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d1431acdf9f4447895f45c78a7829d0c, Index, Value { r#type: Text, value: "a0" } +SetTriple: d1431acdf9f4447895f45c78a7829d0c, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: e0320008065d43069245f66219b5641e, From entity, Value { r#type: Entity, value: "88526f0061a74e22ae507b186dfa2567" } +SetTriple: e0320008065d43069245f66219b5641e, To entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: e0320008065d43069245f66219b5641e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e0320008065d43069245f66219b5641e, Index, Value { r#type: Text, value: "a0" } +SetTriple: e0320008065d43069245f66219b5641e, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: cb5c2f81b9dd475eadf62abc470a527b, From entity, Value { r#type: Entity, value: "88526f0061a74e22ae507b186dfa2567" } +SetTriple: cb5c2f81b9dd475eadf62abc470a527b, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: cb5c2f81b9dd475eadf62abc470a527b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: cb5c2f81b9dd475eadf62abc470a527b, Index, Value { r#type: Text, value: "a0" } +SetTriple: cb5c2f81b9dd475eadf62abc470a527b, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 81ac649fb5eb4ac0a58f4ee35104921f, From entity, Value { r#type: Entity, value: "df095a57608145d0a183cec556ec4460" } +SetTriple: 81ac649fb5eb4ac0a58f4ee35104921f, To entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: 81ac649fb5eb4ac0a58f4ee35104921f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 81ac649fb5eb4ac0a58f4ee35104921f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 81ac649fb5eb4ac0a58f4ee35104921f, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: ac626f60aaa1421b8ac367a1b3f6f680, From entity, Value { r#type: Entity, value: "df095a57608145d0a183cec556ec4460" } +SetTriple: ac626f60aaa1421b8ac367a1b3f6f680, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: ac626f60aaa1421b8ac367a1b3f6f680, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ac626f60aaa1421b8ac367a1b3f6f680, Index, Value { r#type: Text, value: "a0" } +SetTriple: ac626f60aaa1421b8ac367a1b3f6f680, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 042e5f2478954e809d39513615ac1972, From entity, Value { r#type: Entity, value: "7b415470b8f849d7b6d15050e54ff3cf" } +SetTriple: 042e5f2478954e809d39513615ac1972, To entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: 042e5f2478954e809d39513615ac1972, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 042e5f2478954e809d39513615ac1972, Index, Value { r#type: Text, value: "a0" } +SetTriple: 042e5f2478954e809d39513615ac1972, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 8e2d6808ab8d46a4b590ecfb44e2af77, From entity, Value { r#type: Entity, value: "7b415470b8f849d7b6d15050e54ff3cf" } +SetTriple: 8e2d6808ab8d46a4b590ecfb44e2af77, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: 8e2d6808ab8d46a4b590ecfb44e2af77, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8e2d6808ab8d46a4b590ecfb44e2af77, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8e2d6808ab8d46a4b590ecfb44e2af77, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 815fe3fe17804253bafc7393584732e2, From entity, Value { r#type: Entity, value: "27e5a4d9c8f94a70a2e755289b4e95eb" } +SetTriple: 815fe3fe17804253bafc7393584732e2, To entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: 815fe3fe17804253bafc7393584732e2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 815fe3fe17804253bafc7393584732e2, Index, Value { r#type: Text, value: "a0" } +SetTriple: 815fe3fe17804253bafc7393584732e2, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: ec5c3e30939f42879cd2513f9b30e130, From entity, Value { r#type: Entity, value: "27e5a4d9c8f94a70a2e755289b4e95eb" } +SetTriple: ec5c3e30939f42879cd2513f9b30e130, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: ec5c3e30939f42879cd2513f9b30e130, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ec5c3e30939f42879cd2513f9b30e130, Index, Value { r#type: Text, value: "a0" } +SetTriple: ec5c3e30939f42879cd2513f9b30e130, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 9ff996bef9694afe9108885aa015b70c, From entity, Value { r#type: Entity, value: "368f0f782770430ea2c34999da0257cb" } +SetTriple: 9ff996bef9694afe9108885aa015b70c, To entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: 9ff996bef9694afe9108885aa015b70c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9ff996bef9694afe9108885aa015b70c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9ff996bef9694afe9108885aa015b70c, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 136a5a0924f24135b9d12a8599b4f18d, From entity, Value { r#type: Entity, value: "368f0f782770430ea2c34999da0257cb" } +SetTriple: 136a5a0924f24135b9d12a8599b4f18d, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: 136a5a0924f24135b9d12a8599b4f18d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 136a5a0924f24135b9d12a8599b4f18d, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 7492469841b44586946186c7f9822234, From entity, Value { r#type: Entity, value: "c998b9cc8bfd4ab9b20dd6d0a8eedb33" } +SetTriple: 7492469841b44586946186c7f9822234, To entity, Value { r#type: Entity, value: "c9935cc57e2e4be68c3cd7acc6ed7b12" } +SetTriple: 7492469841b44586946186c7f9822234, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7492469841b44586946186c7f9822234, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7492469841b44586946186c7f9822234, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: a88def55a04346878acc8c5267ef60e7, From entity, Value { r#type: Entity, value: "c998b9cc8bfd4ab9b20dd6d0a8eedb33" } +SetTriple: a88def55a04346878acc8c5267ef60e7, To entity, Value { r#type: Entity, value: "edd2eac1632f4a8fa0bdeace2b1a3ea5" } +SetTriple: a88def55a04346878acc8c5267ef60e7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a88def55a04346878acc8c5267ef60e7, Index, Value { r#type: Text, value: "a0" } +SetTriple: a88def55a04346878acc8c5267ef60e7, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 37b05461dacb4edebb599accd609db8d, From entity, Value { r#type: Entity, value: "c998b9cc8bfd4ab9b20dd6d0a8eedb33" } +SetTriple: 37b05461dacb4edebb599accd609db8d, To entity, Value { r#type: Entity, value: "8b0bc6f76cba48158e67fc4654b2250e" } +SetTriple: 37b05461dacb4edebb599accd609db8d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 37b05461dacb4edebb599accd609db8d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 37b05461dacb4edebb599accd609db8d, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: cc3b634b3d1b4f73854d92a60f555786, From entity, Value { r#type: Entity, value: "c998b9cc8bfd4ab9b20dd6d0a8eedb33" } +SetTriple: cc3b634b3d1b4f73854d92a60f555786, To entity, Value { r#type: Entity, value: "c0cfae526619413785d02c8847415947" } +SetTriple: cc3b634b3d1b4f73854d92a60f555786, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: cc3b634b3d1b4f73854d92a60f555786, Index, Value { r#type: Text, value: "a0" } +SetTriple: cc3b634b3d1b4f73854d92a60f555786, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: fef35ea16ac043cf924e0011e4706a25, From entity, Value { r#type: Entity, value: "724d29589d5443c8af52e3feb24cdf88" } +SetTriple: fef35ea16ac043cf924e0011e4706a25, To entity, Value { r#type: Entity, value: "c0cfae526619413785d02c8847415947" } +SetTriple: fef35ea16ac043cf924e0011e4706a25, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: fef35ea16ac043cf924e0011e4706a25, Index, Value { r#type: Text, value: "a0" } +SetTriple: fef35ea16ac043cf924e0011e4706a25, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 7ac90f0147ef406caa72baeffd8c5e38, From entity, Value { r#type: Entity, value: "0641020ac09b4408bd3c4277689455dc" } +SetTriple: 7ac90f0147ef406caa72baeffd8c5e38, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 7ac90f0147ef406caa72baeffd8c5e38, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7ac90f0147ef406caa72baeffd8c5e38, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7ac90f0147ef406caa72baeffd8c5e38, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 88110b73895047d591983cfdc6842c6a, From entity, Value { r#type: Entity, value: "724d29589d5443c8af52e3feb24cdf88" } +SetTriple: 88110b73895047d591983cfdc6842c6a, To entity, Value { r#type: Entity, value: "0641020ac09b4408bd3c4277689455dc" } +SetTriple: 88110b73895047d591983cfdc6842c6a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 88110b73895047d591983cfdc6842c6a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 88110b73895047d591983cfdc6842c6a, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 3c974ad751f241f89fe83cc65c0c2136, From entity, Value { r#type: Entity, value: "0641020ac09b4408bd3c4277689455dc" } +SetTriple: 3c974ad751f241f89fe83cc65c0c2136, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 3c974ad751f241f89fe83cc65c0c2136, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3c974ad751f241f89fe83cc65c0c2136, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3c974ad751f241f89fe83cc65c0c2136, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 4142da94cf63407aa63e55c1dafb9703, From entity, Value { r#type: Entity, value: "15234a4c061f46ee90a0c44cd9414cbe" } +SetTriple: 4142da94cf63407aa63e55c1dafb9703, To entity, Value { r#type: Entity, value: "e6184c8e261d46df9c4359fccde3395c" } +SetTriple: 4142da94cf63407aa63e55c1dafb9703, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4142da94cf63407aa63e55c1dafb9703, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4142da94cf63407aa63e55c1dafb9703, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 65ec0026b442472fb6b2de436f9c4545, From entity, Value { r#type: Entity, value: "15234a4c061f46ee90a0c44cd9414cbe" } +SetTriple: 65ec0026b442472fb6b2de436f9c4545, To entity, Value { r#type: Entity, value: "0641020ac09b4408bd3c4277689455dc" } +SetTriple: 65ec0026b442472fb6b2de436f9c4545, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 65ec0026b442472fb6b2de436f9c4545, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 895f42b5628241f6a068d9de2e1fabaf, From entity, Value { r#type: Entity, value: "06375f2ac6a7460c8371187cb761e2be" } +SetTriple: 895f42b5628241f6a068d9de2e1fabaf, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: 895f42b5628241f6a068d9de2e1fabaf, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 895f42b5628241f6a068d9de2e1fabaf, Index, Value { r#type: Text, value: "a0" } +SetTriple: 895f42b5628241f6a068d9de2e1fabaf, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 68286fbe070a446680db976e4c320271, From entity, Value { r#type: Entity, value: "06375f2ac6a7460c8371187cb761e2be" } +SetTriple: 68286fbe070a446680db976e4c320271, To entity, Value { r#type: Entity, value: "e8010874d3304a4d990762e89a19371a" } +SetTriple: 68286fbe070a446680db976e4c320271, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 68286fbe070a446680db976e4c320271, Index, Value { r#type: Text, value: "a0" } +SetTriple: 68286fbe070a446680db976e4c320271, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 7a7f32540abb44a5b170185386a26d90, From entity, Value { r#type: Entity, value: "06375f2ac6a7460c8371187cb761e2be" } +SetTriple: 7a7f32540abb44a5b170185386a26d90, To entity, Value { r#type: Entity, value: "e6184c8e261d46df9c4359fccde3395c" } +SetTriple: 7a7f32540abb44a5b170185386a26d90, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7a7f32540abb44a5b170185386a26d90, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7a7f32540abb44a5b170185386a26d90, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 89f8a24bd1384d2bbf3201fe3f6052df, From entity, Value { r#type: Entity, value: "06375f2ac6a7460c8371187cb761e2be" } +SetTriple: 89f8a24bd1384d2bbf3201fe3f6052df, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 89f8a24bd1384d2bbf3201fe3f6052df, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 89f8a24bd1384d2bbf3201fe3f6052df, Index, Value { r#type: Text, value: "a0" } +SetTriple: 89f8a24bd1384d2bbf3201fe3f6052df, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 14cbd176c923400d8e97813aab55beeb, From entity, Value { r#type: Entity, value: "276c48daef77463a887fdb21d82c4542" } +SetTriple: 14cbd176c923400d8e97813aab55beeb, To entity, Value { r#type: Entity, value: "edd2eac1632f4a8fa0bdeace2b1a3ea5" } +SetTriple: 14cbd176c923400d8e97813aab55beeb, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 14cbd176c923400d8e97813aab55beeb, Index, Value { r#type: Text, value: "a0" } +SetTriple: 14cbd176c923400d8e97813aab55beeb, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 098793a8078c46a4a1074b43e6857896, From entity, Value { r#type: Entity, value: "284f02213aea456a83eabe0e28f63a2c" } +SetTriple: 098793a8078c46a4a1074b43e6857896, To entity, Value { r#type: Entity, value: "e6184c8e261d46df9c4359fccde3395c" } +SetTriple: 098793a8078c46a4a1074b43e6857896, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 098793a8078c46a4a1074b43e6857896, Index, Value { r#type: Text, value: "a0" } +SetTriple: 098793a8078c46a4a1074b43e6857896, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: f94535b59270464889b425ae640d030f, From entity, Value { r#type: Entity, value: "276c48daef77463a887fdb21d82c4542" } +SetTriple: f94535b59270464889b425ae640d030f, To entity, Value { r#type: Entity, value: "8b0bc6f76cba48158e67fc4654b2250e" } +SetTriple: f94535b59270464889b425ae640d030f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f94535b59270464889b425ae640d030f, Index, Value { r#type: Text, value: "a0" } +SetTriple: f94535b59270464889b425ae640d030f, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 8c00b702511048c9b402b358f6f4409d, From entity, Value { r#type: Entity, value: "276c48daef77463a887fdb21d82c4542" } +SetTriple: 8c00b702511048c9b402b358f6f4409d, To entity, Value { r#type: Entity, value: "c0cfae526619413785d02c8847415947" } +SetTriple: 8c00b702511048c9b402b358f6f4409d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8c00b702511048c9b402b358f6f4409d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8c00b702511048c9b402b358f6f4409d, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 3f24570024174c1aa40df78da433fbe7, From entity, Value { r#type: Entity, value: "9cc8a65ddf924c0c8d9024980e822dc0" } +SetTriple: 3f24570024174c1aa40df78da433fbe7, To entity, Value { r#type: Entity, value: "f724b80589e1424bb149acff9ecfd0f7" } +SetTriple: 3f24570024174c1aa40df78da433fbe7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3f24570024174c1aa40df78da433fbe7, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3f24570024174c1aa40df78da433fbe7, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 1f60d148ecb0421885bbd2ea7f5d9fa1, From entity, Value { r#type: Entity, value: "9cc8a65ddf924c0c8d9024980e822dc0" } +SetTriple: 1f60d148ecb0421885bbd2ea7f5d9fa1, To entity, Value { r#type: Entity, value: "71a5569e688e4e0f8eb0d8c361211e7c" } +SetTriple: 1f60d148ecb0421885bbd2ea7f5d9fa1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1f60d148ecb0421885bbd2ea7f5d9fa1, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 7884ac13139447feb63cf04f2dda2f48, From entity, Value { r#type: Entity, value: "9cc8a65ddf924c0c8d9024980e822dc0" } +SetTriple: 7884ac13139447feb63cf04f2dda2f48, To entity, Value { r#type: Entity, value: "235ba0e8dc7e4bdda1e16d0d4497f133" } +SetTriple: 7884ac13139447feb63cf04f2dda2f48, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7884ac13139447feb63cf04f2dda2f48, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7884ac13139447feb63cf04f2dda2f48, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 527b105959c74e36b690f865c0f896de, From entity, Value { r#type: Entity, value: "9cc8a65ddf924c0c8d9024980e822dc0" } +SetTriple: 527b105959c74e36b690f865c0f896de, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: 527b105959c74e36b690f865c0f896de, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 527b105959c74e36b690f865c0f896de, Index, Value { r#type: Text, value: "a0" } +SetTriple: 527b105959c74e36b690f865c0f896de, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: b94786af29ca435e87cd1fd896590c0c, From entity, Value { r#type: Entity, value: "9cc8a65ddf924c0c8d9024980e822dc0" } +SetTriple: b94786af29ca435e87cd1fd896590c0c, To entity, Value { r#type: Entity, value: "e6184c8e261d46df9c4359fccde3395c" } +SetTriple: b94786af29ca435e87cd1fd896590c0c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b94786af29ca435e87cd1fd896590c0c, Index, Value { r#type: Text, value: "a0" } +SetTriple: b94786af29ca435e87cd1fd896590c0c, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 0e82f14539db4b39aca17349b35d9705, From entity, Value { r#type: Entity, value: "9cc8a65ddf924c0c8d9024980e822dc0" } +SetTriple: 0e82f14539db4b39aca17349b35d9705, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 0e82f14539db4b39aca17349b35d9705, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0e82f14539db4b39aca17349b35d9705, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0e82f14539db4b39aca17349b35d9705, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: e1b36766f792430a926ce37c0f88fd82, From entity, Value { r#type: Entity, value: "1390be437d4c4080a925b2f7bc03fc86" } +SetTriple: e1b36766f792430a926ce37c0f88fd82, To entity, Value { r#type: Entity, value: "e6184c8e261d46df9c4359fccde3395c" } +SetTriple: e1b36766f792430a926ce37c0f88fd82, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e1b36766f792430a926ce37c0f88fd82, Index, Value { r#type: Text, value: "a0" } +SetTriple: e1b36766f792430a926ce37c0f88fd82, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 659f3b5952704aeba66f30b71aeac40f, From entity, Value { r#type: Entity, value: "2411d4a11eea4963bdbf852ce6ced5a4" } +SetTriple: 659f3b5952704aeba66f30b71aeac40f, To entity, Value { r#type: Entity, value: "e40b39dc2853404b9d06bf89ee241afd" } +SetTriple: 659f3b5952704aeba66f30b71aeac40f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 659f3b5952704aeba66f30b71aeac40f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 659f3b5952704aeba66f30b71aeac40f, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: dbaf9d0ace014157a3ef598e518d13cd, Name, Value { r#type: Text, value: "Crypto politics News" } +SetTriple: 08be6f595e5f48ba9e8efe39a6fd1a63, Name, Value { r#type: Text, value: "News topic" } +SetTriple: 2db21ea578264dfdbbbacf7de0570e08, Name, Value { r#type: Text, value: "Sub news topics" } +SetTriple: c998b9cc8bfd4ab9b20dd6d0a8eedb33, Name, Value { r#type: Text, value: "News event" } +SetTriple: News event, Name, Value { r#type: Text, value: "News story" } +SetTriple: Related news events, Name, Value { r#type: Text, value: "Related news stories" } +SetTriple: 37e42d1efb2a4058a185c6dd212fc4b0, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5e2973aa9e754d3b8cea3ff8a54a735b, Index, Value { r#type: Text, value: "a0" } +SetTriple: c0cfae526619413785d02c8847415947, Name, Value { r#type: Text, value: "Related news events" } +SetTriple: Overview of News eve, Name, Value { r#type: Text, value: "" } +SetTriple: f07775d7794b42e590c65d9094593a6a, Name, Value { r#type: Text, value: "Policy and Regulatio" } +SetTriple: b4722ee6ab59445095682d7fbf0259d4, Name, Value { r#type: Text, value: "Crypto for the plane" } +SetTriple: 198c3b17f859473bb2ebd4cf0435b626, Name, Value { r#type: Text, value: "Crypto politics" } +SetTriple: c02fc3de9f8844aaaa5d9239def1722b, Name, Value { r#type: Text, value: "Sutopics: Crypto reg" } +SetTriple: 1a7bdc80d0674461965ebe7250001b10, Name, Value { r#type: Text, value: "Politians and crypto" } +SetTriple: 88526f0061a74e22ae507b186dfa2567, Name, Value { r#type: Text, value: "Politians that oppos" } +SetTriple: df095a57608145d0a183cec556ec4460, Name, Value { r#type: Text, value: "Politians that oppos" } +SetTriple: 7b415470b8f849d7b6d15050e54ff3cf, Name, Value { r#type: Text, value: "Republican politians" } +SetTriple: 27e5a4d9c8f94a70a2e755289b4e95eb, Name, Value { r#type: Text, value: "Policy and regulatio" } +SetTriple: 368f0f782770430ea2c34999da0257cb, Name, Value { r#type: Text, value: "Subtopics: Crypto re" } +SetTriple: 0641020ac09b4408bd3c4277689455dc, Name, Value { r#type: Text, value: "Related articles" } +SetTriple: Twitter, Name, Value { r#type: Text, value: "X platform" } +SetTriple: , Markdown Content, Value { r#type: Text, value: "\n\n" } +SetTriple: 078ef207d555405ba7f6f74fd6393f91, To entity, Value { r#type: Entity, value: "dbaf9d0ace014157a3ef598e518d13cd" } +SetTriple: 078ef207d555405ba7f6f74fd6393f91, From entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: bd9ec734ade0498fa2fa8f7c79ecee75, To entity, Value { r#type: Entity, value: "f07775d7794b42e590c65d9094593a6a" } +SetTriple: bd9ec734ade0498fa2fa8f7c79ecee75, From entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: 8dd4d989d35e45b2b3f3335e3639588b, To entity, Value { r#type: Entity, value: "2333765c9ad6434d9c66152c81be44fb" } +SetTriple: c07577e680444a289bf40482335f8a9d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c07577e680444a289bf40482335f8a9d, Index, Value { r#type: Text, value: "a0" } +SetTriple: db9abcd6f7a34f8ab4d7c9a92f9ae03c, To entity, Value { r#type: Entity, value: "e6184c8e261d46df9c4359fccde3395c" } +SetTriple: db9abcd6f7a34f8ab4d7c9a92f9ae03c, From entity, Value { r#type: Entity, value: "b67663f43a7d426180616df2c4eb77ce" } +SetTriple: 4c382d886b514084b2fd0000ef797fa6, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 4c382d886b514084b2fd0000ef797fa6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4c382d886b514084b2fd0000ef797fa6, To entity, Value { r#type: Entity, value: "e6184c8e261d46df9c4359fccde3395c" } +SetTriple: c07577e680444a289bf40482335f8a9d, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 08488a50db1043bba03677b6f58dd2cd, From entity, Value { r#type: Entity, value: "f01c6d195683448984f75cc23bcf7fac" } +SetTriple: 08488a50db1043bba03677b6f58dd2cd, To entity, Value { r#type: Entity, value: "e6184c8e261d46df9c4359fccde3395c" } +SetTriple: 4c382d886b514084b2fd0000ef797fa6, From entity, Value { r#type: Entity, value: "f2b51833ffbe453d86b021563de7c946" } +SetTriple: 08488a50db1043bba03677b6f58dd2cd, Index, Value { r#type: Text, value: "a0" } +SetTriple: 08488a50db1043bba03677b6f58dd2cd, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8dd4d989d35e45b2b3f3335e3639588b, From entity, Value { r#type: Entity, value: "724d29589d5443c8af52e3feb24cdf88" } +SetTriple: 148231827fff47de9ecbfeb69d5a3de9, Index, Value { r#type: Text, value: "a0" } +SetTriple: 148231827fff47de9ecbfeb69d5a3de9, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 4c382d886b514084b2fd0000ef797fa6, Index, Value { r#type: Text, value: "a0" } +SetTriple: 148231827fff47de9ecbfeb69d5a3de9, From entity, Value { r#type: Entity, value: "f01c6d195683448984f75cc23bcf7fac" } +SetTriple: 148231827fff47de9ecbfeb69d5a3de9, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 8dd4d989d35e45b2b3f3335e3639588b, Relation type, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 148231827fff47de9ecbfeb69d5a3de9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e1416c5b760449c0aa4a1f79ea210b06, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 8dd4d989d35e45b2b3f3335e3639588b, Index, Value { r#type: Text, value: "a0" } +SetTriple: e1416c5b760449c0aa4a1f79ea210b06, Index, Value { r#type: Text, value: "a0" } +SetTriple: e1416c5b760449c0aa4a1f79ea210b06, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e1416c5b760449c0aa4a1f79ea210b06, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: e1416c5b760449c0aa4a1f79ea210b06, From entity, Value { r#type: Entity, value: "fb193443f45741e08990fecc363f07e0" } +SetTriple: 08488a50db1043bba03677b6f58dd2cd, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: db9abcd6f7a34f8ab4d7c9a92f9ae03c, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: db9abcd6f7a34f8ab4d7c9a92f9ae03c, Index, Value { r#type: Text, value: "a0" } +SetTriple: db9abcd6f7a34f8ab4d7c9a92f9ae03c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c07577e680444a289bf40482335f8a9d, From entity, Value { r#type: Entity, value: "cc83fb08421f4580bdf28831e6425583" } +SetTriple: c07577e680444a289bf40482335f8a9d, To entity, Value { r#type: Entity, value: "e6184c8e261d46df9c4359fccde3395c" } +SetTriple: 8dd4d989d35e45b2b3f3335e3639588b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bb56378a48b546398c175d617c7d3f4d, From entity, Value { r#type: Entity, value: "c8ec5342083f4c71bb72db66c610ee19" } +SetTriple: bb56378a48b546398c175d617c7d3f4d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bb56378a48b546398c175d617c7d3f4d, Index, Value { r#type: Text, value: "a0" } +SetTriple: bb56378a48b546398c175d617c7d3f4d, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: fd335c00ccf247cbb901bd7fc2e9cc5a, From entity, Value { r#type: Entity, value: "c8ec5342083f4c71bb72db66c610ee19" } +SetTriple: fd335c00ccf247cbb901bd7fc2e9cc5a, To entity, Value { r#type: Entity, value: "c9935cc57e2e4be68c3cd7acc6ed7b12" } +SetTriple: fd335c00ccf247cbb901bd7fc2e9cc5a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: dd247969e066436888640c71e399764c, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: fd335c00ccf247cbb901bd7fc2e9cc5a, Index, Value { r#type: Text, value: "a0" } +SetTriple: fd335c00ccf247cbb901bd7fc2e9cc5a, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: dd247969e066436888640c71e399764c, From entity, Value { r#type: Entity, value: "c8ec5342083f4c71bb72db66c610ee19" } +SetTriple: dd247969e066436888640c71e399764c, To entity, Value { r#type: Entity, value: "c4b9a30a92a945748f9b31c41eb8bbd8" } +SetTriple: dd247969e066436888640c71e399764c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: dd247969e066436888640c71e399764c, Index, Value { r#type: Text, value: "a0" } +SetTriple: da9dc2807ae1468098832fa77e624924, From entity, Value { r#type: Entity, value: "7a5e199b00b04c68834aafcd18673b4c" } +SetTriple: da9dc2807ae1468098832fa77e624924, To entity, Value { r#type: Entity, value: "feb48f93d5e94ad58567ea8353998e52" } +SetTriple: da9dc2807ae1468098832fa77e624924, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: da9dc2807ae1468098832fa77e624924, Index, Value { r#type: Text, value: "a0" } +SetTriple: da9dc2807ae1468098832fa77e624924, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 93fe9e8a6b3d47efa170e4df36026032, From entity, Value { r#type: Entity, value: "7a5e199b00b04c68834aafcd18673b4c" } +SetTriple: 93fe9e8a6b3d47efa170e4df36026032, To entity, Value { r#type: Entity, value: "80296c0d19934288a789c9f453b70c1b" } +SetTriple: 93fe9e8a6b3d47efa170e4df36026032, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 93fe9e8a6b3d47efa170e4df36026032, Index, Value { r#type: Text, value: "a0" } +SetTriple: 93fe9e8a6b3d47efa170e4df36026032, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 1daed648929a4a409b5ba2b4eef09ab2, From entity, Value { r#type: Entity, value: "c8ec5342083f4c71bb72db66c610ee19" } +SetTriple: 1daed648929a4a409b5ba2b4eef09ab2, To entity, Value { r#type: Entity, value: "f724b80589e1424bb149acff9ecfd0f7" } +SetTriple: 1daed648929a4a409b5ba2b4eef09ab2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1daed648929a4a409b5ba2b4eef09ab2, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1daed648929a4a409b5ba2b4eef09ab2, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: bb56378a48b546398c175d617c7d3f4d, To entity, Value { r#type: Entity, value: "cd59a62a2103477dbc56340ca209ef54" } +SetTriple: 3d5d8947fe7945a2ae736a8a0927b884, From entity, Value { r#type: Entity, value: "2abfb81cb1354d16a455dc6813e64405" } +SetTriple: 3d5d8947fe7945a2ae736a8a0927b884, To entity, Value { r#type: Entity, value: "f724b80589e1424bb149acff9ecfd0f7" } +SetTriple: 3d5d8947fe7945a2ae736a8a0927b884, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3d5d8947fe7945a2ae736a8a0927b884, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3d5d8947fe7945a2ae736a8a0927b884, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: f7be39f7144d4e9496fc817b85d30c5b, From entity, Value { r#type: Entity, value: "63352fac43ee4dbca4cb3c3827d15208" } +SetTriple: f7be39f7144d4e9496fc817b85d30c5b, To entity, Value { r#type: Entity, value: "c9935cc57e2e4be68c3cd7acc6ed7b12" } +SetTriple: f7be39f7144d4e9496fc817b85d30c5b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f7be39f7144d4e9496fc817b85d30c5b, Index, Value { r#type: Text, value: "a0" } +SetTriple: f7be39f7144d4e9496fc817b85d30c5b, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: eef0ca0fefc64c939e981f05027c9bc5, From entity, Value { r#type: Entity, value: "63352fac43ee4dbca4cb3c3827d15208" } +SetTriple: eef0ca0fefc64c939e981f05027c9bc5, To entity, Value { r#type: Entity, value: "c4b9a30a92a945748f9b31c41eb8bbd8" } +SetTriple: eef0ca0fefc64c939e981f05027c9bc5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: eef0ca0fefc64c939e981f05027c9bc5, Index, Value { r#type: Text, value: "a0" } +SetTriple: eef0ca0fefc64c939e981f05027c9bc5, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 9c61f4354e6b4ad98db922b27c4e4558, From entity, Value { r#type: Entity, value: "5bc939aa6c834bd1870f7c0acfa48844" } +SetTriple: 9c61f4354e6b4ad98db922b27c4e4558, To entity, Value { r#type: Entity, value: "f724b80589e1424bb149acff9ecfd0f7" } +SetTriple: 9c61f4354e6b4ad98db922b27c4e4558, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9c61f4354e6b4ad98db922b27c4e4558, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9c61f4354e6b4ad98db922b27c4e4558, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 4144ad473fab4df9a69e130392425087, From entity, Value { r#type: Entity, value: "5bc939aa6c834bd1870f7c0acfa48844" } +SetTriple: 4144ad473fab4df9a69e130392425087, To entity, Value { r#type: Entity, value: "c4b9a30a92a945748f9b31c41eb8bbd8" } +SetTriple: 4144ad473fab4df9a69e130392425087, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4144ad473fab4df9a69e130392425087, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4144ad473fab4df9a69e130392425087, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: f89ecc40bdd149739326d09ac6150670, From entity, Value { r#type: Entity, value: "5bc939aa6c834bd1870f7c0acfa48844" } +SetTriple: f89ecc40bdd149739326d09ac6150670, To entity, Value { r#type: Entity, value: "c9935cc57e2e4be68c3cd7acc6ed7b12" } +SetTriple: f89ecc40bdd149739326d09ac6150670, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f89ecc40bdd149739326d09ac6150670, Index, Value { r#type: Text, value: "a0" } +SetTriple: f89ecc40bdd149739326d09ac6150670, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 51376218d3d442c088ee9ce8664fdb16, From entity, Value { r#type: Entity, value: "63352fac43ee4dbca4cb3c3827d15208" } +SetTriple: 51376218d3d442c088ee9ce8664fdb16, To entity, Value { r#type: Entity, value: "f724b80589e1424bb149acff9ecfd0f7" } +SetTriple: 51376218d3d442c088ee9ce8664fdb16, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 51376218d3d442c088ee9ce8664fdb16, Index, Value { r#type: Text, value: "a0" } +SetTriple: 51376218d3d442c088ee9ce8664fdb16, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 055651a91c6346ea8139ca6b4f8980ae, From entity, Value { r#type: Entity, value: "5bc939aa6c834bd1870f7c0acfa48844" } +SetTriple: 055651a91c6346ea8139ca6b4f8980ae, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: 055651a91c6346ea8139ca6b4f8980ae, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 055651a91c6346ea8139ca6b4f8980ae, Index, Value { r#type: Text, value: "a0" } +SetTriple: 055651a91c6346ea8139ca6b4f8980ae, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: ab7911d9d9ae49c089534368675e3b6e, From entity, Value { r#type: Entity, value: "63352fac43ee4dbca4cb3c3827d15208" } +SetTriple: ab7911d9d9ae49c089534368675e3b6e, To entity, Value { r#type: Entity, value: "90dcfc330cdb4252a7c3f653d4f54e26" } +SetTriple: ab7911d9d9ae49c089534368675e3b6e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ab7911d9d9ae49c089534368675e3b6e, Index, Value { r#type: Text, value: "a0" } +SetTriple: ab7911d9d9ae49c089534368675e3b6e, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 518fb9b7a61f482283c2fa2ed7a98d81, From entity, Value { r#type: Entity, value: "7a5e199b00b04c68834aafcd18673b4c" } +SetTriple: 518fb9b7a61f482283c2fa2ed7a98d81, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: 518fb9b7a61f482283c2fa2ed7a98d81, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 518fb9b7a61f482283c2fa2ed7a98d81, Index, Value { r#type: Text, value: "a0" } +SetTriple: 518fb9b7a61f482283c2fa2ed7a98d81, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: f7aa508d9c73466fb0b503db0f0666eb, From entity, Value { r#type: Entity, value: "7a5e199b00b04c68834aafcd18673b4c" } +SetTriple: f7aa508d9c73466fb0b503db0f0666eb, To entity, Value { r#type: Entity, value: "55a7c6143622426a84568a493eed94b9" } +SetTriple: f7aa508d9c73466fb0b503db0f0666eb, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f7aa508d9c73466fb0b503db0f0666eb, Index, Value { r#type: Text, value: "a0" } +SetTriple: f7aa508d9c73466fb0b503db0f0666eb, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: e126f5a069f442ff8b6d2832c41f2910, From entity, Value { r#type: Entity, value: "7a5e199b00b04c68834aafcd18673b4c" } +SetTriple: e126f5a069f442ff8b6d2832c41f2910, To entity, Value { r#type: Entity, value: "0db47aca1ccf4c9fbeb689519ebe9eed" } +SetTriple: e126f5a069f442ff8b6d2832c41f2910, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e126f5a069f442ff8b6d2832c41f2910, Index, Value { r#type: Text, value: "a0" } +SetTriple: e126f5a069f442ff8b6d2832c41f2910, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: e8828818ea3048c39931cbf3eb951079, From entity, Value { r#type: Entity, value: "7a5e199b00b04c68834aafcd18673b4c" } +SetTriple: e8828818ea3048c39931cbf3eb951079, To entity, Value { r#type: Entity, value: "e6184c8e261d46df9c4359fccde3395c" } +SetTriple: e8828818ea3048c39931cbf3eb951079, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e8828818ea3048c39931cbf3eb951079, Index, Value { r#type: Text, value: "a0" } +SetTriple: e8828818ea3048c39931cbf3eb951079, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: c52fd06ede8d4053b44532b581970f23, Index, Value { r#type: Text, value: "a0" } +SetTriple: c52fd06ede8d4053b44532b581970f23, To entity, Value { r#type: Entity, value: "9c2ef1313a1547e9ac5d0fce07e792a1" } +SetTriple: c52fd06ede8d4053b44532b581970f23, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: c52fd06ede8d4053b44532b581970f23, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c52fd06ede8d4053b44532b581970f23, From entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: 94ca55a1790c45828a08ac7d64c96932, From entity, Value { r#type: Entity, value: "c998b9cc8bfd4ab9b20dd6d0a8eedb33" } +SetTriple: 94ca55a1790c45828a08ac7d64c96932, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 94ca55a1790c45828a08ac7d64c96932, Index, Value { r#type: Text, value: "a0" } +SetTriple: 94ca55a1790c45828a08ac7d64c96932, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 94ca55a1790c45828a08ac7d64c96932, To entity, Value { r#type: Entity, value: "e77065f3fec741d989ed86ab01d4e999" } +SetTriple: 3c131edc89e84fb6a514d2f034da3585, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 3c131edc89e84fb6a514d2f034da3585, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3c131edc89e84fb6a514d2f034da3585, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3c131edc89e84fb6a514d2f034da3585, To entity, Value { r#type: Entity, value: "34f535072e6b42c5a84443981a77cfa2" } +SetTriple: 3c131edc89e84fb6a514d2f034da3585, From entity, Value { r#type: Entity, value: "63352fac43ee4dbca4cb3c3827d15208" } +SetTriple: 58747e352a1c4c76ae64bfe08d28d0a4, Name, Value { r#type: Text, value: "Height" } +SetTriple: cf510f26b9ac4a00a57d7ff46dc7204c, Index, Value { r#type: Text, value: "a0" } +SetTriple: cf510f26b9ac4a00a57d7ff46dc7204c, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 19aa087737d340b5ac8ea862998fd1b0, From entity, Value { r#type: Entity, value: "58747e352a1c4c76ae64bfe08d28d0a4" } +SetTriple: 19aa087737d340b5ac8ea862998fd1b0, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 19aa087737d340b5ac8ea862998fd1b0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 19aa087737d340b5ac8ea862998fd1b0, Index, Value { r#type: Text, value: "a0" } +SetTriple: 19aa087737d340b5ac8ea862998fd1b0, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 18a7f15ea93b4e15bacf4d57052741e9, Name, Value { r#type: Text, value: "Width" } +SetTriple: 03d3a32b258f492e8d81c9ee2bc01461, Name, Value { r#type: Text, value: "File type" } +SetTriple: 11152387a95f41c28a6c468bace92f98, From entity, Value { r#type: Entity, value: "18a7f15ea93b4e15bacf4d57052741e9" } +SetTriple: 11152387a95f41c28a6c468bace92f98, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 11152387a95f41c28a6c468bace92f98, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 11152387a95f41c28a6c468bace92f98, Index, Value { r#type: Text, value: "a0" } +SetTriple: 11152387a95f41c28a6c468bace92f98, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: f10decc83c67403280c88ca8b9d7017f, From entity, Value { r#type: Entity, value: "ba4e41460010499da0a3caaa7f579d0e" } +SetTriple: f10decc83c67403280c88ca8b9d7017f, To entity, Value { r#type: Entity, value: "18a7f15ea93b4e15bacf4d57052741e9" } +SetTriple: f10decc83c67403280c88ca8b9d7017f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f10decc83c67403280c88ca8b9d7017f, Index, Value { r#type: Text, value: "a0" } +SetTriple: f10decc83c67403280c88ca8b9d7017f, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: cf510f26b9ac4a00a57d7ff46dc7204c, From entity, Value { r#type: Entity, value: "18a7f15ea93b4e15bacf4d57052741e9" } +SetTriple: cf510f26b9ac4a00a57d7ff46dc7204c, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: cf510f26b9ac4a00a57d7ff46dc7204c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: eacf5a65f4a34a0cbdf27d96f34dbe84, From entity, Value { r#type: Entity, value: "ba4e41460010499da0a3caaa7f579d0e" } +SetTriple: eacf5a65f4a34a0cbdf27d96f34dbe84, To entity, Value { r#type: Entity, value: "58747e352a1c4c76ae64bfe08d28d0a4" } +SetTriple: eacf5a65f4a34a0cbdf27d96f34dbe84, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: eacf5a65f4a34a0cbdf27d96f34dbe84, Index, Value { r#type: Text, value: "a0" } +SetTriple: eacf5a65f4a34a0cbdf27d96f34dbe84, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: d29098acb7884959a1743cf9642c1c94, From entity, Value { r#type: Entity, value: "58747e352a1c4c76ae64bfe08d28d0a4" } +SetTriple: d29098acb7884959a1743cf9642c1c94, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: d29098acb7884959a1743cf9642c1c94, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d29098acb7884959a1743cf9642c1c94, Index, Value { r#type: Text, value: "a0" } +SetTriple: d29098acb7884959a1743cf9642c1c94, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 9f124c395bbd4a108cb278bfb3e3f323, From entity, Value { r#type: Entity, value: "03d3a32b258f492e8d81c9ee2bc01461" } +SetTriple: 9f124c395bbd4a108cb278bfb3e3f323, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 9f124c395bbd4a108cb278bfb3e3f323, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9f124c395bbd4a108cb278bfb3e3f323, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9f124c395bbd4a108cb278bfb3e3f323, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: b5511a45d520457a8966ca6222889bbf, From entity, Value { r#type: Entity, value: "ba4e41460010499da0a3caaa7f579d0e" } +SetTriple: b5511a45d520457a8966ca6222889bbf, To entity, Value { r#type: Entity, value: "03d3a32b258f492e8d81c9ee2bc01461" } +SetTriple: b5511a45d520457a8966ca6222889bbf, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b5511a45d520457a8966ca6222889bbf, Index, Value { r#type: Text, value: "a0" } +SetTriple: b5511a45d520457a8966ca6222889bbf, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 0f2dbe49171043909ec5fe64a8412b1c, From entity, Value { r#type: Entity, value: "03d3a32b258f492e8d81c9ee2bc01461" } +SetTriple: 0f2dbe49171043909ec5fe64a8412b1c, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: 0f2dbe49171043909ec5fe64a8412b1c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0f2dbe49171043909ec5fe64a8412b1c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0f2dbe49171043909ec5fe64a8412b1c, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 57ebfd451c544e3f9780bfc516900651, From entity, Value { r#type: Entity, value: "ba4e41460010499da0a3caaa7f579d0e" } +SetTriple: 57ebfd451c544e3f9780bfc516900651, To entity, Value { r#type: Entity, value: "150243a93a2f4c92997a3ba3fa1a6c75" } +SetTriple: 57ebfd451c544e3f9780bfc516900651, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 57ebfd451c544e3f9780bfc516900651, Index, Value { r#type: Text, value: "a0" } +SetTriple: 57ebfd451c544e3f9780bfc516900651, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: ad3327063ec941819ef6c918f37f788c, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 227c2cf595694e7ca86f7869e37b176f, From entity, Value { r#type: Entity, value: "5ec8adc335334c3cbfa4acdfaa877bac" } +SetTriple: 227c2cf595694e7ca86f7869e37b176f, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 227c2cf595694e7ca86f7869e37b176f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 227c2cf595694e7ca86f7869e37b176f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 227c2cf595694e7ca86f7869e37b176f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: ad3327063ec941819ef6c918f37f788c, From entity, Value { r#type: Entity, value: "1a9fc4a00fec4eeaa075eec7ebd0d043" } +SetTriple: ad3327063ec941819ef6c918f37f788c, To entity, Value { r#type: Entity, value: "5ec8adc335334c3cbfa4acdfaa877bac" } +SetTriple: 5ec8adc335334c3cbfa4acdfaa877bac, Name, Value { r#type: Text, value: "Page type" } +SetTriple: ad3327063ec941819ef6c918f37f788c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ad3327063ec941819ef6c918f37f788c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 76e03aaadec94830bdfa8b8a95ea63db, From entity, Value { r#type: Entity, value: "7171ce7a83b940a2abe2751a54c1c245" } +SetTriple: 76e03aaadec94830bdfa8b8a95ea63db, To entity, Value { r#type: Entity, value: "5ec8adc335334c3cbfa4acdfaa877bac" } +SetTriple: 7171ce7a83b940a2abe2751a54c1c245, Name, Value { r#type: Text, value: "Projects page" } +SetTriple: 76e03aaadec94830bdfa8b8a95ea63db, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 76e03aaadec94830bdfa8b8a95ea63db, Index, Value { r#type: Text, value: "a0" } +SetTriple: 76e03aaadec94830bdfa8b8a95ea63db, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 4614a1a1ce31401e8e1ccbbddecbb88f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4614a1a1ce31401e8e1ccbbddecbb88f, From entity, Value { r#type: Entity, value: "5ec8adc335334c3cbfa4acdfaa877bac" } +SetTriple: 4614a1a1ce31401e8e1ccbbddecbb88f, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 4614a1a1ce31401e8e1ccbbddecbb88f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4614a1a1ce31401e8e1ccbbddecbb88f, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 1ab3d3fec337409884d25d20c23e974b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1ab3d3fec337409884d25d20c23e974b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1ab3d3fec337409884d25d20c23e974b, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: e1ebe12256e545159ee31e6107673f2e, From entity, Value { r#type: Entity, value: "f20af8deb57c472ab13d0247c46a8eeb" } +SetTriple: e1ebe12256e545159ee31e6107673f2e, To entity, Value { r#type: Entity, value: "5ec8adc335334c3cbfa4acdfaa877bac" } +SetTriple: e1ebe12256e545159ee31e6107673f2e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e1ebe12256e545159ee31e6107673f2e, Index, Value { r#type: Text, value: "a0" } +SetTriple: e1ebe12256e545159ee31e6107673f2e, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: abc2eaa848aa4393b944f08ca605edf4, From entity, Value { r#type: Entity, value: "6764f3827ff247e2b2ad295791153705" } +SetTriple: abc2eaa848aa4393b944f08ca605edf4, To entity, Value { r#type: Entity, value: "5ec8adc335334c3cbfa4acdfaa877bac" } +SetTriple: abc2eaa848aa4393b944f08ca605edf4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: abc2eaa848aa4393b944f08ca605edf4, Index, Value { r#type: Text, value: "a0" } +SetTriple: abc2eaa848aa4393b944f08ca605edf4, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: c5a6d0bae9b14e429156b93b06511d44, From entity, Value { r#type: Entity, value: "e5d69a755ede4a56b43344e5d3fde7bc" } +SetTriple: c5a6d0bae9b14e429156b93b06511d44, To entity, Value { r#type: Entity, value: "5ec8adc335334c3cbfa4acdfaa877bac" } +SetTriple: c5a6d0bae9b14e429156b93b06511d44, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c5a6d0bae9b14e429156b93b06511d44, Index, Value { r#type: Text, value: "a0" } +SetTriple: c5a6d0bae9b14e429156b93b06511d44, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: d62f6bb38e05453b87baeed22b8425f6, From entity, Value { r#type: Entity, value: "bb2917434c394223afba91a08aa83478" } +SetTriple: d62f6bb38e05453b87baeed22b8425f6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d62f6bb38e05453b87baeed22b8425f6, To entity, Value { r#type: Entity, value: "5ec8adc335334c3cbfa4acdfaa877bac" } +SetTriple: d62f6bb38e05453b87baeed22b8425f6, Index, Value { r#type: Text, value: "a0" } +SetTriple: d62f6bb38e05453b87baeed22b8425f6, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 25ef4dfbae8a41bca94ec2720e92608c, From entity, Value { r#type: Entity, value: "abb4700856554b27bae8e7dba063b394" } +SetTriple: 25ef4dfbae8a41bca94ec2720e92608c, To entity, Value { r#type: Entity, value: "5ec8adc335334c3cbfa4acdfaa877bac" } +SetTriple: 25ef4dfbae8a41bca94ec2720e92608c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 25ef4dfbae8a41bca94ec2720e92608c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 25ef4dfbae8a41bca94ec2720e92608c, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 3a1405e9ca28432abb5f1f033b40224e, From entity, Value { r#type: Entity, value: "970e41c7196e42d3af0ecee755651d5b" } +SetTriple: 3a1405e9ca28432abb5f1f033b40224e, To entity, Value { r#type: Entity, value: "5ec8adc335334c3cbfa4acdfaa877bac" } +SetTriple: 3a1405e9ca28432abb5f1f033b40224e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3a1405e9ca28432abb5f1f033b40224e, Index, Value { r#type: Text, value: "a0" } +SetTriple: bb2917434c394223afba91a08aa83478, Name, Value { r#type: Text, value: "Events page" } +SetTriple: 970e41c7196e42d3af0ecee755651d5b, Name, Value { r#type: Text, value: "Spaces page" } +SetTriple: e5d69a755ede4a56b43344e5d3fde7bc, Name, Value { r#type: Text, value: "Services page" } +SetTriple: 6764f3827ff247e2b2ad295791153705, Name, Value { r#type: Text, value: "Products page" } +SetTriple: f20af8deb57c472ab13d0247c46a8eeb, Name, Value { r#type: Text, value: "Finances page" } +SetTriple: e73c3db8320042309ae952eddb73b566, Name, Value { r#type: Text, value: "Posts page" } +SetTriple: abb4700856554b27bae8e7dba063b394, Name, Value { r#type: Text, value: "Jobs page" } +SetTriple: 3a1405e9ca28432abb5f1f033b40224e, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 1ab3d3fec337409884d25d20c23e974b, From entity, Value { r#type: Entity, value: "e73c3db8320042309ae952eddb73b566" } +SetTriple: 1ab3d3fec337409884d25d20c23e974b, To entity, Value { r#type: Entity, value: "5ec8adc335334c3cbfa4acdfaa877bac" } +SetTriple: 2573f44196474c5686965fc01149037d, From entity, Value { r#type: Entity, value: "8f5e618f781644cbb795300e8078bf15" } +SetTriple: 64275be648e84e82a27c48e700c3a1b5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: eb8634eb62534b44b359c4358d86dea6, Filter, Value { r#type: Text, value: "{typeIds_contains_nocase: [\"f71912463dca4e778a79d9cdc9804127\"], entityOf_: {space: \"ab7d4b9e02f840dab9746d352acb0ac6\"}}" } +SetTriple: e11582c36e26497099c8da2e550fd1db, Markdown Content, Value { r#type: Text, value: "## Welcome to our company!\n\n" } +SetTriple: e703ad3af1d0443f8204721c29ff2df4, Markdown Content, Value { r#type: Text, value: "We're dedicated to pushing boundaries and fostering innovation. With a focus on excellence and a passion for progress, we strive to make a positive impact in everything we do. From our talented team to our cutting-edge solutions, we're committed to delivering unparalleled quality and service to our customers.\n\n" } +SetTriple: 73ba2ef1cb75477a844c3ae5a0f45165, From entity, Value { r#type: Entity, value: "8f5e618f781644cbb795300e8078bf15" } +SetTriple: 73ba2ef1cb75477a844c3ae5a0f45165, To entity, Value { r#type: Entity, value: "e11582c36e26497099c8da2e550fd1db" } +SetTriple: 64275be648e84e82a27c48e700c3a1b5, From entity, Value { r#type: Entity, value: "8f5e618f781644cbb795300e8078bf15" } +SetTriple: 64275be648e84e82a27c48e700c3a1b5, To entity, Value { r#type: Entity, value: "e703ad3af1d0443f8204721c29ff2df4" } +SetTriple: ab5fb827a4e84107b5176abea670ff4b, From entity, Value { r#type: Entity, value: "8f5e618f781644cbb795300e8078bf15" } +SetTriple: ab5fb827a4e84107b5176abea670ff4b, To entity, Value { r#type: Entity, value: "eb8634eb62534b44b359c4358d86dea6" } +SetTriple: 64275be648e84e82a27c48e700c3a1b5, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 64275be648e84e82a27c48e700c3a1b5, Index, Value { r#type: Text, value: "a1" } +SetTriple: ec689c0e18364915bd16535c9c304867, From entity, Value { r#type: Entity, value: "8f5e618f781644cbb795300e8078bf15" } +SetTriple: ec689c0e18364915bd16535c9c304867, To entity, Value { r#type: Entity, value: "1d5d0c2adb23466ca0b09abe879df457" } +SetTriple: ec689c0e18364915bd16535c9c304867, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ec689c0e18364915bd16535c9c304867, Index, Value { r#type: Text, value: "a0" } +SetTriple: ec689c0e18364915bd16535c9c304867, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 84066bb39219459f8a2e629d07192c00, From entity, Value { r#type: Entity, value: "8f5e618f781644cbb795300e8078bf15" } +SetTriple: 84066bb39219459f8a2e629d07192c00, To entity, Value { r#type: Entity, value: "9cc8a65ddf924c0c8d9024980e822dc0" } +SetTriple: 84066bb39219459f8a2e629d07192c00, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 84066bb39219459f8a2e629d07192c00, Index, Value { r#type: Text, value: "a0" } +SetTriple: 84066bb39219459f8a2e629d07192c00, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: bd6160ecf6e74a1cb77b24f88d305bbd, From entity, Value { r#type: Entity, value: "e11582c36e26497099c8da2e550fd1db" } +SetTriple: bd6160ecf6e74a1cb77b24f88d305bbd, To entity, Value { r#type: Entity, value: "8f5e618f781644cbb795300e8078bf15" } +SetTriple: bd6160ecf6e74a1cb77b24f88d305bbd, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bd6160ecf6e74a1cb77b24f88d305bbd, Index, Value { r#type: Text, value: "a0" } +SetTriple: bd6160ecf6e74a1cb77b24f88d305bbd, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 84a5fe88c11f4642975249a9f1b4141a, From entity, Value { r#type: Entity, value: "e11582c36e26497099c8da2e550fd1db" } +SetTriple: 84a5fe88c11f4642975249a9f1b4141a, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: 84a5fe88c11f4642975249a9f1b4141a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 84a5fe88c11f4642975249a9f1b4141a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 84a5fe88c11f4642975249a9f1b4141a, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: bbea8e13a2514fdf8e465d7b82898615, From entity, Value { r#type: Entity, value: "e703ad3af1d0443f8204721c29ff2df4" } +SetTriple: bbea8e13a2514fdf8e465d7b82898615, To entity, Value { r#type: Entity, value: "8f5e618f781644cbb795300e8078bf15" } +SetTriple: bbea8e13a2514fdf8e465d7b82898615, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bbea8e13a2514fdf8e465d7b82898615, Index, Value { r#type: Text, value: "a0" } +SetTriple: bbea8e13a2514fdf8e465d7b82898615, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 62c82fc55b89457baf9736dd6c7e8e11, From entity, Value { r#type: Entity, value: "e703ad3af1d0443f8204721c29ff2df4" } +SetTriple: 62c82fc55b89457baf9736dd6c7e8e11, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: 62c82fc55b89457baf9736dd6c7e8e11, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 62c82fc55b89457baf9736dd6c7e8e11, Index, Value { r#type: Text, value: "a0" } +SetTriple: 62c82fc55b89457baf9736dd6c7e8e11, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 2573f44196474c5686965fc01149037d, To entity, Value { r#type: Entity, value: "f71912463dca4e778a79d9cdc9804127" } +SetTriple: 2573f44196474c5686965fc01149037d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2573f44196474c5686965fc01149037d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2573f44196474c5686965fc01149037d, Relation type, Value { r#type: Entity, value: "be74597305a94cd0a46d1c5538270faf" } +SetTriple: 73f9d3e831cb4dc59c84090a5551c210, From entity, Value { r#type: Entity, value: "eb8634eb62534b44b359c4358d86dea6" } +SetTriple: 73f9d3e831cb4dc59c84090a5551c210, To entity, Value { r#type: Entity, value: "8f5e618f781644cbb795300e8078bf15" } +SetTriple: 73f9d3e831cb4dc59c84090a5551c210, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 73f9d3e831cb4dc59c84090a5551c210, Index, Value { r#type: Text, value: "a0" } +SetTriple: 73f9d3e831cb4dc59c84090a5551c210, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 2f5014438dbd4b8b8bcc504139213703, From entity, Value { r#type: Entity, value: "eb8634eb62534b44b359c4358d86dea6" } +SetTriple: 2f5014438dbd4b8b8bcc504139213703, To entity, Value { r#type: Entity, value: "f71912463dca4e778a79d9cdc9804127" } +SetTriple: 2f5014438dbd4b8b8bcc504139213703, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2f5014438dbd4b8b8bcc504139213703, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2f5014438dbd4b8b8bcc504139213703, Relation type, Value { r#type: Entity, value: "577bd9fbb29e4e2bb5f8f48aedbd26ac" } +SetTriple: 50afafc8916f4baa89229b8752fb7e03, From entity, Value { r#type: Entity, value: "eb8634eb62534b44b359c4358d86dea6" } +SetTriple: 50afafc8916f4baa89229b8752fb7e03, To entity, Value { r#type: Entity, value: "88d5925217ae4d9aa36724710129eb47" } +SetTriple: 50afafc8916f4baa89229b8752fb7e03, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 50afafc8916f4baa89229b8752fb7e03, Index, Value { r#type: Text, value: "a0" } +SetTriple: 50afafc8916f4baa89229b8752fb7e03, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: eb8634eb62534b44b359c4358d86dea6, Name, Value { r#type: Text, value: "Goals" } +SetTriple: e703ad3af1d0443f8204721c29ff2df4, Name, Value { r#type: Text, value: "We're dedicated to p" } +SetTriple: e11582c36e26497099c8da2e550fd1db, Name, Value { r#type: Text, value: "Welcome to our compa" } +SetTriple: 8f5e618f781644cbb795300e8078bf15, Name, Value { r#type: Text, value: "Company Space Configuration Template" } +SetTriple: 73ba2ef1cb75477a844c3ae5a0f45165, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 73ba2ef1cb75477a844c3ae5a0f45165, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 73ba2ef1cb75477a844c3ae5a0f45165, Index, Value { r#type: Text, value: "a0" } +SetTriple: ab5fb827a4e84107b5176abea670ff4b, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: ab5fb827a4e84107b5176abea670ff4b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ab5fb827a4e84107b5176abea670ff4b, Index, Value { r#type: Text, value: "a2" } +SetTriple: 372c47acdf634772b44df07fa83eaa2a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 372c47acdf634772b44df07fa83eaa2a, Relation type, Value { r#type: Entity, value: "5ec8adc335334c3cbfa4acdfaa877bac" } +SetTriple: 33d227c8ca7b4cd8911b84c5e05f028f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1c434902e46241a68751a05ead10a32f, Name, Value { r#type: Text, value: "Posts" } +SetTriple: 90bd4735b2214059a5cd4f3215ab79d1, Name, Value { r#type: Text, value: "Company Posts Page Template" } +SetTriple: 749823fe65924622af2a13a47f3a1abd, Index, Value { r#type: Text, value: "a0" } +SetTriple: 749823fe65924622af2a13a47f3a1abd, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 749823fe65924622af2a13a47f3a1abd, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: b7fd263e6ef54531bfc71f6b7eab617d, From entity, Value { r#type: Entity, value: "90bd4735b2214059a5cd4f3215ab79d1" } +SetTriple: 33d227c8ca7b4cd8911b84c5e05f028f, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 749823fe65924622af2a13a47f3a1abd, From entity, Value { r#type: Entity, value: "90bd4735b2214059a5cd4f3215ab79d1" } +SetTriple: b7fd263e6ef54531bfc71f6b7eab617d, To entity, Value { r#type: Entity, value: "1a9fc4a00fec4eeaa075eec7ebd0d043" } +SetTriple: b7fd263e6ef54531bfc71f6b7eab617d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 749823fe65924622af2a13a47f3a1abd, To entity, Value { r#type: Entity, value: "1c434902e46241a68751a05ead10a32f" } +SetTriple: b7fd263e6ef54531bfc71f6b7eab617d, Index, Value { r#type: Text, value: "a0" } +SetTriple: b7fd263e6ef54531bfc71f6b7eab617d, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 33d227c8ca7b4cd8911b84c5e05f028f, From entity, Value { r#type: Entity, value: "1c434902e46241a68751a05ead10a32f" } +SetTriple: 33d227c8ca7b4cd8911b84c5e05f028f, To entity, Value { r#type: Entity, value: "90bd4735b2214059a5cd4f3215ab79d1" } +SetTriple: 33d227c8ca7b4cd8911b84c5e05f028f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 372c47acdf634772b44df07fa83eaa2a, To entity, Value { r#type: Entity, value: "e73c3db8320042309ae952eddb73b566" } +SetTriple: 372c47acdf634772b44df07fa83eaa2a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 372c47acdf634772b44df07fa83eaa2a, From entity, Value { r#type: Entity, value: "90bd4735b2214059a5cd4f3215ab79d1" } +SetTriple: f1e34b361acf41ef92deb57599ccc6a6, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: f1e34b361acf41ef92deb57599ccc6a6, Index, Value { r#type: Text, value: "a0" } +SetTriple: f1e34b361acf41ef92deb57599ccc6a6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f1e34b361acf41ef92deb57599ccc6a6, To entity, Value { r#type: Entity, value: "88d5925217ae4d9aa36724710129eb47" } +SetTriple: f1e34b361acf41ef92deb57599ccc6a6, From entity, Value { r#type: Entity, value: "1c434902e46241a68751a05ead10a32f" } +SetTriple: 131a4780e61b4787a4fc371db1d4aba3, Relation type, Value { r#type: Entity, value: "577bd9fbb29e4e2bb5f8f48aedbd26ac" } +SetTriple: 131a4780e61b4787a4fc371db1d4aba3, Index, Value { r#type: Text, value: "a0" } +SetTriple: 131a4780e61b4787a4fc371db1d4aba3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 131a4780e61b4787a4fc371db1d4aba3, To entity, Value { r#type: Entity, value: "682fbeff41e242cda7f9c4909136a8c5" } +SetTriple: 131a4780e61b4787a4fc371db1d4aba3, From entity, Value { r#type: Entity, value: "1c434902e46241a68751a05ead10a32f" } +SetTriple: Posts, Filter, Value { r#type: Text, value: "{typeIds_contains_nocase: [\"682fbeff41e242cda7f9c4909136a8c5\"], entityOf_: {space: \"ab7d4b9e02f840dab9746d352acb0ac6\"}}" } +SetTriple: 304fe75b321b4ad48bb3753abe651c96, Filter, Value { r#type: Text, value: "{typeIds_contains_nocase: [\"2056da31f55343b4b3668ee094719719\"], entityOf_: {space: \"ab7d4b9e02f840dab9746d352acb0ac6\"}}" } +SetTriple: 304fe75b321b4ad48bb3753abe651c96, Name, Value { r#type: Text, value: "Products" } +SetTriple: 6e9da70f357a4fc5b9d58de5840db16a, Name, Value { r#type: Text, value: "Company Products Page Template" } +SetTriple: acea18cbe143488488e0df9e5f239043, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: acea18cbe143488488e0df9e5f239043, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: acea18cbe143488488e0df9e5f239043, Index, Value { r#type: Text, value: "a0" } +SetTriple: acea18cbe143488488e0df9e5f239043, To entity, Value { r#type: Entity, value: "304fe75b321b4ad48bb3753abe651c96" } +SetTriple: acea18cbe143488488e0df9e5f239043, From entity, Value { r#type: Entity, value: "6e9da70f357a4fc5b9d58de5840db16a" } +SetTriple: 34aa52de12d34460926b0286a36ddb40, From entity, Value { r#type: Entity, value: "6e9da70f357a4fc5b9d58de5840db16a" } +SetTriple: 34aa52de12d34460926b0286a36ddb40, To entity, Value { r#type: Entity, value: "6764f3827ff247e2b2ad295791153705" } +SetTriple: 34aa52de12d34460926b0286a36ddb40, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 34aa52de12d34460926b0286a36ddb40, Index, Value { r#type: Text, value: "a0" } +SetTriple: 34aa52de12d34460926b0286a36ddb40, Relation type, Value { r#type: Entity, value: "5ec8adc335334c3cbfa4acdfaa877bac" } +SetTriple: e6c5fb7a81624a6ea12f9f009515d9bf, From entity, Value { r#type: Entity, value: "6e9da70f357a4fc5b9d58de5840db16a" } +SetTriple: e6c5fb7a81624a6ea12f9f009515d9bf, To entity, Value { r#type: Entity, value: "1a9fc4a00fec4eeaa075eec7ebd0d043" } +SetTriple: e6c5fb7a81624a6ea12f9f009515d9bf, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e6c5fb7a81624a6ea12f9f009515d9bf, Index, Value { r#type: Text, value: "a0" } +SetTriple: e6c5fb7a81624a6ea12f9f009515d9bf, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: c232da4bac9d49c5933ee5fd3e590623, From entity, Value { r#type: Entity, value: "304fe75b321b4ad48bb3753abe651c96" } +SetTriple: c232da4bac9d49c5933ee5fd3e590623, To entity, Value { r#type: Entity, value: "6e9da70f357a4fc5b9d58de5840db16a" } +SetTriple: c232da4bac9d49c5933ee5fd3e590623, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c232da4bac9d49c5933ee5fd3e590623, Index, Value { r#type: Text, value: "a0" } +SetTriple: c232da4bac9d49c5933ee5fd3e590623, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: dc467de70a3240e98c1ec7c845c6e44c, From entity, Value { r#type: Entity, value: "304fe75b321b4ad48bb3753abe651c96" } +SetTriple: dc467de70a3240e98c1ec7c845c6e44c, To entity, Value { r#type: Entity, value: "2056da31f55343b4b3668ee094719719" } +SetTriple: dc467de70a3240e98c1ec7c845c6e44c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: dc467de70a3240e98c1ec7c845c6e44c, Index, Value { r#type: Text, value: "a0" } +SetTriple: dc467de70a3240e98c1ec7c845c6e44c, Relation type, Value { r#type: Entity, value: "577bd9fbb29e4e2bb5f8f48aedbd26ac" } +SetTriple: 461c0a4a513c4c47adf842a2c0fdaa47, From entity, Value { r#type: Entity, value: "304fe75b321b4ad48bb3753abe651c96" } +SetTriple: 461c0a4a513c4c47adf842a2c0fdaa47, To entity, Value { r#type: Entity, value: "88d5925217ae4d9aa36724710129eb47" } +SetTriple: 461c0a4a513c4c47adf842a2c0fdaa47, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 461c0a4a513c4c47adf842a2c0fdaa47, Index, Value { r#type: Text, value: "a0" } +SetTriple: 461c0a4a513c4c47adf842a2c0fdaa47, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 4cc87ac591d1478ca7fcff4b699f6378, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4cc87ac591d1478ca7fcff4b699f6378, From entity, Value { r#type: Entity, value: "d572b1248b5e40948c6c25e531fc8a33" } +SetTriple: 4cc87ac591d1478ca7fcff4b699f6378, To entity, Value { r#type: Entity, value: "1a9fc4a00fec4eeaa075eec7ebd0d043" } +SetTriple: 4cc87ac591d1478ca7fcff4b699f6378, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4cc87ac591d1478ca7fcff4b699f6378, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 1767d6a2d4dc450d9f6a512588b01715, From entity, Value { r#type: Entity, value: "cef8c309b14d493ab40f19e7d830ed65" } +SetTriple: 1767d6a2d4dc450d9f6a512588b01715, To entity, Value { r#type: Entity, value: "d572b1248b5e40948c6c25e531fc8a33" } +SetTriple: 1767d6a2d4dc450d9f6a512588b01715, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1767d6a2d4dc450d9f6a512588b01715, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1767d6a2d4dc450d9f6a512588b01715, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 6859583c1cd44a0d98030bc7cfcd45b6, From entity, Value { r#type: Entity, value: "cef8c309b14d493ab40f19e7d830ed65" } +SetTriple: 6859583c1cd44a0d98030bc7cfcd45b6, To entity, Value { r#type: Entity, value: "8b07ea978d504aa38f15e4da8659f685" } +SetTriple: 6859583c1cd44a0d98030bc7cfcd45b6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6859583c1cd44a0d98030bc7cfcd45b6, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6859583c1cd44a0d98030bc7cfcd45b6, Relation type, Value { r#type: Entity, value: "577bd9fbb29e4e2bb5f8f48aedbd26ac" } +SetTriple: d9cdefd57b19431797d5c4755d96e6e5, From entity, Value { r#type: Entity, value: "cef8c309b14d493ab40f19e7d830ed65" } +SetTriple: d9cdefd57b19431797d5c4755d96e6e5, To entity, Value { r#type: Entity, value: "88d5925217ae4d9aa36724710129eb47" } +SetTriple: d9cdefd57b19431797d5c4755d96e6e5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d9cdefd57b19431797d5c4755d96e6e5, Index, Value { r#type: Text, value: "a0" } +SetTriple: d9cdefd57b19431797d5c4755d96e6e5, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 80813def677646c994e41ff8c7301153, From entity, Value { r#type: Entity, value: "d572b1248b5e40948c6c25e531fc8a33" } +SetTriple: 80813def677646c994e41ff8c7301153, To entity, Value { r#type: Entity, value: "e5d69a755ede4a56b43344e5d3fde7bc" } +SetTriple: 80813def677646c994e41ff8c7301153, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 80813def677646c994e41ff8c7301153, Index, Value { r#type: Text, value: "a0" } +SetTriple: 80813def677646c994e41ff8c7301153, Relation type, Value { r#type: Entity, value: "5ec8adc335334c3cbfa4acdfaa877bac" } +SetTriple: 7e51eb024d8a443396c1f038d974f600, From entity, Value { r#type: Entity, value: "d572b1248b5e40948c6c25e531fc8a33" } +SetTriple: 7e51eb024d8a443396c1f038d974f600, To entity, Value { r#type: Entity, value: "cef8c309b14d493ab40f19e7d830ed65" } +SetTriple: 7e51eb024d8a443396c1f038d974f600, Index, Value { r#type: Text, value: "a0" } +SetTriple: d572b1248b5e40948c6c25e531fc8a33, Name, Value { r#type: Text, value: "Company Services Page Template" } +SetTriple: cef8c309b14d493ab40f19e7d830ed65, Name, Value { r#type: Text, value: "Services" } +SetTriple: Services, Filter, Value { r#type: Text, value: "{typeIds_contains_nocase: [\"8b07ea978d504aa38f15e4da8659f685\"], entityOf_: {space: \"ab7d4b9e02f840dab9746d352acb0ac6\"}}" } +SetTriple: 7e51eb024d8a443396c1f038d974f600, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 7e51eb024d8a443396c1f038d974f600, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 727d0936a87f437292226149eb7a4210, To entity, Value { r#type: Entity, value: "bb2917434c394223afba91a08aa83478" } +SetTriple: b87fe2c300244529bbaa647b9f1eed36, To entity, Value { r#type: Entity, value: "6885104d79ea4db2a64cc8e8512533ea" } +SetTriple: 10ce25d10aa34dbf806eab4ff720ffa7, Name, Value { r#type: Text, value: "Events" } +SetTriple: 306bd621f82f4b0d85dcfc376a0c5394, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 306bd621f82f4b0d85dcfc376a0c5394, To entity, Value { r#type: Entity, value: "88d5925217ae4d9aa36724710129eb47" } +SetTriple: 306bd621f82f4b0d85dcfc376a0c5394, From entity, Value { r#type: Entity, value: "10ce25d10aa34dbf806eab4ff720ffa7" } +SetTriple: 7c5d156798cd4d578e5f99f786f25f0a, Relation type, Value { r#type: Entity, value: "577bd9fbb29e4e2bb5f8f48aedbd26ac" } +SetTriple: 201fcc56eed74de2a6150261721f3614, From entity, Value { r#type: Entity, value: "6885104d79ea4db2a64cc8e8512533ea" } +SetTriple: 7c5d156798cd4d578e5f99f786f25f0a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7c5d156798cd4d578e5f99f786f25f0a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: Events, Filter, Value { r#type: Text, value: "{typeIds_contains_nocase: [\"38fea29845a648d6bf253c608dcca3fb\"], entityOf_: {space: \"ab7d4b9e02f840dab9746d352acb0ac6\"}}" } +SetTriple: 7c5d156798cd4d578e5f99f786f25f0a, To entity, Value { r#type: Entity, value: "38fea29845a648d6bf253c608dcca3fb" } +SetTriple: 59ab32bff26b41158c8113689b24b6c4, Index, Value { r#type: Text, value: "a0" } +SetTriple: 201fcc56eed74de2a6150261721f3614, To entity, Value { r#type: Entity, value: "10ce25d10aa34dbf806eab4ff720ffa7" } +SetTriple: b87fe2c300244529bbaa647b9f1eed36, From entity, Value { r#type: Entity, value: "10ce25d10aa34dbf806eab4ff720ffa7" } +SetTriple: 306bd621f82f4b0d85dcfc376a0c5394, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 727d0936a87f437292226149eb7a4210, From entity, Value { r#type: Entity, value: "6885104d79ea4db2a64cc8e8512533ea" } +SetTriple: 306bd621f82f4b0d85dcfc376a0c5394, Index, Value { r#type: Text, value: "a0" } +SetTriple: b87fe2c300244529bbaa647b9f1eed36, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 59ab32bff26b41158c8113689b24b6c4, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 727d0936a87f437292226149eb7a4210, Relation type, Value { r#type: Entity, value: "5ec8adc335334c3cbfa4acdfaa877bac" } +SetTriple: b87fe2c300244529bbaa647b9f1eed36, Index, Value { r#type: Text, value: "a0" } +SetTriple: b87fe2c300244529bbaa647b9f1eed36, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 6885104d79ea4db2a64cc8e8512533ea, Name, Value { r#type: Text, value: "Company Events Page Template" } +SetTriple: 59ab32bff26b41158c8113689b24b6c4, From entity, Value { r#type: Entity, value: "6885104d79ea4db2a64cc8e8512533ea" } +SetTriple: 59ab32bff26b41158c8113689b24b6c4, To entity, Value { r#type: Entity, value: "1a9fc4a00fec4eeaa075eec7ebd0d043" } +SetTriple: 201fcc56eed74de2a6150261721f3614, Index, Value { r#type: Text, value: "a0" } +SetTriple: 201fcc56eed74de2a6150261721f3614, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 201fcc56eed74de2a6150261721f3614, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 727d0936a87f437292226149eb7a4210, Index, Value { r#type: Text, value: "a0" } +SetTriple: 59ab32bff26b41158c8113689b24b6c4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7c5d156798cd4d578e5f99f786f25f0a, From entity, Value { r#type: Entity, value: "10ce25d10aa34dbf806eab4ff720ffa7" } +SetTriple: 727d0936a87f437292226149eb7a4210, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6ebc80c30ffe4e70a37f5415301bd1e0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a1ece4a34d614952873802d3b2b3e42b, Index, Value { r#type: Text, value: "a0" } +SetTriple: f3573be065a24b5b9e59d788ffc4491b, From entity, Value { r#type: Entity, value: "9a7528b37fb041c492c31650b70aae69" } +SetTriple: f3573be065a24b5b9e59d788ffc4491b, To entity, Value { r#type: Entity, value: "fd78802d5f0f4cc4a7aa05c1f09d2a49" } +SetTriple: 9a7528b37fb041c492c31650b70aae69, Name, Value { r#type: Text, value: "Company Jobs Page Template" } +SetTriple: fd78802d5f0f4cc4a7aa05c1f09d2a49, Name, Value { r#type: Text, value: "Job openings" } +SetTriple: f3573be065a24b5b9e59d788ffc4491b, Index, Value { r#type: Text, value: "a0" } +SetTriple: f3573be065a24b5b9e59d788ffc4491b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f3573be065a24b5b9e59d788ffc4491b, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: a1ece4a34d614952873802d3b2b3e42b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d70aaff6e972436eac4b753a8c132d66, From entity, Value { r#type: Entity, value: "9a7528b37fb041c492c31650b70aae69" } +SetTriple: d70aaff6e972436eac4b753a8c132d66, To entity, Value { r#type: Entity, value: "abb4700856554b27bae8e7dba063b394" } +SetTriple: a1ece4a34d614952873802d3b2b3e42b, To entity, Value { r#type: Entity, value: "9a7528b37fb041c492c31650b70aae69" } +SetTriple: a1ece4a34d614952873802d3b2b3e42b, From entity, Value { r#type: Entity, value: "fd78802d5f0f4cc4a7aa05c1f09d2a49" } +SetTriple: 8878a5e5ed3841a086201ba22ab795a0, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 8878a5e5ed3841a086201ba22ab795a0, Index, Value { r#type: Text, value: "a0" } +SetTriple: 8878a5e5ed3841a086201ba22ab795a0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d70aaff6e972436eac4b753a8c132d66, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8878a5e5ed3841a086201ba22ab795a0, To entity, Value { r#type: Entity, value: "1a9fc4a00fec4eeaa075eec7ebd0d043" } +SetTriple: 8878a5e5ed3841a086201ba22ab795a0, From entity, Value { r#type: Entity, value: "9a7528b37fb041c492c31650b70aae69" } +SetTriple: d70aaff6e972436eac4b753a8c132d66, Index, Value { r#type: Text, value: "a0" } +SetTriple: d70aaff6e972436eac4b753a8c132d66, Relation type, Value { r#type: Entity, value: "5ec8adc335334c3cbfa4acdfaa877bac" } +SetTriple: 6ebc80c30ffe4e70a37f5415301bd1e0, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 6ebc80c30ffe4e70a37f5415301bd1e0, Index, Value { r#type: Text, value: "a0" } +SetTriple: a1ece4a34d614952873802d3b2b3e42b, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 6ebc80c30ffe4e70a37f5415301bd1e0, To entity, Value { r#type: Entity, value: "88d5925217ae4d9aa36724710129eb47" } +SetTriple: 6ebc80c30ffe4e70a37f5415301bd1e0, From entity, Value { r#type: Entity, value: "fd78802d5f0f4cc4a7aa05c1f09d2a49" } +SetTriple: 64428c74d18c4b14bf2fe03c0701e899, Relation type, Value { r#type: Entity, value: "577bd9fbb29e4e2bb5f8f48aedbd26ac" } +SetTriple: 64428c74d18c4b14bf2fe03c0701e899, Index, Value { r#type: Text, value: "a0" } +SetTriple: 64428c74d18c4b14bf2fe03c0701e899, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 64428c74d18c4b14bf2fe03c0701e899, To entity, Value { r#type: Entity, value: "bc2a4e5b115e44e99758c639a13f32a4" } +SetTriple: Job openings, Filter, Value { r#type: Text, value: "{typeIds_contains_nocase: [\"bc2a4e5b115e44e99758c639a13f32a4\"], entityOf_: {space: \"ab7d4b9e02f840dab9746d352acb0ac6\"}}" } +SetTriple: 64428c74d18c4b14bf2fe03c0701e899, From entity, Value { r#type: Entity, value: "fd78802d5f0f4cc4a7aa05c1f09d2a49" } +SetTriple: 03e1f2515d5a4653997768c578399dd3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 03e1f2515d5a4653997768c578399dd3, To entity, Value { r#type: Entity, value: "2db21ea578264dfdbbbacf7de0570e08" } +SetTriple: 03e1f2515d5a4653997768c578399dd3, From entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: 03e1f2515d5a4653997768c578399dd3, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 03e1f2515d5a4653997768c578399dd3, Index, Value { r#type: Text, value: "a0" } +SetTriple: eb0db1c0c58b42a6bee6f2b29ccb4814, Index, Value { r#type: Text, value: "a0" } +SetTriple: eb0db1c0c58b42a6bee6f2b29ccb4814, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: eb0db1c0c58b42a6bee6f2b29ccb4814, From entity, Value { r#type: Entity, value: "2db21ea578264dfdbbbacf7de0570e08" } +SetTriple: eb0db1c0c58b42a6bee6f2b29ccb4814, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: eb0db1c0c58b42a6bee6f2b29ccb4814, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c7f19f560c184635be979e9a0515d9b3, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: f1bd1b7dd66d476b86a1baff4d196aa5, From entity, Value { r#type: Entity, value: "d9c7a579a41143c384506be1593f8d3d" } +SetTriple: f1bd1b7dd66d476b86a1baff4d196aa5, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: f1bd1b7dd66d476b86a1baff4d196aa5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f1bd1b7dd66d476b86a1baff4d196aa5, Index, Value { r#type: Text, value: "a0" } +SetTriple: f1bd1b7dd66d476b86a1baff4d196aa5, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 67a255ba41584a69bc4aebe074a02b63, From entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: 67a255ba41584a69bc4aebe074a02b63, To entity, Value { r#type: Entity, value: "d9c7a579a41143c384506be1593f8d3d" } +SetTriple: 67a255ba41584a69bc4aebe074a02b63, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 67a255ba41584a69bc4aebe074a02b63, Index, Value { r#type: Text, value: "a0" } +SetTriple: 67a255ba41584a69bc4aebe074a02b63, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: ee77c5948c7b44dbb11d2b596eb626be, From entity, Value { r#type: Entity, value: "d9c7a579a41143c384506be1593f8d3d" } +SetTriple: ee77c5948c7b44dbb11d2b596eb626be, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: ee77c5948c7b44dbb11d2b596eb626be, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ee77c5948c7b44dbb11d2b596eb626be, Index, Value { r#type: Text, value: "a0" } +SetTriple: ee77c5948c7b44dbb11d2b596eb626be, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 08de0c1ce33f48368b55e3bcdd1cb76b, From entity, Value { r#type: Entity, value: "bc37561e6f3f4fb39982418da6d268d3" } +SetTriple: 08de0c1ce33f48368b55e3bcdd1cb76b, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 08de0c1ce33f48368b55e3bcdd1cb76b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 08de0c1ce33f48368b55e3bcdd1cb76b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 08de0c1ce33f48368b55e3bcdd1cb76b, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: c7f19f560c184635be979e9a0515d9b3, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: c7f19f560c184635be979e9a0515d9b3, To entity, Value { r#type: Entity, value: "bc37561e6f3f4fb39982418da6d268d3" } +SetTriple: c7f19f560c184635be979e9a0515d9b3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c7f19f560c184635be979e9a0515d9b3, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9bb89d530939490294b65fd329c69b1b, From entity, Value { r#type: Entity, value: "bc37561e6f3f4fb39982418da6d268d3" } +SetTriple: 9bb89d530939490294b65fd329c69b1b, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: 9bb89d530939490294b65fd329c69b1b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9bb89d530939490294b65fd329c69b1b, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9bb89d530939490294b65fd329c69b1b, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: d9c7a579a41143c384506be1593f8d3d, Name, Value { r#type: Text, value: "Editors" } +SetTriple: bc37561e6f3f4fb39982418da6d268d3, Name, Value { r#type: Text, value: "Cover credits" } +SetTriple: Cover credits, Description, Value { r#type: Text, value: "Acknowledgments given to individuals or entities contributing to the creation of a cover, including photographers, designers, artists, AIs, and explorers." } +SetTriple: Editors, Description, Value { r#type: Text, value: "Explorers currently editing and adding new content." } +SetTriple: bd25f6b81bce4b678097c2f55368dd55, Index, Value { r#type: Text, value: "a0" } +SetTriple: bd25f6b81bce4b678097c2f55368dd55, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bd25f6b81bce4b678097c2f55368dd55, To entity, Value { r#type: Entity, value: "bc37561e6f3f4fb39982418da6d268d3" } +SetTriple: 467f1410a9774be5bf64dec76498b947, Index, Value { r#type: Text, value: "a0" } +SetTriple: 467f1410a9774be5bf64dec76498b947, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 467f1410a9774be5bf64dec76498b947, To entity, Value { r#type: Entity, value: "d9c7a579a41143c384506be1593f8d3d" } +SetTriple: 467f1410a9774be5bf64dec76498b947, From entity, Value { r#type: Entity, value: "08be6f595e5f48ba9e8efe39a6fd1a63" } +SetTriple: da85b58da48a4b3babe57ee8a4988d3c, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: bd25f6b81bce4b678097c2f55368dd55, From entity, Value { r#type: Entity, value: "b10408748be747a7b15298c320681d61" } +SetTriple: da85b58da48a4b3babe57ee8a4988d3c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0bf047c5c14f481aa2aeb69eb9438caa, Index, Value { r#type: Text, value: "a0" } +SetTriple: da85b58da48a4b3babe57ee8a4988d3c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: da85b58da48a4b3babe57ee8a4988d3c, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: da85b58da48a4b3babe57ee8a4988d3c, From entity, Value { r#type: Entity, value: "d9c7a579a41143c384506be1593f8d3d" } +SetTriple: 0bf047c5c14f481aa2aeb69eb9438caa, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 0bf047c5c14f481aa2aeb69eb9438caa, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0bf047c5c14f481aa2aeb69eb9438caa, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 0bf047c5c14f481aa2aeb69eb9438caa, From entity, Value { r#type: Entity, value: "bc37561e6f3f4fb39982418da6d268d3" } +SetTriple: 2fee13fb5b4e43f4a0956c86bc3cb30c, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 2fee13fb5b4e43f4a0956c86bc3cb30c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 2fee13fb5b4e43f4a0956c86bc3cb30c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2fee13fb5b4e43f4a0956c86bc3cb30c, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: Cover credits, Description, Value { r#type: Text, value: "Acknowledgments given to individuals or entities contributing to the creation of a cover, including photographers, designers, artists, AIs, and explorers." } +SetTriple: Cover credits, Name, Value { r#type: Text, value: "Cover credits" } +SetTriple: 2fee13fb5b4e43f4a0956c86bc3cb30c, From entity, Value { r#type: Entity, value: "d9c7a579a41143c384506be1593f8d3d" } +SetTriple: 467f1410a9774be5bf64dec76498b947, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: Editors, Description, Value { r#type: Text, value: "Explorers currently editing and adding new content." } +SetTriple: Editors, Name, Value { r#type: Text, value: "Editors" } +SetTriple: c0ee8fa81ae84509ac8e32705498de9f, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: c0ee8fa81ae84509ac8e32705498de9f, Index, Value { r#type: Text, value: "a0" } +SetTriple: c0ee8fa81ae84509ac8e32705498de9f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c0ee8fa81ae84509ac8e32705498de9f, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: c0ee8fa81ae84509ac8e32705498de9f, From entity, Value { r#type: Entity, value: "bc37561e6f3f4fb39982418da6d268d3" } +SetTriple: bd25f6b81bce4b678097c2f55368dd55, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 59d8162cb8cb4b6d938a238491bece82, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 91df03e5a50848f68394d2fa038946b1, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 91df03e5a50848f68394d2fa038946b1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 91df03e5a50848f68394d2fa038946b1, Index, Value { r#type: Text, value: "a1" } +SetTriple: 2c2a37ae733d4b29a6b2c36af3328031, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: cc26deb23c8d43ca99fd8f9e14154155, From entity, Value { r#type: Entity, value: "df388a8b27f54676b2376a59ca4a3e79" } +SetTriple: cc26deb23c8d43ca99fd8f9e14154155, To entity, Value { r#type: Entity, value: "1d5d0c2adb23466ca0b09abe879df457" } +SetTriple: cc26deb23c8d43ca99fd8f9e14154155, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: cc26deb23c8d43ca99fd8f9e14154155, Index, Value { r#type: Text, value: "a0" } +SetTriple: cc26deb23c8d43ca99fd8f9e14154155, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 4c90feb5d04d431cadaa64aa5df4a758, From entity, Value { r#type: Entity, value: "df388a8b27f54676b2376a59ca4a3e79" } +SetTriple: 4c90feb5d04d431cadaa64aa5df4a758, To entity, Value { r#type: Entity, value: "b3b03c909b6d487cb2e2a7d685f120eb" } +SetTriple: 4c90feb5d04d431cadaa64aa5df4a758, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4c90feb5d04d431cadaa64aa5df4a758, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4c90feb5d04d431cadaa64aa5df4a758, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 3f05a0fff4c54805bcdbd72611433b2e, From entity, Value { r#type: Entity, value: "df388a8b27f54676b2376a59ca4a3e79" } +SetTriple: 3f05a0fff4c54805bcdbd72611433b2e, To entity, Value { r#type: Entity, value: "cb9d261d456b4eaf87e51e9faa441867" } +SetTriple: 3f05a0fff4c54805bcdbd72611433b2e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3f05a0fff4c54805bcdbd72611433b2e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3f05a0fff4c54805bcdbd72611433b2e, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: eaea7ca84beb46868868cb65bf75ce7f, From entity, Value { r#type: Entity, value: "df388a8b27f54676b2376a59ca4a3e79" } +SetTriple: eaea7ca84beb46868868cb65bf75ce7f, To entity, Value { r#type: Entity, value: "f71912463dca4e778a79d9cdc9804127" } +SetTriple: eaea7ca84beb46868868cb65bf75ce7f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: eaea7ca84beb46868868cb65bf75ce7f, Index, Value { r#type: Text, value: "a0" } +SetTriple: eaea7ca84beb46868868cb65bf75ce7f, Relation type, Value { r#type: Entity, value: "be74597305a94cd0a46d1c5538270faf" } +SetTriple: 67e540b8ee1e4a91a5506bf51a79d229, From entity, Value { r#type: Entity, value: "df388a8b27f54676b2376a59ca4a3e79" } +SetTriple: 67e540b8ee1e4a91a5506bf51a79d229, To entity, Value { r#type: Entity, value: "1a9fc4a00fec4eeaa075eec7ebd0d043" } +SetTriple: 67e540b8ee1e4a91a5506bf51a79d229, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 67e540b8ee1e4a91a5506bf51a79d229, Index, Value { r#type: Text, value: "a0" } +SetTriple: 67e540b8ee1e4a91a5506bf51a79d229, Relation type, Value { r#type: Entity, value: "be74597305a94cd0a46d1c5538270faf" } +SetTriple: 60d97af7bfae4cbd9bdf4db5bf3e17f3, From entity, Value { r#type: Entity, value: "df388a8b27f54676b2376a59ca4a3e79" } +SetTriple: 60d97af7bfae4cbd9bdf4db5bf3e17f3, To entity, Value { r#type: Entity, value: "3d31f766b65148afa357271343a773de" } +SetTriple: 60d97af7bfae4cbd9bdf4db5bf3e17f3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 60d97af7bfae4cbd9bdf4db5bf3e17f3, Index, Value { r#type: Text, value: "a0" } +SetTriple: 60d97af7bfae4cbd9bdf4db5bf3e17f3, Relation type, Value { r#type: Entity, value: "be74597305a94cd0a46d1c5538270faf" } +SetTriple: f1f6c04195da4fcab531495b4af1940e, From entity, Value { r#type: Entity, value: "df388a8b27f54676b2376a59ca4a3e79" } +SetTriple: f1f6c04195da4fcab531495b4af1940e, To entity, Value { r#type: Entity, value: "682fbeff41e242cda7f9c4909136a8c5" } +SetTriple: f1f6c04195da4fcab531495b4af1940e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f1f6c04195da4fcab531495b4af1940e, Index, Value { r#type: Text, value: "a0" } +SetTriple: f1f6c04195da4fcab531495b4af1940e, Relation type, Value { r#type: Entity, value: "be74597305a94cd0a46d1c5538270faf" } +SetTriple: 4eb29d47c04e4583af72b4cca8b168a6, From entity, Value { r#type: Entity, value: "df388a8b27f54676b2376a59ca4a3e79" } +SetTriple: 4eb29d47c04e4583af72b4cca8b168a6, To entity, Value { r#type: Entity, value: "cb9d261d456b4eaf87e51e9faa441867" } +SetTriple: 4eb29d47c04e4583af72b4cca8b168a6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4eb29d47c04e4583af72b4cca8b168a6, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4eb29d47c04e4583af72b4cca8b168a6, Relation type, Value { r#type: Entity, value: "be74597305a94cd0a46d1c5538270faf" } +SetTriple: bd1d01a958cb44f19716265a8c5b2716, From entity, Value { r#type: Entity, value: "df388a8b27f54676b2376a59ca4a3e79" } +SetTriple: bd1d01a958cb44f19716265a8c5b2716, To entity, Value { r#type: Entity, value: "2cc9d24459ea427f9257f1362a5fa952" } +SetTriple: bd1d01a958cb44f19716265a8c5b2716, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: bd1d01a958cb44f19716265a8c5b2716, Index, Value { r#type: Text, value: "a0" } +SetTriple: bd1d01a958cb44f19716265a8c5b2716, Relation type, Value { r#type: Entity, value: "be74597305a94cd0a46d1c5538270faf" } +SetTriple: 801e7b111c334d36a20ec28d98f52acc, From entity, Value { r#type: Entity, value: "bac0ab29bcf24af3b167971b221ff9b9" } +SetTriple: 801e7b111c334d36a20ec28d98f52acc, To entity, Value { r#type: Entity, value: "df388a8b27f54676b2376a59ca4a3e79" } +SetTriple: 801e7b111c334d36a20ec28d98f52acc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 801e7b111c334d36a20ec28d98f52acc, Index, Value { r#type: Text, value: "a0" } +SetTriple: 801e7b111c334d36a20ec28d98f52acc, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: a2172002dd9f44dea1159bf834ca9c1e, From entity, Value { r#type: Entity, value: "bac0ab29bcf24af3b167971b221ff9b9" } +SetTriple: a2172002dd9f44dea1159bf834ca9c1e, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: a2172002dd9f44dea1159bf834ca9c1e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a2172002dd9f44dea1159bf834ca9c1e, Index, Value { r#type: Text, value: "a0" } +SetTriple: a2172002dd9f44dea1159bf834ca9c1e, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 59d8162cb8cb4b6d938a238491bece82, From entity, Value { r#type: Entity, value: "5dc4d85d6c1044c6a85cd43ad76123ef" } +SetTriple: 59d8162cb8cb4b6d938a238491bece82, To entity, Value { r#type: Entity, value: "df388a8b27f54676b2376a59ca4a3e79" } +SetTriple: 59d8162cb8cb4b6d938a238491bece82, Index, Value { r#type: Text, value: "a0" } +SetTriple: 59d8162cb8cb4b6d938a238491bece82, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: ecdbef0a50a14b9bbe8469f56f78edbc, From entity, Value { r#type: Entity, value: "5dc4d85d6c1044c6a85cd43ad76123ef" } +SetTriple: ecdbef0a50a14b9bbe8469f56f78edbc, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: ecdbef0a50a14b9bbe8469f56f78edbc, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ecdbef0a50a14b9bbe8469f56f78edbc, Index, Value { r#type: Text, value: "a0" } +SetTriple: ecdbef0a50a14b9bbe8469f56f78edbc, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 2c2a37ae733d4b29a6b2c36af3328031, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5dc4d85d6c1044c6a85cd43ad76123ef, Markdown Content, Value { r#type: Text, value: "We're thrilled to have you here. At our core, we are driven by a passionate commitment to positive change. As a community, we believe in the power of collective action to make a difference, no matter how big or small. Together, we can create meaningful impact and contribute to a better world. Thank you for joining us on this journey towards a brighter future.\n\n" } +SetTriple: bac0ab29bcf24af3b167971b221ff9b9, Markdown Content, Value { r#type: Text, value: "## Welcome to our nonprofit!\n\n" } +SetTriple: 5dc4d85d6c1044c6a85cd43ad76123ef, Name, Value { r#type: Text, value: "We're thrilled to ha" } +SetTriple: bac0ab29bcf24af3b167971b221ff9b9, Name, Value { r#type: Text, value: "Welcome to our nonpr" } +SetTriple: df388a8b27f54676b2376a59ca4a3e79, Name, Value { r#type: Text, value: "Nonprofit Space Configuration Template" } +SetTriple: 91df03e5a50848f68394d2fa038946b1, To entity, Value { r#type: Entity, value: "5dc4d85d6c1044c6a85cd43ad76123ef" } +SetTriple: 91df03e5a50848f68394d2fa038946b1, From entity, Value { r#type: Entity, value: "df388a8b27f54676b2376a59ca4a3e79" } +SetTriple: 2c2a37ae733d4b29a6b2c36af3328031, To entity, Value { r#type: Entity, value: "bac0ab29bcf24af3b167971b221ff9b9" } +SetTriple: 2c2a37ae733d4b29a6b2c36af3328031, From entity, Value { r#type: Entity, value: "df388a8b27f54676b2376a59ca4a3e79" } +SetTriple: 2c2a37ae733d4b29a6b2c36af3328031, Index, Value { r#type: Text, value: "a0" } +SetTriple: 052ba73506df45f784fa43d90ac4fad0, From entity, Value { r#type: Entity, value: "d370fe7af7784a5283984140cdc9bbad" } +SetTriple: 3748f46b7bb94e23a93ed9a032e70696, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: d370fe7af7784a5283984140cdc9bbad, Name, Value { r#type: Text, value: "Nonprofit Posts Page Template" } +SetTriple: 3748f46b7bb94e23a93ed9a032e70696, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3748f46b7bb94e23a93ed9a032e70696, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3748f46b7bb94e23a93ed9a032e70696, To entity, Value { r#type: Entity, value: "88d5925217ae4d9aa36724710129eb47" } +SetTriple: 3748f46b7bb94e23a93ed9a032e70696, From entity, Value { r#type: Entity, value: "a72a7109e72747038e4a621d8696bb55" } +SetTriple: feb28939c55647d9a5634b0377b88b5e, Relation type, Value { r#type: Entity, value: "577bd9fbb29e4e2bb5f8f48aedbd26ac" } +SetTriple: feb28939c55647d9a5634b0377b88b5e, Index, Value { r#type: Text, value: "a0" } +SetTriple: feb28939c55647d9a5634b0377b88b5e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a72a7109e72747038e4a621d8696bb55, Name, Value { r#type: Text, value: "Posts" } +SetTriple: Posts, Filter, Value { r#type: Text, value: "{typeIds_contains_nocase: [\"682fbeff41e242cda7f9c4909136a8c5\"], entityOf_: {space: \"ab7d4b9e02f840dab9746d352acb0ac6\"}}" } +SetTriple: feb28939c55647d9a5634b0377b88b5e, To entity, Value { r#type: Entity, value: "682fbeff41e242cda7f9c4909136a8c5" } +SetTriple: feb28939c55647d9a5634b0377b88b5e, From entity, Value { r#type: Entity, value: "a72a7109e72747038e4a621d8696bb55" } +SetTriple: 9ab3ec939bc54094be62a9b53f97ac40, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 9ab3ec939bc54094be62a9b53f97ac40, Index, Value { r#type: Text, value: "a0" } +SetTriple: 9ab3ec939bc54094be62a9b53f97ac40, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9ab3ec939bc54094be62a9b53f97ac40, To entity, Value { r#type: Entity, value: "d370fe7af7784a5283984140cdc9bbad" } +SetTriple: 9ab3ec939bc54094be62a9b53f97ac40, From entity, Value { r#type: Entity, value: "a72a7109e72747038e4a621d8696bb55" } +SetTriple: c301c796f1f042268400aedfa4b2d540, Relation type, Value { r#type: Entity, value: "5ec8adc335334c3cbfa4acdfaa877bac" } +SetTriple: c301c796f1f042268400aedfa4b2d540, Index, Value { r#type: Text, value: "a0" } +SetTriple: c301c796f1f042268400aedfa4b2d540, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c301c796f1f042268400aedfa4b2d540, To entity, Value { r#type: Entity, value: "e73c3db8320042309ae952eddb73b566" } +SetTriple: c301c796f1f042268400aedfa4b2d540, From entity, Value { r#type: Entity, value: "d370fe7af7784a5283984140cdc9bbad" } +SetTriple: 088d56f9ce4f4e94b23a5b83318b00be, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 088d56f9ce4f4e94b23a5b83318b00be, Index, Value { r#type: Text, value: "a0" } +SetTriple: 088d56f9ce4f4e94b23a5b83318b00be, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 088d56f9ce4f4e94b23a5b83318b00be, To entity, Value { r#type: Entity, value: "1a9fc4a00fec4eeaa075eec7ebd0d043" } +SetTriple: 088d56f9ce4f4e94b23a5b83318b00be, From entity, Value { r#type: Entity, value: "d370fe7af7784a5283984140cdc9bbad" } +SetTriple: 052ba73506df45f784fa43d90ac4fad0, Index, Value { r#type: Text, value: "a0" } +SetTriple: 052ba73506df45f784fa43d90ac4fad0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 052ba73506df45f784fa43d90ac4fad0, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 052ba73506df45f784fa43d90ac4fad0, To entity, Value { r#type: Entity, value: "a72a7109e72747038e4a621d8696bb55" } +SetTriple: 896b7ef05dca4a2ba9d8f2f232fc0bd4, Relation type, Value { r#type: Entity, value: "577bd9fbb29e4e2bb5f8f48aedbd26ac" } +SetTriple: 15bb7d57c026479b9811058547bd5b21, To entity, Value { r#type: Entity, value: "8dc566c2deee42a489b18ccc24526ab2" } +SetTriple: 15bb7d57c026479b9811058547bd5b21, Index, Value { r#type: Text, value: "a0" } +SetTriple: 15bb7d57c026479b9811058547bd5b21, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 15bb7d57c026479b9811058547bd5b21, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: ddce09f82413449e973551e2998551b9, Name, Value { r#type: Text, value: "Nonprofit Projects Page Template" } +SetTriple: 8dc566c2deee42a489b18ccc24526ab2, Name, Value { r#type: Text, value: "Projects" } +SetTriple: c6514eaa353e4b098b0567df521c9ac9, From entity, Value { r#type: Entity, value: "8dc566c2deee42a489b18ccc24526ab2" } +SetTriple: c6514eaa353e4b098b0567df521c9ac9, To entity, Value { r#type: Entity, value: "88d5925217ae4d9aa36724710129eb47" } +SetTriple: 32622ac59f1044989134ece5cb2d04e9, From entity, Value { r#type: Entity, value: "ddce09f82413449e973551e2998551b9" } +SetTriple: c6514eaa353e4b098b0567df521c9ac9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c6514eaa353e4b098b0567df521c9ac9, Index, Value { r#type: Text, value: "a0" } +SetTriple: c6514eaa353e4b098b0567df521c9ac9, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 15bb7d57c026479b9811058547bd5b21, From entity, Value { r#type: Entity, value: "ddce09f82413449e973551e2998551b9" } +SetTriple: 32622ac59f1044989134ece5cb2d04e9, To entity, Value { r#type: Entity, value: "1a9fc4a00fec4eeaa075eec7ebd0d043" } +SetTriple: 32622ac59f1044989134ece5cb2d04e9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 32622ac59f1044989134ece5cb2d04e9, Index, Value { r#type: Text, value: "a0" } +SetTriple: 32622ac59f1044989134ece5cb2d04e9, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 1193ba7bcae14c77a430abe25770d43f, From entity, Value { r#type: Entity, value: "ddce09f82413449e973551e2998551b9" } +SetTriple: 2f68f41d28df42f48f02937939b2a335, From entity, Value { r#type: Entity, value: "8dc566c2deee42a489b18ccc24526ab2" } +SetTriple: 2f68f41d28df42f48f02937939b2a335, To entity, Value { r#type: Entity, value: "ddce09f82413449e973551e2998551b9" } +SetTriple: 2f68f41d28df42f48f02937939b2a335, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 2f68f41d28df42f48f02937939b2a335, Index, Value { r#type: Text, value: "a0" } +SetTriple: Projects, Filter, Value { r#type: Text, value: "{typeIds_contains_nocase: [\"cb9d261d456b4eaf87e51e9faa441867\"], entityOf_: {space: \"ab7d4b9e02f840dab9746d352acb0ac6\"}}" } +SetTriple: 2f68f41d28df42f48f02937939b2a335, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 1193ba7bcae14c77a430abe25770d43f, To entity, Value { r#type: Entity, value: "7171ce7a83b940a2abe2751a54c1c245" } +SetTriple: 1193ba7bcae14c77a430abe25770d43f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1193ba7bcae14c77a430abe25770d43f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1193ba7bcae14c77a430abe25770d43f, Relation type, Value { r#type: Entity, value: "5ec8adc335334c3cbfa4acdfaa877bac" } +SetTriple: 896b7ef05dca4a2ba9d8f2f232fc0bd4, From entity, Value { r#type: Entity, value: "8dc566c2deee42a489b18ccc24526ab2" } +SetTriple: 896b7ef05dca4a2ba9d8f2f232fc0bd4, To entity, Value { r#type: Entity, value: "cb9d261d456b4eaf87e51e9faa441867" } +SetTriple: 896b7ef05dca4a2ba9d8f2f232fc0bd4, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 896b7ef05dca4a2ba9d8f2f232fc0bd4, Index, Value { r#type: Text, value: "a0" } +SetTriple: 42f73d38184b4a3c8a75a347bff1099d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3be01e21822742e0bd40868957e3ede2, Name, Value { r#type: Text, value: "Nonprofit Finances Page Template" } +SetTriple: 627395eec4ab498985959e2e6630b704, Name, Value { r#type: Text, value: "Welcome to the finan" } +SetTriple: 4f8e88f2250c42cf8d6b86a4249c1a6c, Name, Value { r#type: Text, value: "Finance Summaries" } +SetTriple: Finance Summaries, Filter, Value { r#type: Text, value: "{typeIds_contains_nocase: [\"ce59ccc12ac54ace8f8209322434733d\"], entityOf_: {space: \"ab7d4b9e02f840dab9746d352acb0ac6\"}}" } +SetTriple: b664390b714840c1ac34dec57fdf652c, Index, Value { r#type: Text, value: "a0" } +SetTriple: b664390b714840c1ac34dec57fdf652c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b664390b714840c1ac34dec57fdf652c, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 708989bbec634ec79863d35cca234fd5, Index, Value { r#type: Text, value: "a1" } +SetTriple: 708989bbec634ec79863d35cca234fd5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 708989bbec634ec79863d35cca234fd5, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 708989bbec634ec79863d35cca234fd5, To entity, Value { r#type: Entity, value: "4f8e88f2250c42cf8d6b86a4249c1a6c" } +SetTriple: 708989bbec634ec79863d35cca234fd5, From entity, Value { r#type: Entity, value: "3be01e21822742e0bd40868957e3ede2" } +SetTriple: b664390b714840c1ac34dec57fdf652c, To entity, Value { r#type: Entity, value: "627395eec4ab498985959e2e6630b704" } +SetTriple: b664390b714840c1ac34dec57fdf652c, From entity, Value { r#type: Entity, value: "3be01e21822742e0bd40868957e3ede2" } +SetTriple: 10eaf9db212647f1b79c90a236a4d684, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 10eaf9db212647f1b79c90a236a4d684, Index, Value { r#type: Text, value: "a0" } +SetTriple: 10eaf9db212647f1b79c90a236a4d684, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 10eaf9db212647f1b79c90a236a4d684, To entity, Value { r#type: Entity, value: "88d5925217ae4d9aa36724710129eb47" } +SetTriple: 10eaf9db212647f1b79c90a236a4d684, From entity, Value { r#type: Entity, value: "4f8e88f2250c42cf8d6b86a4249c1a6c" } +SetTriple: c792c3aec6364ce8927cea4308b2270b, Relation type, Value { r#type: Entity, value: "577bd9fbb29e4e2bb5f8f48aedbd26ac" } +SetTriple: c792c3aec6364ce8927cea4308b2270b, Index, Value { r#type: Text, value: "a0" } +SetTriple: c792c3aec6364ce8927cea4308b2270b, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: c792c3aec6364ce8927cea4308b2270b, To entity, Value { r#type: Entity, value: "ce59ccc12ac54ace8f8209322434733d" } +SetTriple: c792c3aec6364ce8927cea4308b2270b, From entity, Value { r#type: Entity, value: "4f8e88f2250c42cf8d6b86a4249c1a6c" } +SetTriple: f0671aa9f85b427dbbd2df10122665a9, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: f0671aa9f85b427dbbd2df10122665a9, Index, Value { r#type: Text, value: "a0" } +SetTriple: f0671aa9f85b427dbbd2df10122665a9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f0671aa9f85b427dbbd2df10122665a9, To entity, Value { r#type: Entity, value: "3be01e21822742e0bd40868957e3ede2" } +SetTriple: f0671aa9f85b427dbbd2df10122665a9, From entity, Value { r#type: Entity, value: "4f8e88f2250c42cf8d6b86a4249c1a6c" } +SetTriple: 17cc1049a76949919062a3c8e8dc9acf, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 17cc1049a76949919062a3c8e8dc9acf, Index, Value { r#type: Text, value: "a0" } +SetTriple: Welcome to the finan, Markdown Content, Value { r#type: Text, value: "Welcome to the finance summary of this nonprofit.\n\n" } +SetTriple: 17cc1049a76949919062a3c8e8dc9acf, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 17cc1049a76949919062a3c8e8dc9acf, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: 17cc1049a76949919062a3c8e8dc9acf, From entity, Value { r#type: Entity, value: "627395eec4ab498985959e2e6630b704" } +SetTriple: 42f73d38184b4a3c8a75a347bff1099d, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 42f73d38184b4a3c8a75a347bff1099d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 42f73d38184b4a3c8a75a347bff1099d, To entity, Value { r#type: Entity, value: "3be01e21822742e0bd40868957e3ede2" } +SetTriple: 42f73d38184b4a3c8a75a347bff1099d, From entity, Value { r#type: Entity, value: "627395eec4ab498985959e2e6630b704" } +SetTriple: 45de7e25bb4646c4b310c8f85cc65006, Relation type, Value { r#type: Entity, value: "5ec8adc335334c3cbfa4acdfaa877bac" } +SetTriple: 45de7e25bb4646c4b310c8f85cc65006, Index, Value { r#type: Text, value: "a0" } +SetTriple: 45de7e25bb4646c4b310c8f85cc65006, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 45de7e25bb4646c4b310c8f85cc65006, To entity, Value { r#type: Entity, value: "f20af8deb57c472ab13d0247c46a8eeb" } +SetTriple: 45de7e25bb4646c4b310c8f85cc65006, From entity, Value { r#type: Entity, value: "3be01e21822742e0bd40868957e3ede2" } +SetTriple: ec9fe766ba724e15925a506aa291fc76, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: ec9fe766ba724e15925a506aa291fc76, Index, Value { r#type: Text, value: "a0" } +SetTriple: ec9fe766ba724e15925a506aa291fc76, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ec9fe766ba724e15925a506aa291fc76, To entity, Value { r#type: Entity, value: "1a9fc4a00fec4eeaa075eec7ebd0d043" } +SetTriple: ec9fe766ba724e15925a506aa291fc76, From entity, Value { r#type: Entity, value: "3be01e21822742e0bd40868957e3ede2" } +SetTriple: 5e5cf988fc1f46f79f8c6e3dd84c96eb, From entity, Value { r#type: Entity, value: "b2c893a9421e48c3bcb6d0298705596b" } +SetTriple: c0d7aa8ab2d8435084cac4ca7a4219c5, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: c0d7aa8ab2d8435084cac4ca7a4219c5, Index, Value { r#type: Text, value: "a0" } +SetTriple: c0d7aa8ab2d8435084cac4ca7a4219c5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ae01980dca844bc2a7ac4dd122162530, To entity, Value { r#type: Entity, value: "c429f41491e14061a953e539905ba257" } +SetTriple: d35f02191a9e4a588d92e8915598df74, From entity, Value { r#type: Entity, value: "25d4b5bb2f3a4854a9fedf2f5f12b5e4" } +SetTriple: 0b5e22ca83ea4d85972090bc926b1726, Relation type, Value { r#type: Entity, value: "be74597305a94cd0a46d1c5538270faf" } +SetTriple: 0b5e22ca83ea4d85972090bc926b1726, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0b5e22ca83ea4d85972090bc926b1726, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0b5e22ca83ea4d85972090bc926b1726, To entity, Value { r#type: Entity, value: "dd10f854888f453bb789622d8e1df861" } +SetTriple: 8e87169c8c994770b18e95cd81198142, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0b5e22ca83ea4d85972090bc926b1726, From entity, Value { r#type: Entity, value: "25d4b5bb2f3a4854a9fedf2f5f12b5e4" } +SetTriple: cdacfee304e6476f91239b0ffec5eedd, To entity, Value { r#type: Entity, value: "88d5925217ae4d9aa36724710129eb47" } +SetTriple: cdacfee304e6476f91239b0ffec5eedd, From entity, Value { r#type: Entity, value: "85b29d5f71ba47cf96b552be6a18199f" } +SetTriple: b760df33c70a46a9a265f692cdef3cea, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: b760df33c70a46a9a265f692cdef3cea, Index, Value { r#type: Text, value: "a0" } +SetTriple: c0d7aa8ab2d8435084cac4ca7a4219c5, To entity, Value { r#type: Entity, value: "25d4b5bb2f3a4854a9fedf2f5f12b5e4" } +SetTriple: d29eff2b03f34f06931acba45e57623b, Markdown Content, Value { r#type: Text, value: "## Welcome to my personal space\n\n" } +SetTriple: 8e87169c8c994770b18e95cd81198142, Relation type, Value { r#type: Entity, value: "577bd9fbb29e4e2bb5f8f48aedbd26ac" } +SetTriple: 6d4ed9d7d5e44543a2b4efc72fe0747f, From entity, Value { r#type: Entity, value: "c429f41491e14061a953e539905ba257" } +SetTriple: b760df33c70a46a9a265f692cdef3cea, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b760df33c70a46a9a265f692cdef3cea, To entity, Value { r#type: Entity, value: "25d4b5bb2f3a4854a9fedf2f5f12b5e4" } +SetTriple: b760df33c70a46a9a265f692cdef3cea, From entity, Value { r#type: Entity, value: "85b29d5f71ba47cf96b552be6a18199f" } +SetTriple: a3f18193d01c471382c7afaa6f31a69d, Relation type, Value { r#type: Entity, value: "577bd9fbb29e4e2bb5f8f48aedbd26ac" } +SetTriple: 1fa4fea37fe64baeb8c60c273d1ff297, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 1fa4fea37fe64baeb8c60c273d1ff297, Index, Value { r#type: Text, value: "a0" } +SetTriple: 1fa4fea37fe64baeb8c60c273d1ff297, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 1fa4fea37fe64baeb8c60c273d1ff297, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: 1fa4fea37fe64baeb8c60c273d1ff297, From entity, Value { r#type: Entity, value: "d29eff2b03f34f06931acba45e57623b" } +SetTriple: f9c51ed60fb34fc797389cb15e34b761, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: f9c51ed60fb34fc797389cb15e34b761, Index, Value { r#type: Text, value: "a0" } +SetTriple: f9c51ed60fb34fc797389cb15e34b761, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f9c51ed60fb34fc797389cb15e34b761, To entity, Value { r#type: Entity, value: "25d4b5bb2f3a4854a9fedf2f5f12b5e4" } +SetTriple: c0d7aa8ab2d8435084cac4ca7a4219c5, From entity, Value { r#type: Entity, value: "b2c893a9421e48c3bcb6d0298705596b" } +SetTriple: b2c893a9421e48c3bcb6d0298705596b, Markdown Content, Value { r#type: Text, value: "This space is where I compile my interests, posts, collections, and a summary of myself, along with anything else I'd like to share with the broader Geo community.\n\n" } +SetTriple: f9c51ed60fb34fc797389cb15e34b761, From entity, Value { r#type: Entity, value: "d29eff2b03f34f06931acba45e57623b" } +SetTriple: 6d4ed9d7d5e44543a2b4efc72fe0747f, To entity, Value { r#type: Entity, value: "25d4b5bb2f3a4854a9fedf2f5f12b5e4" } +SetTriple: 97cdfbfa0bc84547b1602b237f257bd9, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 97cdfbfa0bc84547b1602b237f257bd9, Index, Value { r#type: Text, value: "a0" } +SetTriple: 97cdfbfa0bc84547b1602b237f257bd9, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 97cdfbfa0bc84547b1602b237f257bd9, To entity, Value { r#type: Entity, value: "88d5925217ae4d9aa36724710129eb47" } +SetTriple: 91bb5d9b158f4f85ae92cc814513170c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 97cdfbfa0bc84547b1602b237f257bd9, From entity, Value { r#type: Entity, value: "c429f41491e14061a953e539905ba257" } +SetTriple: 6d4ed9d7d5e44543a2b4efc72fe0747f, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: 6d4ed9d7d5e44543a2b4efc72fe0747f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6d4ed9d7d5e44543a2b4efc72fe0747f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 85b29d5f71ba47cf96b552be6a18199f, Filter, Value { r#type: Text, value: "{typeIds_contains_nocase: [\"dd10f854888f453bb789622d8e1df861\"], entityOf_: {space: \"ab7d4b9e02f840dab9746d352acb0ac6\"}}" } +SetTriple: c429f41491e14061a953e539905ba257, Filter, Value { r#type: Text, value: "{typeIds_contains_nocase: [\"f71912463dca4e778a79d9cdc9804127\"], entityOf_: {space: \"ab7d4b9e02f840dab9746d352acb0ac6\"}}" } +SetTriple: d29eff2b03f34f06931acba45e57623b, Name, Value { r#type: Text, value: "Welcome to my person" } +SetTriple: 8e87169c8c994770b18e95cd81198142, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a3f18193d01c471382c7afaa6f31a69d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: a3f18193d01c471382c7afaa6f31a69d, To entity, Value { r#type: Entity, value: "dd10f854888f453bb789622d8e1df861" } +SetTriple: a3f18193d01c471382c7afaa6f31a69d, From entity, Value { r#type: Entity, value: "85b29d5f71ba47cf96b552be6a18199f" } +SetTriple: fc917c2681f44e769aafd70bfcc135ef, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: fc917c2681f44e769aafd70bfcc135ef, Index, Value { r#type: Text, value: "a0" } +SetTriple: fc917c2681f44e769aafd70bfcc135ef, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: fc917c2681f44e769aafd70bfcc135ef, To entity, Value { r#type: Entity, value: "1d5d0c2adb23466ca0b09abe879df457" } +SetTriple: fc917c2681f44e769aafd70bfcc135ef, From entity, Value { r#type: Entity, value: "25d4b5bb2f3a4854a9fedf2f5f12b5e4" } +SetTriple: d35f02191a9e4a588d92e8915598df74, Relation type, Value { r#type: Entity, value: "be74597305a94cd0a46d1c5538270faf" } +SetTriple: d35f02191a9e4a588d92e8915598df74, Index, Value { r#type: Text, value: "a0" } +SetTriple: d35f02191a9e4a588d92e8915598df74, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d35f02191a9e4a588d92e8915598df74, To entity, Value { r#type: Entity, value: "f71912463dca4e778a79d9cdc9804127" } +SetTriple: ae01980dca844bc2a7ac4dd122162530, From entity, Value { r#type: Entity, value: "25d4b5bb2f3a4854a9fedf2f5f12b5e4" } +SetTriple: 9330467948d74cdaba9cda8a64d95fd2, To entity, Value { r#type: Entity, value: "b2c893a9421e48c3bcb6d0298705596b" } +SetTriple: 9330467948d74cdaba9cda8a64d95fd2, From entity, Value { r#type: Entity, value: "25d4b5bb2f3a4854a9fedf2f5f12b5e4" } +SetTriple: ae01980dca844bc2a7ac4dd122162530, Index, Value { r#type: Text, value: "a2" } +SetTriple: c429f41491e14061a953e539905ba257, Name, Value { r#type: Text, value: "Goals" } +SetTriple: b2c893a9421e48c3bcb6d0298705596b, Name, Value { r#type: Text, value: "This space is where " } +SetTriple: 85b29d5f71ba47cf96b552be6a18199f, Name, Value { r#type: Text, value: "Skills" } +SetTriple: 25d4b5bb2f3a4854a9fedf2f5f12b5e4, Name, Value { r#type: Text, value: "Person Space Configuration Template" } +SetTriple: 91bb5d9b158f4f85ae92cc814513170c, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 91bb5d9b158f4f85ae92cc814513170c, Index, Value { r#type: Text, value: "a3" } +SetTriple: 5264e89621ad4e60b1102a3b4b52c3b1, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5264e89621ad4e60b1102a3b4b52c3b1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5264e89621ad4e60b1102a3b4b52c3b1, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 9330467948d74cdaba9cda8a64d95fd2, Index, Value { r#type: Text, value: "a1" } +SetTriple: 9330467948d74cdaba9cda8a64d95fd2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 9330467948d74cdaba9cda8a64d95fd2, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 5264e89621ad4e60b1102a3b4b52c3b1, To entity, Value { r#type: Entity, value: "d29eff2b03f34f06931acba45e57623b" } +SetTriple: 5264e89621ad4e60b1102a3b4b52c3b1, From entity, Value { r#type: Entity, value: "25d4b5bb2f3a4854a9fedf2f5f12b5e4" } +SetTriple: cdacfee304e6476f91239b0ffec5eedd, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: a3f18193d01c471382c7afaa6f31a69d, Index, Value { r#type: Text, value: "a0" } +SetTriple: cdacfee304e6476f91239b0ffec5eedd, Index, Value { r#type: Text, value: "a0" } +SetTriple: cdacfee304e6476f91239b0ffec5eedd, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 8e87169c8c994770b18e95cd81198142, To entity, Value { r#type: Entity, value: "f71912463dca4e778a79d9cdc9804127" } +SetTriple: 8e87169c8c994770b18e95cd81198142, From entity, Value { r#type: Entity, value: "c429f41491e14061a953e539905ba257" } +SetTriple: 5e5cf988fc1f46f79f8c6e3dd84c96eb, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 5e5cf988fc1f46f79f8c6e3dd84c96eb, Index, Value { r#type: Text, value: "a0" } +SetTriple: ae01980dca844bc2a7ac4dd122162530, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ae01980dca844bc2a7ac4dd122162530, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 91bb5d9b158f4f85ae92cc814513170c, From entity, Value { r#type: Entity, value: "25d4b5bb2f3a4854a9fedf2f5f12b5e4" } +SetTriple: 91bb5d9b158f4f85ae92cc814513170c, To entity, Value { r#type: Entity, value: "85b29d5f71ba47cf96b552be6a18199f" } +SetTriple: 5e5cf988fc1f46f79f8c6e3dd84c96eb, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5e5cf988fc1f46f79f8c6e3dd84c96eb, To entity, Value { r#type: Entity, value: "8426caa143d647d4a6f100c7c1a9a320" } +SetTriple: 503772592fee47b0add973190cfa8d20, From entity, Value { r#type: Entity, value: "fd8a7109e0934d02bf853aefd3dfa96a" } +SetTriple: 70e680ef88824a9bbad3753b6d8cec9f, From entity, Value { r#type: Entity, value: "026362d45d414b8db6ef8ed10ecd0d89" } +SetTriple: 70e680ef88824a9bbad3753b6d8cec9f, To entity, Value { r#type: Entity, value: "e73c3db8320042309ae952eddb73b566" } +SetTriple: 70e680ef88824a9bbad3753b6d8cec9f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 70e680ef88824a9bbad3753b6d8cec9f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 70e680ef88824a9bbad3753b6d8cec9f, Relation type, Value { r#type: Entity, value: "5ec8adc335334c3cbfa4acdfaa877bac" } +SetTriple: 6a1184253e5446ec967e5d4067e39b04, From entity, Value { r#type: Entity, value: "026362d45d414b8db6ef8ed10ecd0d89" } +SetTriple: 6a1184253e5446ec967e5d4067e39b04, To entity, Value { r#type: Entity, value: "1a9fc4a00fec4eeaa075eec7ebd0d043" } +SetTriple: 6a1184253e5446ec967e5d4067e39b04, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 6a1184253e5446ec967e5d4067e39b04, Index, Value { r#type: Text, value: "a0" } +SetTriple: 6a1184253e5446ec967e5d4067e39b04, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 503772592fee47b0add973190cfa8d20, To entity, Value { r#type: Entity, value: "682fbeff41e242cda7f9c4909136a8c5" } +SetTriple: 503772592fee47b0add973190cfa8d20, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 503772592fee47b0add973190cfa8d20, Index, Value { r#type: Text, value: "a0" } +SetTriple: 503772592fee47b0add973190cfa8d20, Relation type, Value { r#type: Entity, value: "577bd9fbb29e4e2bb5f8f48aedbd26ac" } +SetTriple: de61c4b8e6ad469ca48ee2a4b2ed71e6, From entity, Value { r#type: Entity, value: "fd8a7109e0934d02bf853aefd3dfa96a" } +SetTriple: de61c4b8e6ad469ca48ee2a4b2ed71e6, To entity, Value { r#type: Entity, value: "026362d45d414b8db6ef8ed10ecd0d89" } +SetTriple: de61c4b8e6ad469ca48ee2a4b2ed71e6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: de61c4b8e6ad469ca48ee2a4b2ed71e6, Index, Value { r#type: Text, value: "a0" } +SetTriple: de61c4b8e6ad469ca48ee2a4b2ed71e6, Relation type, Value { r#type: Entity, value: "dd4999b977f04c2ba02b5a26b233854e" } +SetTriple: b4832f886e6b4d5db4bf9b712c542c1e, From entity, Value { r#type: Entity, value: "fd8a7109e0934d02bf853aefd3dfa96a" } +SetTriple: b4832f886e6b4d5db4bf9b712c542c1e, To entity, Value { r#type: Entity, value: "88d5925217ae4d9aa36724710129eb47" } +SetTriple: b4832f886e6b4d5db4bf9b712c542c1e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b4832f886e6b4d5db4bf9b712c542c1e, Index, Value { r#type: Text, value: "a0" } +SetTriple: b4832f886e6b4d5db4bf9b712c542c1e, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 88826c464b1c43749b1012f402ef396c, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 88826c464b1c43749b1012f402ef396c, Index, Value { r#type: Text, value: "a0" } +SetTriple: 88826c464b1c43749b1012f402ef396c, To entity, Value { r#type: Entity, value: "fd8a7109e0934d02bf853aefd3dfa96a" } +SetTriple: 88826c464b1c43749b1012f402ef396c, From entity, Value { r#type: Entity, value: "026362d45d414b8db6ef8ed10ecd0d89" } +SetTriple: fd8a7109e0934d02bf853aefd3dfa96a, Name, Value { r#type: Text, value: "Posts" } +SetTriple: 026362d45d414b8db6ef8ed10ecd0d89, Name, Value { r#type: Text, value: "Person Posts Page Template" } +SetTriple: Posts, Filter, Value { r#type: Text, value: "{typeIds_contains_nocase: [\"682fbeff41e242cda7f9c4909136a8c5\"], entityOf_: {space: \"ab7d4b9e02f840dab9746d352acb0ac6\"}}" } +SetTriple: 88826c464b1c43749b1012f402ef396c, Relation type, Value { r#type: Entity, value: "beaba5cba67741a8b35377030613fc70" } +SetTriple: 3d5161c53ad2422e8129347079e35b86, Index, Value { r#type: Text, value: "a0" } +SetTriple: d2b01a926dc0478bac6d008f6e747801, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: d2b01a926dc0478bac6d008f6e747801, Index, Value { r#type: Text, value: "a0" } +SetTriple: 12026b09a9df4fc683aac4ffe7b3126e, Relation type, Value { r#type: Entity, value: "be74597305a94cd0a46d1c5538270faf" } +SetTriple: d2b01a926dc0478bac6d008f6e747801, Relation type, Value { r#type: Entity, value: "be74597305a94cd0a46d1c5538270faf" } +SetTriple: 12026b09a9df4fc683aac4ffe7b3126e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 12026b09a9df4fc683aac4ffe7b3126e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 12026b09a9df4fc683aac4ffe7b3126e, To entity, Value { r#type: Entity, value: "2c72ace7540444559d2265272a94e874" } +SetTriple: 12026b09a9df4fc683aac4ffe7b3126e, From entity, Value { r#type: Entity, value: "8f5e618f781644cbb795300e8078bf15" } +SetTriple: d2b01a926dc0478bac6d008f6e747801, To entity, Value { r#type: Entity, value: "682fbeff41e242cda7f9c4909136a8c5" } +SetTriple: 3d5161c53ad2422e8129347079e35b86, Relation type, Value { r#type: Entity, value: "be74597305a94cd0a46d1c5538270faf" } +SetTriple: f2b7d797288640f7a91c9ecf788fce15, From entity, Value { r#type: Entity, value: "8f5e618f781644cbb795300e8078bf15" } +SetTriple: f2b7d797288640f7a91c9ecf788fce15, To entity, Value { r#type: Entity, value: "38fea29845a648d6bf253c608dcca3fb" } +SetTriple: f2b7d797288640f7a91c9ecf788fce15, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f2b7d797288640f7a91c9ecf788fce15, Index, Value { r#type: Text, value: "a0" } +SetTriple: f2b7d797288640f7a91c9ecf788fce15, Relation type, Value { r#type: Entity, value: "be74597305a94cd0a46d1c5538270faf" } +SetTriple: b3c73ca87878484e900b7d19d148ddef, From entity, Value { r#type: Entity, value: "8f5e618f781644cbb795300e8078bf15" } +SetTriple: b3c73ca87878484e900b7d19d148ddef, To entity, Value { r#type: Entity, value: "bc2a4e5b115e44e99758c639a13f32a4" } +SetTriple: d2b01a926dc0478bac6d008f6e747801, From entity, Value { r#type: Entity, value: "8f5e618f781644cbb795300e8078bf15" } +SetTriple: b3c73ca87878484e900b7d19d148ddef, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b3c73ca87878484e900b7d19d148ddef, Index, Value { r#type: Text, value: "a0" } +SetTriple: b3c73ca87878484e900b7d19d148ddef, Relation type, Value { r#type: Entity, value: "be74597305a94cd0a46d1c5538270faf" } +SetTriple: 3d5161c53ad2422e8129347079e35b86, From entity, Value { r#type: Entity, value: "8f5e618f781644cbb795300e8078bf15" } +SetTriple: 3d5161c53ad2422e8129347079e35b86, To entity, Value { r#type: Entity, value: "1a9fc4a00fec4eeaa075eec7ebd0d043" } +SetTriple: 3d5161c53ad2422e8129347079e35b86, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 737cba2da33b4904890350505a31b0d6, Index, Value { r#type: Text, value: "a0" } +SetTriple: 48f0132201124d93ab8ed4d9d4a80b38, Index, Value { r#type: Text, value: "a0" } +SetTriple: 48f0132201124d93ab8ed4d9d4a80b38, Relation type, Value { r#type: Entity, value: "be74597305a94cd0a46d1c5538270faf" } +SetTriple: 737cba2da33b4904890350505a31b0d6, From entity, Value { r#type: Entity, value: "8f5e618f781644cbb795300e8078bf15" } +SetTriple: 737cba2da33b4904890350505a31b0d6, To entity, Value { r#type: Entity, value: "8b07ea978d504aa38f15e4da8659f685" } +SetTriple: 737cba2da33b4904890350505a31b0d6, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 737cba2da33b4904890350505a31b0d6, Relation type, Value { r#type: Entity, value: "be74597305a94cd0a46d1c5538270faf" } +SetTriple: 48f0132201124d93ab8ed4d9d4a80b38, From entity, Value { r#type: Entity, value: "8f5e618f781644cbb795300e8078bf15" } +SetTriple: 48f0132201124d93ab8ed4d9d4a80b38, To entity, Value { r#type: Entity, value: "2056da31f55343b4b3668ee094719719" } +SetTriple: 48f0132201124d93ab8ed4d9d4a80b38, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 222b2d8185b740e0ad26889bf0fea05a, From entity, Value { r#type: Entity, value: "df388a8b27f54676b2376a59ca4a3e79" } +SetTriple: 222b2d8185b740e0ad26889bf0fea05a, To entity, Value { r#type: Entity, value: "ce59ccc12ac54ace8f8209322434733d" } +SetTriple: 222b2d8185b740e0ad26889bf0fea05a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 222b2d8185b740e0ad26889bf0fea05a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 222b2d8185b740e0ad26889bf0fea05a, Relation type, Value { r#type: Entity, value: "be74597305a94cd0a46d1c5538270faf" } +SetTriple: 30c2a4121c2945daa58746488aaddb4e, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 30c2a4121c2945daa58746488aaddb4e, From entity, Value { r#type: Entity, value: "25d4b5bb2f3a4854a9fedf2f5f12b5e4" } +SetTriple: 30c2a4121c2945daa58746488aaddb4e, To entity, Value { r#type: Entity, value: "1a9fc4a00fec4eeaa075eec7ebd0d043" } +SetTriple: 30c2a4121c2945daa58746488aaddb4e, Index, Value { r#type: Text, value: "a0" } +SetTriple: 30c2a4121c2945daa58746488aaddb4e, Relation type, Value { r#type: Entity, value: "be74597305a94cd0a46d1c5538270faf" } +SetTriple: f6539906d97448a09f2de6bef1cbe2ef, From entity, Value { r#type: Entity, value: "25d4b5bb2f3a4854a9fedf2f5f12b5e4" } +SetTriple: f6539906d97448a09f2de6bef1cbe2ef, To entity, Value { r#type: Entity, value: "2c72ace7540444559d2265272a94e874" } +SetTriple: f6539906d97448a09f2de6bef1cbe2ef, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f6539906d97448a09f2de6bef1cbe2ef, Index, Value { r#type: Text, value: "a0" } +SetTriple: f6539906d97448a09f2de6bef1cbe2ef, Relation type, Value { r#type: Entity, value: "be74597305a94cd0a46d1c5538270faf" } +SetTriple: 36cc2d8ff2eb4756a54934b4d1f118a2, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 36cc2d8ff2eb4756a54934b4d1f118a2, To entity, Value { r#type: Entity, value: "912c4d9504fc4d3cbc84382b3a1904d1" } +SetTriple: 36cc2d8ff2eb4756a54934b4d1f118a2, From entity, Value { r#type: Entity, value: "25d4b5bb2f3a4854a9fedf2f5f12b5e4" } +SetTriple: 36cc2d8ff2eb4756a54934b4d1f118a2, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 36cc2d8ff2eb4756a54934b4d1f118a2, Index, Value { r#type: Text, value: "a0" } +SetTriple: eccbd67ae70a4e98a2d09ce5fd0cb3ec, To entity, Value { r#type: Entity, value: "af7ae93b97d64aedad690c1d3da149a1" } +SetTriple: eccbd67ae70a4e98a2d09ce5fd0cb3ec, Index, Value { r#type: Text, value: "a0" } +SetTriple: eccbd67ae70a4e98a2d09ce5fd0cb3ec, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: eccbd67ae70a4e98a2d09ce5fd0cb3ec, From entity, Value { r#type: Entity, value: "25d4b5bb2f3a4854a9fedf2f5f12b5e4" } +SetTriple: eccbd67ae70a4e98a2d09ce5fd0cb3ec, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f9f01651d5634349b2e3508026bf8828, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f9f01651d5634349b2e3508026bf8828, To entity, Value { r#type: Entity, value: "682fbeff41e242cda7f9c4909136a8c5" } +SetTriple: f9f01651d5634349b2e3508026bf8828, From entity, Value { r#type: Entity, value: "25d4b5bb2f3a4854a9fedf2f5f12b5e4" } +SetTriple: f9f01651d5634349b2e3508026bf8828, Relation type, Value { r#type: Entity, value: "be74597305a94cd0a46d1c5538270faf" } +SetTriple: f9f01651d5634349b2e3508026bf8828, Index, Value { r#type: Text, value: "a0" } +SetTriple: d7a3f37288ce40b69b02930bca38d779, Index, Value { r#type: Text, value: "a0" } +SetTriple: d7a3f37288ce40b69b02930bca38d779, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 0e62c3c43ded4344a6180707ad81fb05, From entity, Value { r#type: Entity, value: "3f20832090704795a046206a6efb9557" } +SetTriple: 0e62c3c43ded4344a6180707ad81fb05, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 0e62c3c43ded4344a6180707ad81fb05, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 0e62c3c43ded4344a6180707ad81fb05, Index, Value { r#type: Text, value: "a0" } +SetTriple: 0e62c3c43ded4344a6180707ad81fb05, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 07d1be9ebf2840b3a04a1f38bb9972b7, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: 07d1be9ebf2840b3a04a1f38bb9972b7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 07d1be9ebf2840b3a04a1f38bb9972b7, Index, Value { r#type: Text, value: "a0" } +SetTriple: 07d1be9ebf2840b3a04a1f38bb9972b7, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 778c61e0e9114aa49b367db9cb523b74, From entity, Value { r#type: Entity, value: "3f20832090704795a046206a6efb9557" } +SetTriple: ea895cfc5e9d4847ae799a9a2a9228c0, From entity, Value { r#type: Entity, value: "88d5925217ae4d9aa36724710129eb47" } +SetTriple: ea895cfc5e9d4847ae799a9a2a9228c0, To entity, Value { r#type: Entity, value: "3f20832090704795a046206a6efb9557" } +SetTriple: 778c61e0e9114aa49b367db9cb523b74, To entity, Value { r#type: Entity, value: "ba4e41460010499da0a3caaa7f579d0e" } +SetTriple: ea895cfc5e9d4847ae799a9a2a9228c0, Index, Value { r#type: Text, value: "a0" } +SetTriple: ea895cfc5e9d4847ae799a9a2a9228c0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: ea895cfc5e9d4847ae799a9a2a9228c0, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 778c61e0e9114aa49b367db9cb523b74, Index, Value { r#type: Text, value: "a0" } +SetTriple: 778c61e0e9114aa49b367db9cb523b74, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 0e5f84e4c85a44698a665a7d46fe2786, Name, Value { r#type: Text, value: "Placeholder Text" } +SetTriple: 07d1be9ebf2840b3a04a1f38bb9972b7, From entity, Value { r#type: Entity, value: "0e5f84e4c85a44698a665a7d46fe2786" } +SetTriple: 778c61e0e9114aa49b367db9cb523b74, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3f20832090704795a046206a6efb9557, Name, Value { r#type: Text, value: "Placeholder Image" } +SetTriple: f2ff587687894e68ade80baf597bbff0, From entity, Value { r#type: Entity, value: "0e5f84e4c85a44698a665a7d46fe2786" } +SetTriple: f2ff587687894e68ade80baf597bbff0, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: f2ff587687894e68ade80baf597bbff0, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: f2ff587687894e68ade80baf597bbff0, Index, Value { r#type: Text, value: "a0" } +SetTriple: f2ff587687894e68ade80baf597bbff0, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: d7a3f37288ce40b69b02930bca38d779, From entity, Value { r#type: Entity, value: "88d5925217ae4d9aa36724710129eb47" } +SetTriple: d7a3f37288ce40b69b02930bca38d779, To entity, Value { r#type: Entity, value: "0e5f84e4c85a44698a665a7d46fe2786" } +SetTriple: d7a3f37288ce40b69b02930bca38d779, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3f9e7672ab2144fbaf5fe4420a41c71f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: e1f28242d55c4d40aad3518a195f13d8, To entity, Value { r#type: Entity, value: "2a734759874246efaac4c16b53f3a542" } +SetTriple: e1f28242d55c4d40aad3518a195f13d8, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: e1f28242d55c4d40aad3518a195f13d8, Index, Value { r#type: Text, value: "a0" } +SetTriple: e1f28242d55c4d40aad3518a195f13d8, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: b1143cbb9c3849019296c456f8f41e91, From entity, Value { r#type: Entity, value: "2a734759874246efaac4c16b53f3a542" } +SetTriple: b1143cbb9c3849019296c456f8f41e91, To entity, Value { r#type: Entity, value: "9edb6fcce4544aa5861139d7f024c010" } +SetTriple: b1143cbb9c3849019296c456f8f41e91, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: b1143cbb9c3849019296c456f8f41e91, Index, Value { r#type: Text, value: "a0" } +SetTriple: b1143cbb9c3849019296c456f8f41e91, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 3f9e7672ab2144fbaf5fe4420a41c71f, From entity, Value { r#type: Entity, value: "2a734759874246efaac4c16b53f3a542" } +SetTriple: 2a734759874246efaac4c16b53f3a542, Description, Value { r#type: Text, value: "Data block view." } +SetTriple: 2a734759874246efaac4c16b53f3a542, Name, Value { r#type: Text, value: "View" } +SetTriple: 3f9e7672ab2144fbaf5fe4420a41c71f, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 3f9e7672ab2144fbaf5fe4420a41c71f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3f9e7672ab2144fbaf5fe4420a41c71f, Index, Value { r#type: Text, value: "a0" } +SetTriple: e1f28242d55c4d40aad3518a195f13d8, From entity, Value { r#type: Entity, value: "88d5925217ae4d9aa36724710129eb47" } +SetTriple: eb18a135be254953a959999dfb3255c0, Name, Value { r#type: Text, value: "Gallery View" } +SetTriple: 3ccc2a1316e740d6b8383fd9f51e5c2d, From entity, Value { r#type: Entity, value: "2a734759874246efaac4c16b53f3a542" } +SetTriple: a2a136e1d1da4853bf3b0960982f8162, Name, Value { r#type: Text, value: "Table View" } +SetTriple: 70db74421c6e425291c8a807466d8668, Name, Value { r#type: Text, value: "List View" } +SetTriple: 3ccc2a1316e740d6b8383fd9f51e5c2d, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 3ccc2a1316e740d6b8383fd9f51e5c2d, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3ccc2a1316e740d6b8383fd9f51e5c2d, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3ccc2a1316e740d6b8383fd9f51e5c2d, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: af15ff29e0104803b1b1e69886e2781f, From entity, Value { r#type: Entity, value: "a2a136e1d1da4853bf3b0960982f8162" } +SetTriple: af15ff29e0104803b1b1e69886e2781f, To entity, Value { r#type: Entity, value: "2a734759874246efaac4c16b53f3a542" } +SetTriple: af15ff29e0104803b1b1e69886e2781f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: af15ff29e0104803b1b1e69886e2781f, Index, Value { r#type: Text, value: "a0" } +SetTriple: af15ff29e0104803b1b1e69886e2781f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: dbf15b86fbe54ba18c6eaf2fa018fd00, From entity, Value { r#type: Entity, value: "2a734759874246efaac4c16b53f3a542" } +SetTriple: dbf15b86fbe54ba18c6eaf2fa018fd00, To entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: dbf15b86fbe54ba18c6eaf2fa018fd00, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: dbf15b86fbe54ba18c6eaf2fa018fd00, Index, Value { r#type: Text, value: "a0" } +SetTriple: dbf15b86fbe54ba18c6eaf2fa018fd00, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 00cd2f7faca4491f81a7621f3b466659, From entity, Value { r#type: Entity, value: "70db74421c6e425291c8a807466d8668" } +SetTriple: 00cd2f7faca4491f81a7621f3b466659, To entity, Value { r#type: Entity, value: "2a734759874246efaac4c16b53f3a542" } +SetTriple: 00cd2f7faca4491f81a7621f3b466659, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 00cd2f7faca4491f81a7621f3b466659, Index, Value { r#type: Text, value: "a0" } +SetTriple: 00cd2f7faca4491f81a7621f3b466659, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 53e61bb705aa4e2c8a6706b1b9c8b72a, From entity, Value { r#type: Entity, value: "eb18a135be254953a959999dfb3255c0" } +SetTriple: 53e61bb705aa4e2c8a6706b1b9c8b72a, To entity, Value { r#type: Entity, value: "2a734759874246efaac4c16b53f3a542" } +SetTriple: 53e61bb705aa4e2c8a6706b1b9c8b72a, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 53e61bb705aa4e2c8a6706b1b9c8b72a, Index, Value { r#type: Text, value: "a0" } +SetTriple: 53e61bb705aa4e2c8a6706b1b9c8b72a, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: Gallery View, Description, Value { r#type: Text, value: "Grid view of data." } +SetTriple: List View, Description, Value { r#type: Text, value: "List view of data." } +SetTriple: Table View, Description, Value { r#type: Text, value: "Tabular view of data." } +SetTriple: 5c18e4f2560a4a19b87ceb8dea0412ad, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: 5c18e4f2560a4a19b87ceb8dea0412ad, Index, Value { r#type: Text, value: "a0" } +SetTriple: 5c18e4f2560a4a19b87ceb8dea0412ad, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 5c18e4f2560a4a19b87ceb8dea0412ad, To entity, Value { r#type: Entity, value: "2a734759874246efaac4c16b53f3a542" } +SetTriple: 5c18e4f2560a4a19b87ceb8dea0412ad, From entity, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 836879feb6214e5f83776a70a7ff442f, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 836879feb6214e5f83776a70a7ff442f, Index, Value { r#type: Text, value: "a0" } +SetTriple: 836879feb6214e5f83776a70a7ff442f, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 836879feb6214e5f83776a70a7ff442f, To entity, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 836879feb6214e5f83776a70a7ff442f, From entity, Value { r#type: Entity, value: "f062fc5a6f114859ba70e644be6caea5" } +SetTriple: f062fc5a6f114859ba70e644be6caea5, Name, Value { r#type: Text, value: "View" } +SetTriple: 4b9c16018f424406b56d9891b24c5ca5, From entity, Value { r#type: Entity, value: "88d5925217ae4d9aa36724710129eb47" } +SetTriple: 4b9c16018f424406b56d9891b24c5ca5, To entity, Value { r#type: Entity, value: "f062fc5a6f114859ba70e644be6caea5" } +SetTriple: 4b9c16018f424406b56d9891b24c5ca5, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 4b9c16018f424406b56d9891b24c5ca5, Index, Value { r#type: Text, value: "a0" } +SetTriple: 4b9c16018f424406b56d9891b24c5ca5, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3d9f120cb1c24bfa8aed64ad70522e93, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3d9f120cb1c24bfa8aed64ad70522e93, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3d9f120cb1c24bfa8aed64ad70522e93, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 3d9f120cb1c24bfa8aed64ad70522e93, From entity, Value { r#type: Entity, value: "f062fc5a6f114859ba70e644be6caea5" } +SetTriple: de8171ca6fe947c5916b1d6d7245ebca, From entity, Value { r#type: Entity, value: "f062fc5a6f114859ba70e644be6caea5" } +SetTriple: 4476d69a272b44409fcf2aac17cacaa3, Index, Value { r#type: Text, value: "a0" } +SetTriple: de8171ca6fe947c5916b1d6d7245ebca, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 4476d69a272b44409fcf2aac17cacaa3, Relation type, Value { r#type: Entity, value: "cfa6a2f5151f43bfa684f7f0228f63ff" } +SetTriple: de8171ca6fe947c5916b1d6d7245ebca, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3d9f120cb1c24bfa8aed64ad70522e93, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: 4476d69a272b44409fcf2aac17cacaa3, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 4476d69a272b44409fcf2aac17cacaa3, To entity, Value { r#type: Entity, value: "2a734759874246efaac4c16b53f3a542" } +SetTriple: 4476d69a272b44409fcf2aac17cacaa3, From entity, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: de8171ca6fe947c5916b1d6d7245ebca, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: de8171ca6fe947c5916b1d6d7245ebca, Index, Value { r#type: Text, value: "a0" } +SetTriple: bd6cadb423794027a66fc8b89f334586, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 50b448d3262d45f0aeea267262f367b1, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 50b448d3262d45f0aeea267262f367b1, Index, Value { r#type: Text, value: "a0" } +SetTriple: 50b448d3262d45f0aeea267262f367b1, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: a673b2fbddad470d8a71f63e7317bb44, From entity, Value { r#type: Entity, value: "15234a4c061f46ee90a0c44cd9414cbe" } +SetTriple: a673b2fbddad470d8a71f63e7317bb44, To entity, Value { r#type: Entity, value: "cce0dd2973314271a83ce9193ddbec73" } +SetTriple: a673b2fbddad470d8a71f63e7317bb44, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: cce0dd2973314271a83ce9193ddbec73, Description, Value { r#type: Text, value: "Distinct parts or subdivisions of a publication. Sections help to organize content making it easier for readers to navigate and find relevant information. Each section typically contains curated articles, news, and features related to its designated subject, ensuring that content is structured and accessible." } +SetTriple: 50b448d3262d45f0aeea267262f367b1, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 50b448d3262d45f0aeea267262f367b1, From entity, Value { r#type: Entity, value: "cce0dd2973314271a83ce9193ddbec73" } +SetTriple: a673b2fbddad470d8a71f63e7317bb44, Index, Value { r#type: Text, value: "a0" } +SetTriple: a673b2fbddad470d8a71f63e7317bb44, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: bd6cadb423794027a66fc8b89f334586, From entity, Value { r#type: Entity, value: "cce0dd2973314271a83ce9193ddbec73" } +SetTriple: bd6cadb423794027a66fc8b89f334586, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: bd6cadb423794027a66fc8b89f334586, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: cce0dd2973314271a83ce9193ddbec73, Name, Value { r#type: Text, value: "Sections" } +SetTriple: bd6cadb423794027a66fc8b89f334586, Index, Value { r#type: Text, value: "a0" } +SetTriple: 7513e13ae51f4b0a97c894d798a9ab66, Relation type, Value { r#type: Entity, value: "01412f8381894ab1836565c7fd358cc1" } +SetTriple: 3cb06525687643698b9e82df3514ee24, To entity, Value { r#type: Entity, value: "14611456b4664cab920d2245f59ce828" } +SetTriple: 3cb06525687643698b9e82df3514ee24, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 3cb06525687643698b9e82df3514ee24, Index, Value { r#type: Text, value: "a0" } +SetTriple: 750dae76db1341cb963b2fd26ffe41d7, From entity, Value { r#type: Entity, value: "babd29fb968147d08b58cdafc3890e12" } +SetTriple: 750dae76db1341cb963b2fd26ffe41d7, To entity, Value { r#type: Entity, value: "808a04ceb21c4d888ad12e240613e5ca" } +SetTriple: 750dae76db1341cb963b2fd26ffe41d7, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 750dae76db1341cb963b2fd26ffe41d7, Index, Value { r#type: Text, value: "a0" } +SetTriple: 750dae76db1341cb963b2fd26ffe41d7, Relation type, Value { r#type: Entity, value: "8f151ba4de204e3c9cb499ddf96f48f1" } +SetTriple: babd29fb968147d08b58cdafc3890e12, Name, Value { r#type: Text, value: "Template" } +SetTriple: 3cb06525687643698b9e82df3514ee24, Relation type, Value { r#type: Entity, value: "ee26ef23f7f14eb6b7423b0fa38c1fd8" } +SetTriple: 7513e13ae51f4b0a97c894d798a9ab66, From entity, Value { r#type: Entity, value: "d7ab40920ab5441e88c35c27952de773" } +SetTriple: 7513e13ae51f4b0a97c894d798a9ab66, To entity, Value { r#type: Entity, value: "babd29fb968147d08b58cdafc3890e12" } +SetTriple: 7513e13ae51f4b0a97c894d798a9ab66, Type, Value { r#type: Entity, value: "c167ef23fb2a40449ed945123ce7d2a9" } +SetTriple: 7513e13ae51f4b0a97c894d798a9ab66, Index, Value { r#type: Text, value: "a0" } +SetTriple: 3cb06525687643698b9e82df3514ee24, From entity, Value { r#type: Entity, value: "babd29fb968147d08b58cdafc3890e12" } diff --git a/node/src/bootstrap/bootstrap_root.rs b/indexer/src/bootstrap/bootstrap_root.rs similarity index 100% rename from node/src/bootstrap/bootstrap_root.rs rename to indexer/src/bootstrap/bootstrap_root.rs diff --git a/node/src/bootstrap/bootstrap_templates.rs b/indexer/src/bootstrap/bootstrap_templates.rs similarity index 100% rename from node/src/bootstrap/bootstrap_templates.rs rename to indexer/src/bootstrap/bootstrap_templates.rs diff --git a/node/src/bootstrap/constants.rs b/indexer/src/bootstrap/constants.rs similarity index 100% rename from node/src/bootstrap/constants.rs rename to indexer/src/bootstrap/constants.rs diff --git a/node/src/bootstrap/mod.rs b/indexer/src/bootstrap/mod.rs similarity index 100% rename from node/src/bootstrap/mod.rs rename to indexer/src/bootstrap/mod.rs diff --git a/node/src/events/editor_added.rs b/indexer/src/events/editor_added.rs similarity index 100% rename from node/src/events/editor_added.rs rename to indexer/src/events/editor_added.rs diff --git a/node/src/events/editor_removed.rs b/indexer/src/events/editor_removed.rs similarity index 100% rename from node/src/events/editor_removed.rs rename to indexer/src/events/editor_removed.rs diff --git a/node/src/events/handler.rs b/indexer/src/events/handler.rs similarity index 100% rename from node/src/events/handler.rs rename to indexer/src/events/handler.rs diff --git a/node/src/events/initial_editors_added.rs b/indexer/src/events/initial_editors_added.rs similarity index 100% rename from node/src/events/initial_editors_added.rs rename to indexer/src/events/initial_editors_added.rs diff --git a/node/src/events/member_added.rs b/indexer/src/events/member_added.rs similarity index 100% rename from node/src/events/member_added.rs rename to indexer/src/events/member_added.rs diff --git a/node/src/events/member_removed.rs b/indexer/src/events/member_removed.rs similarity index 100% rename from node/src/events/member_removed.rs rename to indexer/src/events/member_removed.rs diff --git a/node/src/events/mod.rs b/indexer/src/events/mod.rs similarity index 100% rename from node/src/events/mod.rs rename to indexer/src/events/mod.rs diff --git a/node/src/events/proposal_created.rs b/indexer/src/events/proposal_created.rs similarity index 100% rename from node/src/events/proposal_created.rs rename to indexer/src/events/proposal_created.rs diff --git a/node/src/events/proposal_executed.rs b/indexer/src/events/proposal_executed.rs similarity index 100% rename from node/src/events/proposal_executed.rs rename to indexer/src/events/proposal_executed.rs diff --git a/node/src/events/proposal_processed.rs b/indexer/src/events/proposal_processed.rs similarity index 100% rename from node/src/events/proposal_processed.rs rename to indexer/src/events/proposal_processed.rs diff --git a/node/src/events/space_created.rs b/indexer/src/events/space_created.rs similarity index 100% rename from node/src/events/space_created.rs rename to indexer/src/events/space_created.rs diff --git a/node/src/events/subspace_added.rs b/indexer/src/events/subspace_added.rs similarity index 100% rename from node/src/events/subspace_added.rs rename to indexer/src/events/subspace_added.rs diff --git a/node/src/events/subspace_removed.rs b/indexer/src/events/subspace_removed.rs similarity index 100% rename from node/src/events/subspace_removed.rs rename to indexer/src/events/subspace_removed.rs diff --git a/node/src/events/vote_cast.rs b/indexer/src/events/vote_cast.rs similarity index 100% rename from node/src/events/vote_cast.rs rename to indexer/src/events/vote_cast.rs diff --git a/node/src/kg/client.rs b/indexer/src/kg/client.rs similarity index 100% rename from node/src/kg/client.rs rename to indexer/src/kg/client.rs diff --git a/node/src/kg/entity.rs b/indexer/src/kg/entity.rs similarity index 100% rename from node/src/kg/entity.rs rename to indexer/src/kg/entity.rs diff --git a/node/src/kg/mapping.rs b/indexer/src/kg/mapping.rs similarity index 100% rename from node/src/kg/mapping.rs rename to indexer/src/kg/mapping.rs diff --git a/node/src/kg/mod.rs b/indexer/src/kg/mod.rs similarity index 100% rename from node/src/kg/mod.rs rename to indexer/src/kg/mod.rs diff --git a/node/src/lib.rs b/indexer/src/lib.rs similarity index 100% rename from node/src/lib.rs rename to indexer/src/lib.rs diff --git a/node/src/main.rs b/indexer/src/main.rs similarity index 98% rename from node/src/main.rs rename to indexer/src/main.rs index 6f424f2..173e1e0 100644 --- a/node/src/main.rs +++ b/indexer/src/main.rs @@ -2,7 +2,7 @@ use std::env; use anyhow::Error; use clap::{Args, Parser}; -use kg_node::{events::EventHandler, kg}; +use indexer::{events::EventHandler, kg}; use substreams_sink_rust::Sink; use tracing_subscriber::layer::SubscriberExt; use tracing_subscriber::util::SubscriberInitExt; diff --git a/node/src/neo4j_utils.rs b/indexer/src/neo4j_utils.rs similarity index 100% rename from node/src/neo4j_utils.rs rename to indexer/src/neo4j_utils.rs diff --git a/node/src/ops/batch_set_triple.rs b/indexer/src/ops/batch_set_triple.rs similarity index 100% rename from node/src/ops/batch_set_triple.rs rename to indexer/src/ops/batch_set_triple.rs diff --git a/node/src/ops/conversions.rs b/indexer/src/ops/conversions.rs similarity index 100% rename from node/src/ops/conversions.rs rename to indexer/src/ops/conversions.rs diff --git a/node/src/ops/create_relation.rs b/indexer/src/ops/create_relation.rs similarity index 100% rename from node/src/ops/create_relation.rs rename to indexer/src/ops/create_relation.rs diff --git a/node/src/ops/delete_triple.rs b/indexer/src/ops/delete_triple.rs similarity index 100% rename from node/src/ops/delete_triple.rs rename to indexer/src/ops/delete_triple.rs diff --git a/node/src/ops/mod.rs b/indexer/src/ops/mod.rs similarity index 100% rename from node/src/ops/mod.rs rename to indexer/src/ops/mod.rs diff --git a/node/src/ops/op.rs b/indexer/src/ops/op.rs similarity index 100% rename from node/src/ops/op.rs rename to indexer/src/ops/op.rs diff --git a/node/src/ops/set_triple.rs b/indexer/src/ops/set_triple.rs similarity index 100% rename from node/src/ops/set_triple.rs rename to indexer/src/ops/set_triple.rs