SlideShare ist ein Scribd-Unternehmen logo
1 von 42
Downloaden Sie, um offline zu lesen
Tree Tricks
OSDC Melbourne 2010/11/24
Copyright(C) 2010 by David Fetter
All Rights Reserved.
Tuesday, November 23, 2010
What’s a Tree, Really?
Plant
Perennial
Woody
Secondary branches
Off ground
Apical Dominance
Tuesday, November 23, 2010
Tuesday, November 23, 2010
What’s a Tree, Really?
Graph
Directed
Connected
Acyclic
Max(indegree) = 1
Tuesday, November 23, 2010
What’s a Graph, Really?
Tuesday, November 23, 2010
What’s a Graph, Really?
Nodes
Tuesday, November 23, 2010
What’s a Graph, Really?
Nodes
Edges
Tuesday, November 23, 2010
Representing Graphs
CREATE TABLE message (
message_id SERIAL PRIMARY KEY,
parent_message_id INTEGER REFERENCES message,
sender email NOT NULL,
list TEXT NOT NULL,
...
);
Tuesday, November 23, 2010
FAIL!Tuesday, November 23, 2010
Separate Your Concerns.
Tuesday, November 23, 2010
Representing Graphs
CREATE TABLE message (
message_id SERIAL PRIMARY KEY,
sender email NOT NULL,
list TEXT NOT NULL,
...
);
CREATE TABLE edge (
tail INTEGER NOT NULL REFERENCES message,
head INTEGER NOT NULL REFERENCES message,
PRIMARY KEY(tail, head)
);
Tuesday, November 23, 2010
WIN!Tuesday, November 23, 2010
Mathematical Flashback
Tuesday, November 23, 2010
Binary Relations
Tuesday, November 23, 2010
Binary Relations
Reflexive
Tuesday, November 23, 2010
Binary Relations
Reflexive
Symmetric
Tuesday, November 23, 2010
Binary Relations
Reflexive
Symmetric
Transitive
Tuesday, November 23, 2010
CLOSURE
(need to get some)
Tuesday, November 23, 2010
Reflexive Closure
CREATE TABLE reflexive_closure (
tail INTEGER NOT NULL REFERENCES message,
head INTEGER NOT NULL REFERENCES message
);
INSERT INTO reflexive_closure
SELECT tail, head FROM edge UNION
SELECT tail, tail FROM edge UNION
SELECT head, head FROM edge;
Tuesday, November 23, 2010
Symmetric Closure
CREATE TABLE symmetric_closure (
tail INTEGER NOT NULL REFERENCES message,
head INTEGER NOT NULL REFERENCES message
);
INSERT INTO symmetric_closure
SELECT tail, head FROM edge UNION
SELECT head, tail FROM edge;
Tuesday, November 23, 2010
Transitive Closure
CREATE TABLE transitive_closure (
tail INTEGER NOT NULL REFERENCES message,
head INTEGER NOT NULL REFERENCES message
);
Tuesday, November 23, 2010
Transitive Closure
CREATE TABLE transitive_closure (
tail INTEGER NOT NULL REFERENCES message,
head INTEGER NOT NULL REFERENCES message
);
INSERT INTO transitive_closure
Tuesday, November 23, 2010
Transitive Closure
CREATE TABLE transitive_closure (
tail INTEGER NOT NULL REFERENCES message,
head INTEGER NOT NULL REFERENCES message
);
INSERT INTO transitive_closure
SELECT
Tuesday, November 23, 2010
Transitive Closure
CREATE TABLE transitive_closure (
tail INTEGER NOT NULL REFERENCES message,
head INTEGER NOT NULL REFERENCES message
);
INSERT INTO transitive_closure
SELECT
Er
Tuesday, November 23, 2010
Transitive Closure
CREATE TABLE transitive_closure (
tail INTEGER NOT NULL REFERENCES message,
head INTEGER NOT NULL REFERENCES message
);
INSERT INTO transitive_closure
SELECT
Er
Um
Tuesday, November 23, 2010
Transitive Closure
CREATE TABLE transitive_closure (
tail INTEGER NOT NULL REFERENCES message,
head INTEGER NOT NULL REFERENCES message
);
INSERT INTO transitive_closure
SELECT
Er
Um
Hrm...
Tuesday, November 23, 2010
Down the Rabbit Hole
Tuesday, November 23, 2010
Transitive Closure Query
WITH RECURSIVE t(tail, head, chain) AS (
SELECT tail, head, ARRAY[tail, head]
FROM edge
UNION ALL
SELECT e.tail, e.head, t.chain || e.head
FROM edge e JOIN t
ON (e.tail = t.head)
WHERE e.tail <> ANY(t.chain)
)
SELECT tail, head FROM t
Tuesday, November 23, 2010
Forest Constraints
?
Tuesday, November 23, 2010
What’s a Tree, Really?
Graph
Directed
Connected
Acyclic
Max(indegree) = 1
Tuesday, November 23, 2010
Max(indegree) = 1
CREATE TABLE edge (
tail INTEGER NOT NULL REFERENCES message,
head INTEGER NOT NULL REFERENCES message,
PRIMARY KEY(tail, head)
);
ALTER TABLE edge ADD UNIQUE(head)
Tuesday, November 23, 2010
No Cycles!
Tuesday, November 23, 2010
Cycle Finder
WITH RECURSIVE t(tail, head, chain) AS (
SELECT tail, head, ARRAY[tail, head]
FROM edge
UNION ALL
SELECT e.tail, e.head, t.chain || e.head
FROM edge e JOIN t
ON (t.head = e.tail)
WHERE e.tail = ANY(t.chain)
)
SELECT * FROM t
Tuesday, November 23, 2010
Cycle Finder Function
CREATE OR REPLACE FUNCTION has_cycle()
RETURNS BOOLEAN
LANGUAGE SQL AS $$
SELECT EXISTS (
WITH RECURSIVE t(tail, head, chain) AS (
SELECT tail, head, ARRAY[tail, head]
FROM edge
UNION ALL
SELECT e.tail, e.head, t.chain || e.head
FROM edge e JOIN t
ON (t.head = e.tail)
WHERE e.tail = ANY(t.chain)
)
SELECT * FROM t
)
Tuesday, November 23, 2010
Cyclotomic Trigger Function
CREATE OR REPLACE FUNCTION decyclifier()
RETURNS TRIGGER
LANGUAGE plpgsql
AS $$
BEGIN
IF (has_cycle()) THEN
RAISE ERROR 'No cycles allowed!';
END IF;
RETURN NEW;
END;
Tuesday, November 23, 2010
Cyclotomic Trigger
CREATE TRIGGER edge_decyclifier
AFTER INSERT OR UPDATE ON edge
FOR EACH STATEMENT
EXECUTE PROCEDURE decyclifier();
Tuesday, November 23, 2010
Tree Constraint
Forest Constraint +
Unique Non-head Node
Tuesday, November 23, 2010
Tree Constraint
CREATE OR REPLACE FUNCTION count_only_heads()
RETURNS INTEGER
LANGUAGE SQL
AS $$
SELECT count(tail)
FROM edge e
WHERE NOT EXISTS (
SELECT 1 FROM edge
WHERE edge.head = e.tail
)
$$;
Tuesday, November 23, 2010
Tree Constraint
CREATE OR REPLACE FUNCTION one_head()
RETURNS TRIGGER
LANGUAGE plpgsql
AS $$
BEGIN
IF count_only_heads() <> 1 THEN
RAISE EXCEPTION 'This is a tree!';
END IF;
RETURN NEW;
END;
$$;
Tuesday, November 23, 2010
Tree Constraint
CREATE TRIGGER edge_one_head
AFTER INSERT OR UPDATE OR DELETE
ON edge
EXECUTE PROCEDURE one_head();
Tuesday, November 23, 2010
Questions?
Comments?
Brickbats?
Tuesday, November 23, 2010
Thanks!
Copyright(C) 2010 by David Fetter
All Rights Reserved.
Tuesday, November 23, 2010

Weitere ähnliche Inhalte

Andere mochten auch

Role of co-operative in agribusiness
Role of co-operative in agribusinessRole of co-operative in agribusiness
Role of co-operative in agribusiness
Patel Divyesh
 
cooperative versus contract farming
cooperative versus contract farming cooperative versus contract farming
cooperative versus contract farming
Dr. Gopala Y M
 
Professional Networking Power Point
Professional Networking Power PointProfessional Networking Power Point
Professional Networking Power Point
Phillip0582
 

Andere mochten auch (17)

Farmer's Business Network - Mobile personas and user flows
Farmer's Business Network - Mobile personas and user flowsFarmer's Business Network - Mobile personas and user flows
Farmer's Business Network - Mobile personas and user flows
 
Contract Farming
Contract FarmingContract Farming
Contract Farming
 
Contract Farming
Contract FarmingContract Farming
Contract Farming
 
Role of co-operative in agribusiness
Role of co-operative in agribusinessRole of co-operative in agribusiness
Role of co-operative in agribusiness
 
Contract farming
Contract farmingContract farming
Contract farming
 
cooperative versus contract farming
cooperative versus contract farming cooperative versus contract farming
cooperative versus contract farming
 
Contract farming ppt
Contract farming pptContract farming ppt
Contract farming ppt
 
Professional Networking Power Point
Professional Networking Power PointProfessional Networking Power Point
Professional Networking Power Point
 
Business Networking Slide Presentation
Business Networking    Slide  PresentationBusiness Networking    Slide  Presentation
Business Networking Slide Presentation
 
Agricultural marketing
Agricultural marketingAgricultural marketing
Agricultural marketing
 
Networking powerpoint
Networking powerpointNetworking powerpoint
Networking powerpoint
 
Social networks: Advantages and disadvantages
Social networks: Advantages and disadvantagesSocial networks: Advantages and disadvantages
Social networks: Advantages and disadvantages
 
Networking ppt
Networking ppt Networking ppt
Networking ppt
 
agriculture ppt
 agriculture ppt agriculture ppt
agriculture ppt
 
2015 Upload Campaigns Calendar - SlideShare
2015 Upload Campaigns Calendar - SlideShare2015 Upload Campaigns Calendar - SlideShare
2015 Upload Campaigns Calendar - SlideShare
 
What to Upload to SlideShare
What to Upload to SlideShareWhat to Upload to SlideShare
What to Upload to SlideShare
 
Getting Started With SlideShare
Getting Started With SlideShareGetting Started With SlideShare
Getting Started With SlideShare
 

Mehr von David Fetter

Rdbms roadmap 20140130
Rdbms roadmap 20140130Rdbms roadmap 20140130
Rdbms roadmap 20140130
David Fetter
 
Slides pg conf_eu_20131031
Slides pg conf_eu_20131031Slides pg conf_eu_20131031
Slides pg conf_eu_20131031
David Fetter
 
Federation with foreign_data_wrappers_pg_conf_eu_20131031
Federation with foreign_data_wrappers_pg_conf_eu_20131031Federation with foreign_data_wrappers_pg_conf_eu_20131031
Federation with foreign_data_wrappers_pg_conf_eu_20131031
David Fetter
 
G so c_and_commitfests_and_pointy_hair_oh_my_sfpug_20131008
G so c_and_commitfests_and_pointy_hair_oh_my_sfpug_20131008G so c_and_commitfests_and_pointy_hair_oh_my_sfpug_20131008
G so c_and_commitfests_and_pointy_hair_oh_my_sfpug_20131008
David Fetter
 
Ct es past_present_future_nycpgday_20130322
Ct es past_present_future_nycpgday_20130322Ct es past_present_future_nycpgday_20130322
Ct es past_present_future_nycpgday_20130322
David Fetter
 
Universal data access_with_sql_med
Universal data access_with_sql_medUniversal data access_with_sql_med
Universal data access_with_sql_med
David Fetter
 
Lightning sf perl_mongers_20120327
Lightning sf perl_mongers_20120327Lightning sf perl_mongers_20120327
Lightning sf perl_mongers_20120327
David Fetter
 
Threat modeling sf_perl_mongers_20130227
Threat modeling sf_perl_mongers_20130227Threat modeling sf_perl_mongers_20130227
Threat modeling sf_perl_mongers_20130227
David Fetter
 
Security revolutionized fosdem_20120205
Security revolutionized fosdem_20120205Security revolutionized fosdem_20120205
Security revolutionized fosdem_20120205
David Fetter
 
PL/Parrot San Francisco Perl Mongers 2010/05/25
PL/Parrot San Francisco Perl Mongers 2010/05/25PL/Parrot San Francisco Perl Mongers 2010/05/25
PL/Parrot San Francisco Perl Mongers 2010/05/25
David Fetter
 

Mehr von David Fetter (16)

Assertions and how to use them
Assertions and how to use themAssertions and how to use them
Assertions and how to use them
 
PostgreSQL Hooks for Fun and Profit
PostgreSQL Hooks for Fun and ProfitPostgreSQL Hooks for Fun and Profit
PostgreSQL Hooks for Fun and Profit
 
Grouping sets sfpug_20141118
Grouping sets sfpug_20141118Grouping sets sfpug_20141118
Grouping sets sfpug_20141118
 
Rdbms roadmap 20140130
Rdbms roadmap 20140130Rdbms roadmap 20140130
Rdbms roadmap 20140130
 
Slides pg conf_eu_20131031
Slides pg conf_eu_20131031Slides pg conf_eu_20131031
Slides pg conf_eu_20131031
 
Federation with foreign_data_wrappers_pg_conf_eu_20131031
Federation with foreign_data_wrappers_pg_conf_eu_20131031Federation with foreign_data_wrappers_pg_conf_eu_20131031
Federation with foreign_data_wrappers_pg_conf_eu_20131031
 
Intergalactic data speak_highload++_20131028
Intergalactic data speak_highload++_20131028Intergalactic data speak_highload++_20131028
Intergalactic data speak_highload++_20131028
 
G so c_and_commitfests_and_pointy_hair_oh_my_sfpug_20131008
G so c_and_commitfests_and_pointy_hair_oh_my_sfpug_20131008G so c_and_commitfests_and_pointy_hair_oh_my_sfpug_20131008
G so c_and_commitfests_and_pointy_hair_oh_my_sfpug_20131008
 
Ct es past_present_future_nycpgday_20130322
Ct es past_present_future_nycpgday_20130322Ct es past_present_future_nycpgday_20130322
Ct es past_present_future_nycpgday_20130322
 
Universal data access_with_sql_med
Universal data access_with_sql_medUniversal data access_with_sql_med
Universal data access_with_sql_med
 
Lightning sf perl_mongers_20120327
Lightning sf perl_mongers_20120327Lightning sf perl_mongers_20120327
Lightning sf perl_mongers_20120327
 
Threat modeling sf_perl_mongers_20130227
Threat modeling sf_perl_mongers_20130227Threat modeling sf_perl_mongers_20130227
Threat modeling sf_perl_mongers_20130227
 
Security revolutionized fosdem_20120205
Security revolutionized fosdem_20120205Security revolutionized fosdem_20120205
Security revolutionized fosdem_20120205
 
Writeable ct es_pgcon_may_2011
Writeable ct es_pgcon_may_2011Writeable ct es_pgcon_may_2011
Writeable ct es_pgcon_may_2011
 
View triggers pg_east_20110325
View triggers pg_east_20110325View triggers pg_east_20110325
View triggers pg_east_20110325
 
PL/Parrot San Francisco Perl Mongers 2010/05/25
PL/Parrot San Francisco Perl Mongers 2010/05/25PL/Parrot San Francisco Perl Mongers 2010/05/25
PL/Parrot San Francisco Perl Mongers 2010/05/25
 

Kürzlich hochgeladen

Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
nirzagarg
 
Top profile Call Girls In Vadodara [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Vadodara [ 7014168258 ] Call Me For Genuine Models ...Top profile Call Girls In Vadodara [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Vadodara [ 7014168258 ] Call Me For Genuine Models ...
gajnagarg
 
Reconciling Conflicting Data Curation Actions: Transparency Through Argument...
Reconciling Conflicting Data Curation Actions:  Transparency Through Argument...Reconciling Conflicting Data Curation Actions:  Transparency Through Argument...
Reconciling Conflicting Data Curation Actions: Transparency Through Argument...
Bertram Ludäscher
 
Jual Cytotec Asli Obat Aborsi No. 1 Paling Manjur
Jual Cytotec Asli Obat Aborsi No. 1 Paling ManjurJual Cytotec Asli Obat Aborsi No. 1 Paling Manjur
Jual Cytotec Asli Obat Aborsi No. 1 Paling Manjur
ptikerjasaptiker
 
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...
gajnagarg
 
怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制
怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制
怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制
vexqp
 
Cytotec in Jeddah+966572737505) get unwanted pregnancy kit Riyadh
Cytotec in Jeddah+966572737505) get unwanted pregnancy kit RiyadhCytotec in Jeddah+966572737505) get unwanted pregnancy kit Riyadh
Cytotec in Jeddah+966572737505) get unwanted pregnancy kit Riyadh
Abortion pills in Riyadh +966572737505 get cytotec
 
怎样办理圣地亚哥州立大学毕业证(SDSU毕业证书)成绩单学校原版复制
怎样办理圣地亚哥州立大学毕业证(SDSU毕业证书)成绩单学校原版复制怎样办理圣地亚哥州立大学毕业证(SDSU毕业证书)成绩单学校原版复制
怎样办理圣地亚哥州立大学毕业证(SDSU毕业证书)成绩单学校原版复制
vexqp
 
Abortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Jeddah | +966572737505 | Get CytotecAbortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Riyadh +966572737505 get cytotec
 
Top profile Call Girls In dimapur [ 7014168258 ] Call Me For Genuine Models W...
Top profile Call Girls In dimapur [ 7014168258 ] Call Me For Genuine Models W...Top profile Call Girls In dimapur [ 7014168258 ] Call Me For Genuine Models W...
Top profile Call Girls In dimapur [ 7014168258 ] Call Me For Genuine Models W...
gajnagarg
 
PLE-statistics document for primary schs
PLE-statistics document for primary schsPLE-statistics document for primary schs
PLE-statistics document for primary schs
cnajjemba
 
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
wsppdmt
 
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get CytotecAbortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Riyadh +966572737505 get cytotec
 
怎样办理纽约州立大学宾汉姆顿分校毕业证(SUNY-Bin毕业证书)成绩单学校原版复制
怎样办理纽约州立大学宾汉姆顿分校毕业证(SUNY-Bin毕业证书)成绩单学校原版复制怎样办理纽约州立大学宾汉姆顿分校毕业证(SUNY-Bin毕业证书)成绩单学校原版复制
怎样办理纽约州立大学宾汉姆顿分校毕业证(SUNY-Bin毕业证书)成绩单学校原版复制
vexqp
 
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
nirzagarg
 

Kürzlich hochgeladen (20)

Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
 
Top profile Call Girls In Vadodara [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Vadodara [ 7014168258 ] Call Me For Genuine Models ...Top profile Call Girls In Vadodara [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Vadodara [ 7014168258 ] Call Me For Genuine Models ...
 
Reconciling Conflicting Data Curation Actions: Transparency Through Argument...
Reconciling Conflicting Data Curation Actions:  Transparency Through Argument...Reconciling Conflicting Data Curation Actions:  Transparency Through Argument...
Reconciling Conflicting Data Curation Actions: Transparency Through Argument...
 
Jual Cytotec Asli Obat Aborsi No. 1 Paling Manjur
Jual Cytotec Asli Obat Aborsi No. 1 Paling ManjurJual Cytotec Asli Obat Aborsi No. 1 Paling Manjur
Jual Cytotec Asli Obat Aborsi No. 1 Paling Manjur
 
Discover Why Less is More in B2B Research
Discover Why Less is More in B2B ResearchDiscover Why Less is More in B2B Research
Discover Why Less is More in B2B Research
 
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...
 
Aspirational Block Program Block Syaldey District - Almora
Aspirational Block Program Block Syaldey District - AlmoraAspirational Block Program Block Syaldey District - Almora
Aspirational Block Program Block Syaldey District - Almora
 
怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制
怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制
怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制
 
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
 
Cytotec in Jeddah+966572737505) get unwanted pregnancy kit Riyadh
Cytotec in Jeddah+966572737505) get unwanted pregnancy kit RiyadhCytotec in Jeddah+966572737505) get unwanted pregnancy kit Riyadh
Cytotec in Jeddah+966572737505) get unwanted pregnancy kit Riyadh
 
怎样办理圣地亚哥州立大学毕业证(SDSU毕业证书)成绩单学校原版复制
怎样办理圣地亚哥州立大学毕业证(SDSU毕业证书)成绩单学校原版复制怎样办理圣地亚哥州立大学毕业证(SDSU毕业证书)成绩单学校原版复制
怎样办理圣地亚哥州立大学毕业证(SDSU毕业证书)成绩单学校原版复制
 
Abortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Jeddah | +966572737505 | Get CytotecAbortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Jeddah | +966572737505 | Get Cytotec
 
Top profile Call Girls In dimapur [ 7014168258 ] Call Me For Genuine Models W...
Top profile Call Girls In dimapur [ 7014168258 ] Call Me For Genuine Models W...Top profile Call Girls In dimapur [ 7014168258 ] Call Me For Genuine Models W...
Top profile Call Girls In dimapur [ 7014168258 ] Call Me For Genuine Models W...
 
PLE-statistics document for primary schs
PLE-statistics document for primary schsPLE-statistics document for primary schs
PLE-statistics document for primary schs
 
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
 
Sequential and reinforcement learning for demand side management by Margaux B...
Sequential and reinforcement learning for demand side management by Margaux B...Sequential and reinforcement learning for demand side management by Margaux B...
Sequential and reinforcement learning for demand side management by Margaux B...
 
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get CytotecAbortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
 
怎样办理纽约州立大学宾汉姆顿分校毕业证(SUNY-Bin毕业证书)成绩单学校原版复制
怎样办理纽约州立大学宾汉姆顿分校毕业证(SUNY-Bin毕业证书)成绩单学校原版复制怎样办理纽约州立大学宾汉姆顿分校毕业证(SUNY-Bin毕业证书)成绩单学校原版复制
怎样办理纽约州立大学宾汉姆顿分校毕业证(SUNY-Bin毕业证书)成绩单学校原版复制
 
Vadodara 💋 Call Girl 7737669865 Call Girls in Vadodara Escort service book now
Vadodara 💋 Call Girl 7737669865 Call Girls in Vadodara Escort service book nowVadodara 💋 Call Girl 7737669865 Call Girls in Vadodara Escort service book now
Vadodara 💋 Call Girl 7737669865 Call Girls in Vadodara Escort service book now
 
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
 

Tree tricks osdc_melbourne_20101124